/* src/scss/custom-theme.scss */
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
.cdk-drag-preview .mat-ripple-element,
.cdk-drag-placeholder .mat-ripple-element {
  display: none;
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start {
}
@keyframes cdk-text-field-autofill-end {
}
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}
.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-app-background, transparent));
  color: var(--mat-app-text-color, var(--mat-app-on-background, inherit));
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, none);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, none);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, none);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, none);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, none);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, none);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, none);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, none);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, none);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, none);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, none);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, none);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, none);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, none);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, none);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, none);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, none);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, none);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, none);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, none);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, none);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, none);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, none);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, none);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, none);
}
:root {
  --mat-app-background-color: #faf9fd;
  --mat-app-text-color: #1a1b1f;
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-ripple-color: rgba(26, 27, 31, 0.1);
  --mat-option-selected-state-label-text-color: #131c2b;
  --mat-option-label-text-color: #1a1b1f;
  --mat-option-hover-state-layer-color: rgba(26, 27, 31, 0.08);
  --mat-option-focus-state-layer-color: rgba(26, 27, 31, 0.12);
  --mat-option-selected-state-layer-color: #dae2f9;
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 1.25rem;
  --mat-option-label-text-size: 1rem;
  --mat-option-label-text-tracking: 0.006rem;
  --mat-option-label-text-weight: 400;
  --mat-optgroup-label-text-color: #44474e;
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 1.25rem;
  --mat-optgroup-label-text-size: 0.875rem;
  --mat-optgroup-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-weight: 500;
  --mat-full-pseudo-checkbox-selected-icon-color: #005cbb;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;
  --mat-full-pseudo-checkbox-unselected-icon-color: #44474e;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #faf9fd;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, 0.38);
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, 0.38);
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #005cbb;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(26, 27, 31, 0.38);
  --mdc-elevated-card-container-color: #f4f3f6;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-elevated-card-container-shape: 12px;
  --mdc-outlined-card-container-color: #faf9fd;
  --mdc-outlined-card-outline-color: #c4c6d0;
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-shape: 12px;
  --mdc-outlined-card-outline-width: 1px;
  --mat-card-subtitle-text-color: #1a1b1f;
  --mat-card-title-text-font: Roboto, sans-serif;
  --mat-card-title-text-line-height: 1.75rem;
  --mat-card-title-text-size: 1.375rem;
  --mat-card-title-text-tracking: 0;
  --mat-card-title-text-weight: 400;
  --mat-card-subtitle-text-font: Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 1.5rem;
  --mat-card-subtitle-text-size: 1rem;
  --mat-card-subtitle-text-tracking: 0.009rem;
  --mat-card-subtitle-text-weight: 500;
  --mdc-linear-progress-active-indicator-color: #005cbb;
  --mdc-linear-progress-track-color: #e0e2ec;
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-color: #2f3033;
  --mdc-plain-tooltip-supporting-text-color: #f2f0f4;
  --mdc-plain-tooltip-supporting-text-line-height: 1rem;
  --mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 0.75rem;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.025rem;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-filled-text-field-caret-color: #005cbb;
  --mdc-filled-text-field-focus-active-indicator-color: #005cbb;
  --mdc-filled-text-field-focus-label-text-color: #005cbb;
  --mdc-filled-text-field-container-color: #e0e2ec;
  --mdc-filled-text-field-disabled-container-color: rgba(26, 27, 31, 0.04);
  --mdc-filled-text-field-label-text-color: #44474e;
  --mdc-filled-text-field-hover-label-text-color: #44474e;
  --mdc-filled-text-field-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-text-field-input-text-color: #1a1b1f;
  --mdc-filled-text-field-disabled-input-text-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: #44474e;
  --mdc-filled-text-field-error-hover-label-text-color: #410002;
  --mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;
  --mdc-filled-text-field-error-label-text-color: #ba1a1a;
  --mdc-filled-text-field-active-indicator-color: #44474e;
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-text-field-hover-active-indicator-color: #1a1b1f;
  --mdc-filled-text-field-error-active-indicator-color: #ba1a1a;
  --mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;
  --mdc-filled-text-field-error-hover-active-indicator-color: #410002;
  --mdc-filled-text-field-label-text-font: Roboto, sans-serif;
  --mdc-filled-text-field-label-text-size: 1rem;
  --mdc-filled-text-field-label-text-tracking: 0.031rem;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-caret-color: #005cbb;
  --mdc-outlined-text-field-focus-outline-color: #005cbb;
  --mdc-outlined-text-field-focus-label-text-color: #005cbb;
  --mdc-outlined-text-field-label-text-color: #44474e;
  --mdc-outlined-text-field-hover-label-text-color: #1a1b1f;
  --mdc-outlined-text-field-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-outlined-text-field-input-text-color: #1a1b1f;
  --mdc-outlined-text-field-disabled-input-text-color: rgba(26, 27, 31, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: #44474e;
  --mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;
  --mdc-outlined-text-field-error-label-text-color: #ba1a1a;
  --mdc-outlined-text-field-error-hover-label-text-color: #410002;
  --mdc-outlined-text-field-outline-color: #74777f;
  --mdc-outlined-text-field-disabled-outline-color: rgba(26, 27, 31, 0.12);
  --mdc-outlined-text-field-hover-outline-color: #1a1b1f;
  --mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;
  --mdc-outlined-text-field-error-hover-outline-color: #410002;
  --mdc-outlined-text-field-error-outline-color: #ba1a1a;
  --mdc-outlined-text-field-label-text-font: Roboto, sans-serif;
  --mdc-outlined-text-field-label-text-size: 1rem;
  --mdc-outlined-text-field-label-text-tracking: 0.031rem;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
  --mat-form-field-focus-select-arrow-color: #005cbb;
  --mat-form-field-disabled-input-text-placeholder-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-state-layer-color: #1a1b1f;
  --mat-form-field-error-text-color: #ba1a1a;
  --mat-form-field-select-option-text-color: #1a1b1f;
  --mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-leading-icon-color: #44474e;
  --mat-form-field-disabled-leading-icon-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-trailing-icon-color: #44474e;
  --mat-form-field-disabled-trailing-icon-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-error-focus-trailing-icon-color: #ba1a1a;
  --mat-form-field-error-hover-trailing-icon-color: #410002;
  --mat-form-field-error-trailing-icon-color: #ba1a1a;
  --mat-form-field-enabled-select-arrow-color: #44474e;
  --mat-form-field-disabled-select-arrow-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-container-text-font: Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 1.5rem;
  --mat-form-field-container-text-size: 1rem;
  --mat-form-field-container-text-tracking: 0.031rem;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-subscript-text-font: Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 1rem;
  --mat-form-field-subscript-text-size: 0.75rem;
  --mat-form-field-subscript-text-tracking: 0.025rem;
  --mat-form-field-subscript-text-weight: 400;
  --mat-form-field-container-height: 56px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 16px;
  --mat-form-field-filled-with-label-container-padding-top: 24px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
  --mat-form-field-focus-state-layer-opacity: 0;
  --mat-select-panel-background-color: #efedf0;
  --mat-select-enabled-trigger-text-color: #1a1b1f;
  --mat-select-disabled-trigger-text-color: rgba(26, 27, 31, 0.38);
  --mat-select-placeholder-text-color: #44474e;
  --mat-select-enabled-arrow-color: #44474e;
  --mat-select-disabled-arrow-color: rgba(26, 27, 31, 0.38);
  --mat-select-focused-arrow-color: #005cbb;
  --mat-select-invalid-arrow-color: #ba1a1a;
  --mat-select-trigger-text-font: Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 1.5rem;
  --mat-select-trigger-text-size: 1rem;
  --mat-select-trigger-text-tracking: 0.031rem;
  --mat-select-trigger-text-weight: 400;
  --mat-select-arrow-transform: translateY(-8px);
  --mat-select-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: #efedf0;
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-dialog-container-color: #faf9fd;
  --mdc-dialog-subhead-color: #1a1b1f;
  --mdc-dialog-supporting-text-color: #44474e;
  --mdc-dialog-subhead-font: Roboto, sans-serif;
  --mdc-dialog-subhead-line-height: 2rem;
  --mdc-dialog-subhead-size: 1.5rem;
  --mdc-dialog-subhead-weight: 400;
  --mdc-dialog-subhead-tracking: 0;
  --mdc-dialog-supporting-text-font: Roboto, sans-serif;
  --mdc-dialog-supporting-text-line-height: 1.25rem;
  --mdc-dialog-supporting-text-size: 0.875rem;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: 0.016rem;
  --mdc-dialog-container-shape: 28px;
  --mat-dialog-container-elevation-shadow: none;
  --mat-dialog-container-max-width: 560px;
  --mat-dialog-container-small-max-width: calc(100vw - 32px);
  --mat-dialog-container-min-width: 280px;
  --mat-dialog-actions-alignment: flex-end;
  --mat-dialog-actions-padding: 16px 24px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px 0;
  --mat-dialog-headline-padding: 6px 24px 13px;
  --mdc-chip-outline-color: #74777f;
  --mdc-chip-disabled-outline-color: rgba(26, 27, 31, 0.12);
  --mdc-chip-focus-outline-color: #44474e;
  --mdc-chip-hover-state-layer-opacity: 0.08;
  --mdc-chip-selected-hover-state-layer-opacity: 0.08;
  --mdc-chip-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-chip-elevated-selected-container-color: #dae2f9;
  --mdc-chip-flat-disabled-selected-container-color: rgba(26, 27, 31, 0.12);
  --mdc-chip-focus-state-layer-color: #44474e;
  --mdc-chip-hover-state-layer-color: #44474e;
  --mdc-chip-selected-hover-state-layer-color: #131c2b;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #131c2b;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #44474e;
  --mdc-chip-selected-label-text-color: #131c2b;
  --mdc-chip-with-icon-icon-color: #44474e;
  --mdc-chip-with-icon-disabled-icon-color: #1a1b1f;
  --mdc-chip-with-icon-selected-icon-color: #131c2b;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #44474e;
  --mdc-chip-label-text-font: Roboto, sans-serif;
  --mdc-chip-label-text-line-height: 1.25rem;
  --mdc-chip-label-text-size: 0.875rem;
  --mdc-chip-label-text-tracking: 0.006rem;
  --mdc-chip-label-text-weight: 500;
  --mdc-chip-container-height: 32px;
  --mdc-chip-container-shape-radius: 8px;
  --mdc-chip-with-avatar-avatar-shape-radius: 24px;
  --mdc-chip-with-avatar-avatar-size: 24px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 1px;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 0.38;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 0.38;
  --mdc-chip-with-icon-disabled-icon-opacity: 0.38;
  --mdc-chip-elevated-container-color: transparent;
  --mat-chip-trailing-action-state-layer-color: #44474e;
  --mat-chip-selected-trailing-action-state-layer-color: #131c2b;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0.08;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;
  --mat-chip-selected-trailing-icon-color: #131c2b;
  --mat-chip-disabled-container-opacity: 1;
  --mat-chip-trailing-action-opacity: 1;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.08;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.12;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.08;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.12;
  --mdc-switch-selected-focus-state-layer-color: #005cbb;
  --mdc-switch-selected-handle-color: #ffffff;
  --mdc-switch-selected-hover-state-layer-color: #005cbb;
  --mdc-switch-selected-pressed-state-layer-color: #005cbb;
  --mdc-switch-selected-focus-handle-color: #d7e3ff;
  --mdc-switch-selected-hover-handle-color: #d7e3ff;
  --mdc-switch-selected-pressed-handle-color: #d7e3ff;
  --mdc-switch-selected-focus-track-color: #005cbb;
  --mdc-switch-selected-hover-track-color: #005cbb;
  --mdc-switch-selected-pressed-track-color: #005cbb;
  --mdc-switch-selected-track-color: #005cbb;
  --mdc-switch-disabled-selected-handle-color: #faf9fd;
  --mdc-switch-disabled-selected-icon-color: #1a1b1f;
  --mdc-switch-disabled-selected-track-color: #1a1b1f;
  --mdc-switch-disabled-unselected-handle-color: #1a1b1f;
  --mdc-switch-disabled-unselected-icon-color: #e0e2ec;
  --mdc-switch-disabled-unselected-track-color: #e0e2ec;
  --mdc-switch-selected-icon-color: #001b3f;
  --mdc-switch-unselected-focus-handle-color: #44474e;
  --mdc-switch-unselected-focus-state-layer-color: #1a1b1f;
  --mdc-switch-unselected-focus-track-color: #e0e2ec;
  --mdc-switch-unselected-handle-color: #74777f;
  --mdc-switch-unselected-hover-handle-color: #44474e;
  --mdc-switch-unselected-hover-state-layer-color: #1a1b1f;
  --mdc-switch-unselected-hover-track-color: #e0e2ec;
  --mdc-switch-unselected-icon-color: #e0e2ec;
  --mdc-switch-unselected-pressed-handle-color: #44474e;
  --mdc-switch-unselected-pressed-state-layer-color: #1a1b1f;
  --mdc-switch-unselected-pressed-track-color: #e0e2ec;
  --mdc-switch-unselected-track-color: #e0e2ec;
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-shape: 9999px;
  --mdc-switch-selected-icon-size: 16px;
  --mdc-switch-track-height: 32px;
  --mdc-switch-track-shape: 9999px;
  --mdc-switch-track-width: 52px;
  --mdc-switch-unselected-icon-size: 16px;
  --mdc-switch-state-layer-size: 40px;
  --mat-switch-track-outline-color: #74777f;
  --mat-switch-disabled-unselected-track-outline-color: #1a1b1f;
  --mat-switch-label-text-color: #1a1b1f;
  --mat-switch-label-text-font: Roboto, sans-serif;
  --mat-switch-label-text-line-height: 1.25rem;
  --mat-switch-label-text-size: 0.875rem;
  --mat-switch-label-text-tracking: 0.016rem;
  --mat-switch-label-text-weight: 400;
  --mat-switch-disabled-selected-handle-opacity: 1;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 16px;
  --mat-switch-selected-handle-size: 24px;
  --mat-switch-pressed-handle-size: 28px;
  --mat-switch-with-icon-handle-size: 24px;
  --mat-switch-selected-handle-horizontal-margin: 0 24px;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0 24px;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0 22px;
  --mat-switch-unselected-handle-horizontal-margin: 0 8px;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0 2px;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 0;
  --mat-switch-visible-track-transition: opacity 75ms;
  --mat-switch-hidden-track-transition: opacity 75ms;
  --mat-switch-track-outline-width: 2px;
  --mat-switch-selected-track-outline-width: 2px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 2px;
  --mdc-radio-disabled-selected-icon-color: #1a1b1f;
  --mdc-radio-disabled-unselected-icon-color: #1a1b1f;
  --mdc-radio-unselected-hover-icon-color: #1a1b1f;
  --mdc-radio-unselected-focus-icon-color: #1a1b1f;
  --mdc-radio-unselected-icon-color: #44474e;
  --mdc-radio-unselected-pressed-icon-color: #1a1b1f;
  --mdc-radio-selected-focus-icon-color: #005cbb;
  --mdc-radio-selected-hover-icon-color: #005cbb;
  --mdc-radio-selected-icon-color: #005cbb;
  --mdc-radio-selected-pressed-icon-color: #005cbb;
  --mdc-radio-state-layer-size: 40px;
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-ripple-color: #1a1b1f;
  --mat-radio-checked-ripple-color: #005cbb;
  --mat-radio-disabled-label-color: rgba(26, 27, 31, 0.38);
  --mat-radio-label-text-color: #1a1b1f;
  --mat-radio-label-text-font: Roboto, sans-serif;
  --mat-radio-label-text-line-height: 1.25rem;
  --mat-radio-label-text-size: 0.875rem;
  --mat-radio-label-text-tracking: 0.016rem;
  --mat-radio-label-text-weight: 400;
  --mat-radio-touch-target-display: block;
  --mdc-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-slider-handle-color: #005cbb;
  --mdc-slider-focus-handle-color: #005cbb;
  --mdc-slider-hover-handle-color: #005cbb;
  --mdc-slider-active-track-color: #005cbb;
  --mdc-slider-inactive-track-color: #e0e2ec;
  --mdc-slider-with-tick-marks-inactive-container-color: #44474e;
  --mdc-slider-with-tick-marks-active-container-color: #ffffff;
  --mdc-slider-disabled-active-track-color: #1a1b1f;
  --mdc-slider-disabled-handle-color: #1a1b1f;
  --mdc-slider-disabled-inactive-track-color: #1a1b1f;
  --mdc-slider-label-container-color: #005cbb;
  --mdc-slider-label-label-text-color: #ffffff;
  --mdc-slider-with-overlap-handle-outline-color: #ffffff;
  --mdc-slider-with-tick-marks-disabled-container-color: #1a1b1f;
  --mdc-slider-label-label-text-font: Roboto, sans-serif;
  --mdc-slider-label-label-text-size: 0.75rem;
  --mdc-slider-label-label-text-line-height: 1rem;
  --mdc-slider-label-label-text-tracking: 0.031rem;
  --mdc-slider-label-label-text-weight: 500;
  --mdc-slider-active-track-height: 4px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 9999px;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.38;
  --mdc-slider-with-tick-marks-container-shape: 9999px;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.38;
  --mat-slider-ripple-color: #005cbb;
  --mat-slider-hover-state-layer-color: rgba(0, 92, 187, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 92, 187, 0.2);
  --mat-slider-value-indicator-width: 28px;
  --mat-slider-value-indicator-height: 28px;
  --mat-slider-value-indicator-caret-display: none;
  --mat-slider-value-indicator-border-radius: 50% 50% 50% 0;
  --mat-slider-value-indicator-padding: 0;
  --mat-slider-value-indicator-text-transform: rotate(45deg);
  --mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);
  --mat-slider-value-indicator-opacity: 1;
  --mat-menu-item-label-text-color: #1a1b1f;
  --mat-menu-item-icon-color: #44474e;
  --mat-menu-item-hover-state-layer-color: rgba(26, 27, 31, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(26, 27, 31, 0.12);
  --mat-menu-container-color: #efedf0;
  --mat-menu-divider-color: #e0e2ec;
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-size: 0.875rem;
  --mat-menu-item-label-text-tracking: 0.006rem;
  --mat-menu-item-label-text-line-height: 1.25rem;
  --mat-menu-item-label-text-weight: 500;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 8px;
  --mat-menu-divider-top-spacing: 8px;
  --mat-menu-item-spacing: 12px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 12px;
  --mat-menu-item-trailing-spacing: 12px;
  --mat-menu-item-with-icon-leading-spacing: 12px;
  --mat-menu-item-with-icon-trailing-spacing: 12px;
  --mat-menu-base-elevation-level: 2;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: #d7e3ff;
  --mdc-list-list-item-disabled-state-layer-color: #1a1b1f;
  --mdc-list-list-item-disabled-state-layer-opacity: 0.12;
  --mdc-list-list-item-label-text-color: #1a1b1f;
  --mdc-list-list-item-supporting-text-color: #44474e;
  --mdc-list-list-item-leading-icon-color: #44474e;
  --mdc-list-list-item-trailing-supporting-text-color: #44474e;
  --mdc-list-list-item-trailing-icon-color: #44474e;
  --mdc-list-list-item-selected-trailing-icon-color: #005cbb;
  --mdc-list-list-item-disabled-label-text-color: #1a1b1f;
  --mdc-list-list-item-disabled-leading-icon-color: #1a1b1f;
  --mdc-list-list-item-disabled-trailing-icon-color: #1a1b1f;
  --mdc-list-list-item-hover-label-text-color: #1a1b1f;
  --mdc-list-list-item-focus-label-text-color: #1a1b1f;
  --mdc-list-list-item-hover-state-layer-color: #1a1b1f;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: #1a1b1f;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
  --mdc-list-list-item-label-text-font: Roboto, sans-serif;
  --mdc-list-list-item-label-text-line-height: 1.5rem;
  --mdc-list-list-item-label-text-size: 1rem;
  --mdc-list-list-item-label-text-tracking: 0.031rem;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 1.25rem;
  --mdc-list-list-item-supporting-text-size: 0.875rem;
  --mdc-list-list-item-supporting-text-tracking: 0.016rem;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 1rem;
  --mdc-list-list-item-trailing-supporting-text-size: 0.688rem;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.031rem;
  --mdc-list-list-item-trailing-supporting-text-weight: 500;
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 9999px;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-label-text-opacity: 0.3;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: #dae2f9;
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 16px;
  --mat-list-active-indicator-shape: 9999px;
  --mat-paginator-container-text-color: #1a1b1f;
  --mat-paginator-container-background-color: #faf9fd;
  --mat-paginator-enabled-icon-color: #44474e;
  --mat-paginator-disabled-icon-color: rgba(26, 27, 31, 0.38);
  --mat-paginator-container-text-font: Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 1rem;
  --mat-paginator-container-text-size: 0.75rem;
  --mat-paginator-container-text-tracking: 0.025rem;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 0.75rem;
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-color: #005cbb;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: #e0e2ec;
  --mat-tab-header-pagination-icon-color: #1a1b1f;
  --mat-tab-header-inactive-label-text-color: #1a1b1f;
  --mat-tab-header-active-label-text-color: #1a1b1f;
  --mat-tab-header-active-ripple-color: #1a1b1f;
  --mat-tab-header-inactive-ripple-color: #1a1b1f;
  --mat-tab-header-inactive-focus-label-text-color: #1a1b1f;
  --mat-tab-header-inactive-hover-label-text-color: #1a1b1f;
  --mat-tab-header-active-focus-label-text-color: #1a1b1f;
  --mat-tab-header-active-hover-label-text-color: #1a1b1f;
  --mat-tab-header-active-focus-indicator-color: #005cbb;
  --mat-tab-header-active-hover-indicator-color: #005cbb;
  --mat-tab-header-label-text-font: Roboto, sans-serif;
  --mat-tab-header-label-text-size: 0.875rem;
  --mat-tab-header-label-text-tracking: 0.006rem;
  --mat-tab-header-label-text-line-height: 1.25rem;
  --mat-tab-header-label-text-weight: 500;
  --mat-tab-header-divider-height: 1px;
  --mdc-checkbox-disabled-selected-checkmark-color: #faf9fd;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.08;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.08;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mdc-checkbox-selected-pressed-icon-color: #005cbb;
  --mdc-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, 0.38);
  --mdc-checkbox-selected-checkmark-color: #ffffff;
  --mdc-checkbox-selected-focus-icon-color: #005cbb;
  --mdc-checkbox-selected-hover-icon-color: #005cbb;
  --mdc-checkbox-selected-icon-color: #005cbb;
  --mdc-checkbox-unselected-focus-icon-color: #1a1b1f;
  --mdc-checkbox-unselected-hover-icon-color: #1a1b1f;
  --mdc-checkbox-unselected-icon-color: #44474e;
  --mdc-checkbox-selected-focus-state-layer-color: #005cbb;
  --mdc-checkbox-selected-hover-state-layer-color: #005cbb;
  --mdc-checkbox-selected-pressed-state-layer-color: #1a1b1f;
  --mdc-checkbox-unselected-focus-state-layer-color: #1a1b1f;
  --mdc-checkbox-unselected-hover-state-layer-color: #1a1b1f;
  --mdc-checkbox-unselected-pressed-state-layer-color: #005cbb;
  --mdc-checkbox-state-layer-size: 40px;
  --mat-checkbox-disabled-label-color: rgba(26, 27, 31, 0.38);
  --mat-checkbox-label-text-color: #1a1b1f;
  --mat-checkbox-label-text-font: Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 1.25rem;
  --mat-checkbox-label-text-size: 0.875rem;
  --mat-checkbox-label-text-tracking: 0.016rem;
  --mat-checkbox-label-text-weight: 400;
  --mat-checkbox-touch-target-display: block;
  --mdc-text-button-label-text-color: #005cbb;
  --mdc-text-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-text-button-label-text-font: Roboto, sans-serif;
  --mdc-text-button-label-text-size: 0.875rem;
  --mdc-text-button-label-text-tracking: 0.006rem;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-container-height: 40px;
  --mdc-text-button-container-shape: 9999px;
  --mdc-protected-button-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-container-color: #faf9fd;
  --mdc-protected-button-label-text-color: #005cbb;
  --mdc-protected-button-disabled-container-color: rgba(26, 27, 31, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-protected-button-label-text-font: Roboto, sans-serif;
  --mdc-protected-button-label-text-size: 0.875rem;
  --mdc-protected-button-label-text-tracking: 0.006rem;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-container-height: 40px;
  --mdc-protected-button-container-shape: 9999px;
  --mdc-filled-button-container-color: #005cbb;
  --mdc-filled-button-label-text-color: #ffffff;
  --mdc-filled-button-disabled-container-color: rgba(26, 27, 31, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-button-label-text-font: Roboto, sans-serif;
  --mdc-filled-button-label-text-size: 0.875rem;
  --mdc-filled-button-label-text-tracking: 0.006rem;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-container-height: 40px;
  --mdc-filled-button-container-shape: 9999px;
  --mdc-outlined-button-disabled-outline-color: rgba(26, 27, 31, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-outlined-button-label-text-color: #005cbb;
  --mdc-outlined-button-outline-color: #74777f;
  --mdc-outlined-button-label-text-font: Roboto, sans-serif;
  --mdc-outlined-button-label-text-size: 0.875rem;
  --mdc-outlined-button-label-text-tracking: 0.006rem;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-container-height: 40px;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 9999px;
  --mat-text-button-state-layer-color: #005cbb;
  --mat-text-button-disabled-state-layer-color: #44474e;
  --mat-text-button-ripple-color: rgba(0, 92, 187, 0.12);
  --mat-text-button-hover-state-layer-opacity: 0.08;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
  --mat-text-button-touch-target-display: block;
  --mat-text-button-horizontal-padding: 12px;
  --mat-text-button-with-icon-horizontal-padding: 16px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: -4px;
  --mat-protected-button-state-layer-color: #005cbb;
  --mat-protected-button-disabled-state-layer-color: #44474e;
  --mat-protected-button-ripple-color: rgba(0, 92, 187, 0.12);
  --mat-protected-button-hover-state-layer-opacity: 0.08;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mat-protected-button-touch-target-display: block;
  --mat-protected-button-horizontal-padding: 24px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -8px;
  --mat-filled-button-state-layer-color: #ffffff;
  --mat-filled-button-disabled-state-layer-color: #44474e;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.12);
  --mat-filled-button-hover-state-layer-opacity: 0.08;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
  --mat-filled-button-touch-target-display: block;
  --mat-filled-button-horizontal-padding: 24px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -8px;
  --mat-outlined-button-state-layer-color: #005cbb;
  --mat-outlined-button-disabled-state-layer-color: #44474e;
  --mat-outlined-button-ripple-color: rgba(0, 92, 187, 0.12);
  --mat-outlined-button-hover-state-layer-opacity: 0.08;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
  --mat-outlined-button-touch-target-display: block;
  --mat-outlined-button-horizontal-padding: 24px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -8px;
  --mdc-icon-button-icon-color: #44474e;
  --mdc-icon-button-disabled-icon-color: rgba(26, 27, 31, 0.38);
  --mdc-icon-button-state-layer-size: 40px;
  --mdc-icon-button-icon-size: 24px;
  --mat-icon-button-state-layer-color: #44474e;
  --mat-icon-button-disabled-state-layer-color: #44474e;
  --mat-icon-button-ripple-color: rgba(68, 71, 78, 0.12);
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-touch-target-display: block;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-label-text-font: Roboto, sans-serif;
  --mdc-extended-fab-label-text-size: 0.875rem;
  --mdc-extended-fab-label-text-tracking: 0.006rem;
  --mdc-extended-fab-label-text-weight: 500;
  --mdc-extended-fab-container-height: 56px;
  --mdc-extended-fab-container-shape: 16px;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-color: #d7e3ff;
  --mdc-fab-container-shape: 16px;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-color: #d7e3ff;
  --mdc-fab-small-container-shape: 12px;
  --mat-fab-foreground-color: #001b3f;
  --mat-fab-state-layer-color: #001b3f;
  --mat-fab-ripple-color: rgba(0, 27, 63, 0.12);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(26, 27, 31, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(26, 27, 31, 0.38);
  --mat-fab-touch-target-display: block;
  --mat-fab-small-foreground-color: #001b3f;
  --mat-fab-small-state-layer-color: #001b3f;
  --mat-fab-small-ripple-color: rgba(0, 27, 63, 0.12);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(26, 27, 31, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(26, 27, 31, 0.38);
  --mdc-snackbar-container-color: #2f3033;
  --mdc-snackbar-supporting-text-color: #f2f0f4;
  --mdc-snackbar-supporting-text-font: Roboto, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.25rem;
  --mdc-snackbar-supporting-text-size: 0.875rem;
  --mdc-snackbar-supporting-text-weight: 400;
  --mdc-snackbar-container-shape: 4px;
  --mat-snack-bar-button-color: #abc7ff;
  --mat-table-background-color: #faf9fd;
  --mat-table-header-headline-color: #1a1b1f;
  --mat-table-row-item-label-text-color: #1a1b1f;
  --mat-table-row-item-outline-color: #74777f;
  --mat-table-header-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 1.25rem;
  --mat-table-header-headline-size: 0.875rem;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.006rem;
  --mat-table-row-item-label-text-font: Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.25rem;
  --mat-table-row-item-label-text-size: 0.875rem;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.016rem;
  --mat-table-footer-supporting-text-font: Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.25rem;
  --mat-table-footer-supporting-text-size: 0.875rem;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.016rem;
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
  --mat-table-row-item-outline-width: 1px;
  --mdc-circular-progress-active-indicator-color: #005cbb;
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mat-badge-background-color: #ba1a1a;
  --mat-badge-text-color: #ffffff;
  --mat-badge-disabled-state-background-color: rgba(186, 26, 26, 0.38);
  --mat-badge-disabled-state-text-color: #ffffff;
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-text-size: 0.688rem;
  --mat-badge-text-weight: 500;
  --mat-badge-large-size-text-size: 0.688rem;
  --mat-badge-container-shape: 9999px;
  --mat-badge-container-size: 16px;
  --mat-badge-small-size-container-size: 6px;
  --mat-badge-large-size-container-size: 16px;
  --mat-badge-legacy-container-size: unset;
  --mat-badge-legacy-small-size-container-size: unset;
  --mat-badge-legacy-large-size-container-size: unset;
  --mat-badge-container-offset: -12px 0;
  --mat-badge-small-size-container-offset: -6px 0;
  --mat-badge-large-size-container-offset: -12px 0;
  --mat-badge-container-overlap-offset: -12px;
  --mat-badge-small-size-container-overlap-offset: -6px;
  --mat-badge-large-size-container-overlap-offset: -12px;
  --mat-badge-container-padding: 0 4px;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0 4px;
  --mat-badge-line-height: 16px;
  --mat-badge-small-size-text-size: 0;
  --mat-badge-small-size-line-height: 6px;
  --mat-badge-large-size-line-height: 16px;
  --mat-bottom-sheet-container-text-color: #1a1b1f;
  --mat-bottom-sheet-container-background-color: #f4f3f6;
  --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5rem;
  --mat-bottom-sheet-container-text-size: 1rem;
  --mat-bottom-sheet-container-text-tracking: 0.031rem;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-bottom-sheet-container-shape: 28px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.08;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-standard-button-toggle-text-color: #1a1b1f;
  --mat-standard-button-toggle-state-layer-color: #1a1b1f;
  --mat-standard-button-toggle-selected-state-background-color: #dae2f9;
  --mat-standard-button-toggle-selected-state-text-color: #131c2b;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-standard-button-toggle-disabled-selected-state-background-color: rgba(26, 27, 31, 0.12);
  --mat-standard-button-toggle-divider-color: #74777f;
  --mat-standard-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 1.25rem;
  --mat-standard-button-toggle-label-text-size: 0.875rem;
  --mat-standard-button-toggle-label-text-tracking: 0.006rem;
  --mat-standard-button-toggle-label-text-weight: 500;
  --mat-standard-button-toggle-height: 40px;
  --mat-standard-button-toggle-shape: 9999px;
  --mat-standard-button-toggle-background-color: transparent;
  --mat-standard-button-toggle-disabled-state-background-color: transparent;
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-state-background-color: #005cbb;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(26, 27, 31, 0.12);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(26, 27, 31, 0.08);
  --mat-datepicker-toggle-active-state-icon-color: #44474e;
  --mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;
  --mat-datepicker-toggle-icon-color: #44474e;
  --mat-datepicker-calendar-body-label-text-color: #1a1b1f;
  --mat-datepicker-calendar-period-button-text-color: #44474e;
  --mat-datepicker-calendar-period-button-icon-color: #44474e;
  --mat-datepicker-calendar-navigation-button-icon-color: #44474e;
  --mat-datepicker-calendar-header-text-color: #44474e;
  --mat-datepicker-calendar-date-today-outline-color: #005cbb;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-date-text-color: #1a1b1f;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;
  --mat-datepicker-range-input-separator-color: #1a1b1f;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-container-background-color: #e9e7eb;
  --mat-datepicker-calendar-container-text-color: #1a1b1f;
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 0.875rem;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 0.875rem;
  --mat-datepicker-calendar-header-text-weight: 500;
  --mat-datepicker-calendar-container-shape: 16px;
  --mat-datepicker-calendar-container-touch-shape: 28px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-divider-color: transparent;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-divider-color: #74777f;
  --mat-divider-width: 1px;
  --mat-expansion-container-background-color: #faf9fd;
  --mat-expansion-container-text-color: #1a1b1f;
  --mat-expansion-actions-divider-color: #74777f;
  --mat-expansion-header-hover-state-layer-color: rgba(26, 27, 31, 0.08);
  --mat-expansion-header-focus-state-layer-color: rgba(26, 27, 31, 0.12);
  --mat-expansion-header-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-expansion-header-text-color: #1a1b1f;
  --mat-expansion-header-description-color: #44474e;
  --mat-expansion-header-indicator-color: #44474e;
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-size: 1rem;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: 1.5rem;
  --mat-expansion-header-text-tracking: 0.009rem;
  --mat-expansion-container-text-font: Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 1.5rem;
  --mat-expansion-container-text-size: 1rem;
  --mat-expansion-container-text-tracking: 0.031rem;
  --mat-expansion-container-text-weight: 400;
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
  --mat-expansion-container-shape: 12px;
  --mat-expansion-legacy-header-indicator-display: none;
  --mat-expansion-header-indicator-display: inline-block;
  --mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-header-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-icon-color: inherit;
  --mat-sidenav-container-background-color: #faf9fd;
  --mat-sidenav-container-text-color: #44474e;
  --mat-sidenav-content-background-color: #faf9fd;
  --mat-sidenav-content-text-color: #1a1b1f;
  --mat-sidenav-scrim-color: rgba(45, 48, 56, 0.4);
  --mat-sidenav-container-shape: 16px;
  --mat-sidenav-container-elevation-shadow: none;
  --mat-sidenav-container-width: 360px;
  --mat-sidenav-container-divider-color: transparent;
  --mat-stepper-header-icon-foreground-color: #faf9fd;
  --mat-stepper-header-selected-state-icon-background-color: #005cbb;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #005cbb;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
  --mat-stepper-container-color: #faf9fd;
  --mat-stepper-line-color: #74777f;
  --mat-stepper-header-hover-state-layer-color: rgba(47, 48, 51, 0.08);
  --mat-stepper-header-focus-state-layer-color: rgba(47, 48, 51, 0.12);
  --mat-stepper-header-label-text-color: #44474e;
  --mat-stepper-header-optional-label-text-color: #44474e;
  --mat-stepper-header-selected-state-label-text-color: #44474e;
  --mat-stepper-header-error-state-label-text-color: #ba1a1a;
  --mat-stepper-header-icon-background-color: #44474e;
  --mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;
  --mat-stepper-container-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-size: 0.875rem;
  --mat-stepper-header-label-text-weight: 500;
  --mat-stepper-header-error-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-weight: 500;
  --mat-stepper-header-height: 72px;
  --mat-stepper-header-focus-state-layer-shape: 12px;
  --mat-stepper-header-hover-state-layer-shape: 12px;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #1a1b1f;
  --mat-toolbar-container-background-color: #faf9fd;
  --mat-toolbar-container-text-color: #1a1b1f;
  --mat-toolbar-title-text-font: Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 1.75rem;
  --mat-toolbar-title-text-size: 1.375rem;
  --mat-toolbar-title-text-tracking: 0;
  --mat-toolbar-title-text-weight: 400;
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
  --mat-tree-container-background-color: #faf9fd;
  --mat-tree-node-text-color: #1a1b1f;
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 1rem;
  --mat-tree-node-text-weight: 400;
  --mat-tree-node-min-height: 48px;
}
.mat-theme-loaded-marker {
  display: none;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}

/* src/assets/css/bootstrap.min.css */
/*!
 * Bootstrap v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue:#007bff;
  --indigo:#6610f2;
  --purple:#6f42c1;
  --pink:#e83e8c;
  --red:#dc3545;
  --orange:#fd7e14;
  --yellow:#ffc107;
  --green:#28a745;
  --teal:#20c997;
  --cyan:#17a2b8;
  --white:#fff;
  --gray:#6c757d;
  --gray-dark:#343a40;
  --primary:#007bff;
  --secondary:#6c757d;
  --success:#28a745;
  --info:#17a2b8;
  --warning:#ffc107;
  --danger:#dc3545;
  --light:#f8f9fa;
  --dark:#343a40;
  --breakpoint-xs:0;
  --breakpoint-sm:576px;
  --breakpoint-md:768px;
  --breakpoint-lg:992px;
  --breakpoint-xl:1200px;
  --font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -.25em;
}
sup {
  top: -.5em;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family:
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
label {
  display: inline-block;
  margin-bottom: .5rem;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role=button] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}
.h1,
h1 {
  font-size: 2.5rem;
}
.h2,
h2 {
  font-size: 2rem;
}
.h3,
h3 {
  font-size: 1.75rem;
}
.h4,
h4 {
  font-size: 1.5rem;
}
.h5,
h5 {
  font-size: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.small,
small {
  font-size: 80%;
  font-weight: 400;
}
.mark,
mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014\a0";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: .2rem .4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: .2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width:576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width:768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width:992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width:1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.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-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -ms-flex-order: 12;
  order: 12;
}
.offset-1 {
  margin-left: 8.333333%;
}
.offset-2 {
  margin-left: 16.666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.333333%;
}
.offset-5 {
  margin-left: 41.666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.333333%;
}
.offset-8 {
  margin-left: 66.666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.333333%;
}
.offset-11 {
  margin-left: 91.666667%;
}
@media (min-width:576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width:768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width:992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 32%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width:1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table td,
.table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table-sm td,
.table-sm th {
  padding: .3rem;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, .05);
}
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, .075);
}
.table-primary,
.table-primary > td,
.table-primary > th {
  background-color: #b8daff;
}
.table-primary tbody + tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
  border-color: #7abaff;
}
.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}
.table-secondary,
.table-secondary > td,
.table-secondary > th {
  background-color: #d6d8db;
}
.table-secondary tbody + tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
  border-color: #b3b7bb;
}
.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}
.table-success,
.table-success > td,
.table-success > th {
  background-color: #c3e6cb;
}
.table-success tbody + tbody,
.table-success td,
.table-success th,
.table-success thead th {
  border-color: #8fd19e;
}
.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
.table-info,
.table-info > td,
.table-info > th {
  background-color: #bee5eb;
}
.table-info tbody + tbody,
.table-info td,
.table-info th,
.table-info thead th {
  border-color: #86cfda;
}
.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}
.table-warning,
.table-warning > td,
.table-warning > th {
  background-color: #ffeeba;
}
.table-warning tbody + tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
  border-color: #ffdf7e;
}
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}
.table-danger,
.table-danger > td,
.table-danger > th {
  background-color: #f5c6cb;
}
.table-danger tbody + tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
  border-color: #ed969e;
}
.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
.table-light,
.table-light > td,
.table-light > th {
  background-color: #fdfdfe;
}
.table-light tbody + tbody,
.table-light td,
.table-light th,
.table-light thead th {
  border-color: #fbfcfc;
}
.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
.table-dark,
.table-dark > td,
.table-dark > th {
  background-color: #c6c8ca;
}
.table-dark tbody + tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #95999c;
}
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}
.table-active,
.table-active > td,
.table-active > th {
  background-color: rgba(0, 0, 0, .075);
}
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, .075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, .075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, .05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, .075);
}
@media (max-width:575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width:767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width:991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width:1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
input[type=date].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control,
input[type=time].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}
.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .875rem;
  line-height: 1.5;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: .375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}
.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}
select.form-control[multiple],
select.form-control[size] {
  height: auto;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 1rem;
}
.form-text {
  display: block;
  margin-top: .25rem;
}
.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: .3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  color: #6c757d;
}
.form-check-label {
  margin-bottom: 0;
}
.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: .75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: .3125rem;
  margin-left: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #28a745;
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, .9);
  border-radius: .25rem;
}
.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #28a745;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}
.custom-select.is-valid,
.was-validated .custom-select:valid {
  border-color: #28a745;
  padding-right: calc(.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;
}
.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #28a745;
}
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
  display: block;
}
.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #28a745;
}
.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.custom-control-input.is-valid:focus ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}
.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #28a745;
}
.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, .9);
  border-radius: .25rem;
}
.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}
.custom-select.is-invalid,
.was-validated .custom-select:invalid {
  border-color: #dc3545;
  padding-right: calc(.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;
}
.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block;
}
.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #dc3545;
}
.custom-control-input.is-invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.custom-control-input.is-invalid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.custom-control-input.is-invalid:focus ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25);
}
.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width:576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .custom-select,
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: .25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition:
    color .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.btn.disabled,
.btn:disabled {
  opacity: .65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary.focus,
.btn-secondary:focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success.focus,
.btn-success:focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info.focus,
.btn-info:focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5);
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning.focus,
.btn-warning:focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger.focus,
.btn-danger:focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5);
}
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light.focus,
.btn-light:focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark.focus,
.btn-dark:focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5);
}
.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
}
.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light.focus,
.btn-outline-light:focus {
  box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}
.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}
.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link.focus,
.btn-link:focus {
  text-decoration: underline;
}
.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}
.btn-group-lg > .btn,
.btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}
.btn-group-sm > .btn,
.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: .5rem;
}
input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
  width: 100%;
}
.fade {
  transition: opacity .15s linear;
}
@media (prefers-reduced-motion:reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}
@media (prefers-reduced-motion:reduce) {
  .collapsing {
    transition: none;
  }
}
.dropdown,
.dropleft,
.dropright,
.dropup {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
@media (min-width:576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width:768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width:992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width:1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: .125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: .125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: .125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: .3em solid;
  border-bottom: .3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=top] {
  right: auto;
  bottom: auto;
}
.dropdown-divider {
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: .5rem 1.5rem;
  margin-bottom: 0;
  font-size: .875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: .25rem 1.5rem;
  color: #212529;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.btn-group-vertical > .btn:hover,
.btn-group > .btn:hover {
  z-index: 1;
}
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus {
  z-index: 1;
}
.btn-toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: .5625rem;
  padding-left: .5625rem;
}
.dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
  padding-right: .375rem;
  padding-left: .375rem;
}
.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
  padding-right: .75rem;
  padding-left: .75rem;
}
.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn-group:not(:first-child),
.btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control,
.input-group > .form-control-plaintext {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .form-control {
  margin-left: -1px;
}
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.input-group > .custom-file:not(:first-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after,
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .form-control:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-append,
.input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}
.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}
.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
  z-index: 3;
}
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group-append {
  margin-left: -1px;
}
.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: .375rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}
.input-group-text input[type=checkbox],
.input-group-text input[type=radio] {
  margin-top: 0;
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control:not(textarea) {
  height: calc(1.5em + 1rem + 2px);
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
  height: calc(1.5em + .5rem + 2px);
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before,
.custom-control-input[disabled] ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}
.custom-checkbox .custom-control-label::before {
  border-radius: .25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5);
}
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5);
}
.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: .5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: .5rem;
  transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out,
    -webkit-transform .15s ease-in-out;
  transition:
    transform .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  transition:
    transform .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out,
    -webkit-transform .15s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(.75rem);
  transform: translateX(.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5);
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: .75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.custom-select-sm {
  height: calc(1.5em + .5rem + 2px);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
}
.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin-bottom: 0;
}
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.custom-file-input:disabled ~ .custom-file-label,
.custom-file-input[disabled] ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + .75rem);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 .25rem .25rem 0;
}
.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion:reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion:reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: .2rem;
  margin-left: .2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion:reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: .5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition:
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: .5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  border-radius: .25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-text {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}
.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}
@media (max-width:575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width:576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width:767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width:768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width:991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width:992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width:1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width:1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, .9);
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, .9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, .5);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, .7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, .3);
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, .9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, .5);
  border-color: rgba(0, 0, 0, .1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, .5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, .9);
}
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, .9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, .5);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, .75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, .25);
}
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, .5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: .25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: .75rem;
}
.card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}
.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0, 0, 0, .03);
  border-top: 1px solid rgba(0, 0, 0, .125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}
.card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(.25rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width:576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width:576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: .75rem;
}
@media (min-width:576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: .25rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: .5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination-lg .page-link {
  padding: .75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: .3rem;
  border-bottom-left-radius: .3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: .3rem;
  border-bottom-right-radius: .3rem;
}
.pagination-sm .page-link {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: .2rem;
  border-bottom-left-radius: .2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: .2rem;
  border-bottom-right-radius: .2rem;
}
.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  transition:
    color .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
  .badge {
    transition: none;
  }
}
a.badge:focus,
a.badge:hover {
  text-decoration: none;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #007bff;
}
a.badge-primary:focus,
a.badge-primary:hover {
  color: #fff;
  background-color: #0062cc;
}
a.badge-primary.focus,
a.badge-primary:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:focus,
a.badge-secondary:hover {
  color: #fff;
  background-color: #545b62;
}
a.badge-secondary.focus,
a.badge-secondary:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5);
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:focus,
a.badge-success:hover {
  color: #fff;
  background-color: #1e7e34;
}
a.badge-success.focus,
a.badge-success:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:focus,
a.badge-info:hover {
  color: #fff;
  background-color: #117a8b;
}
a.badge-info.focus,
a.badge-info:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
}
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:focus,
a.badge-warning:hover {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning.focus,
a.badge-warning:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5);
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
a.badge-danger:focus,
a.badge-danger:hover {
  color: #fff;
  background-color: #bd2130;
}
a.badge-danger.focus,
a.badge-danger:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5);
}
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:focus,
a.badge-light:hover {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light.focus,
a.badge-light:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:focus,
a.badge-dark:hover {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark.focus,
a.badge-dark:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: .3rem;
}
@media (min-width:576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: .75rem 1.25rem;
  color: inherit;
}
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}
.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
}
.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width .6s ease;
}
@media (prefers-reduced-motion:reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image:
    linear-gradient(
      45deg,
      rgba(255, 255, 255, .15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, .15) 50%,
      rgba(255, 255, 255, .15) 75%,
      transparent 75%,
      transparent);
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion:reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.media-body {
  -ms-flex: 1;
  flex: 1;
}
.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: .25rem;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: .25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}
@media (min-width:576px) {
  .list-group-horizontal-sm {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width:768px) {
  .list-group-horizontal-md {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width:992px) {
  .list-group-horizontal-lg {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width:1200px) {
  .list-group-horizontal-xl {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}
.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}
.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: .75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}
a.close.disabled {
  pointer-events: none;
}
.toast {
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  max-width: 350px;
  font-size: .875rem;
  background-color: rgba(255, 255, 255, .85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
  opacity: 0;
  border-radius: .25rem;
}
.toast:not(:last-child) {
  margin-bottom: .75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}
.toast-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: .25rem .75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, .85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}
.toast-body {
  padding: .75rem;
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: .5;
}
.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: .75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
}
.modal-footer > * {
  margin: .25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width:576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width:992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width:1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: .9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: .8rem;
  height: .4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
  padding: .4rem 0;
}
.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-top .arrow {
  bottom: 0;
}
.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
  top: 0;
  border-width: .4rem .4rem 0;
  border-top-color: #000;
}
.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
  padding: 0 .4rem;
}
.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-right .arrow {
  left: 0;
  width: .4rem;
  height: .8rem;
}
.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
  right: 0;
  border-width: .4rem .4rem .4rem 0;
  border-right-color: #000;
}
.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
  padding: .4rem 0;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-bottom .arrow {
  top: 0;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  bottom: 0;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #000;
}
.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
  padding: 0 .4rem;
}
.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-left .arrow {
  right: 0;
  width: .4rem;
  height: .8rem;
}
.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
  left: 0;
  border-width: .4rem 0 .4rem .4rem;
  border-left-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: .5rem;
  margin: 0 .3rem;
}
.popover .arrow::after,
.popover .arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-popover-auto[x-placement^=top],
.bs-popover-top {
  margin-bottom: .5rem;
}
.bs-popover-auto[x-placement^=top] > .arrow,
.bs-popover-top > .arrow {
  bottom: calc(-.5rem - 1px);
}
.bs-popover-auto[x-placement^=top] > .arrow::before,
.bs-popover-top > .arrow::before {
  bottom: 0;
  border-width: .5rem .5rem 0;
  border-top-color: rgba(0, 0, 0, .25);
}
.bs-popover-auto[x-placement^=top] > .arrow::after,
.bs-popover-top > .arrow::after {
  bottom: 1px;
  border-width: .5rem .5rem 0;
  border-top-color: #fff;
}
.bs-popover-auto[x-placement^=right],
.bs-popover-right {
  margin-left: .5rem;
}
.bs-popover-auto[x-placement^=right] > .arrow,
.bs-popover-right > .arrow {
  left: calc(-.5rem - 1px);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}
.bs-popover-auto[x-placement^=right] > .arrow::before,
.bs-popover-right > .arrow::before {
  left: 0;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: rgba(0, 0, 0, .25);
}
.bs-popover-auto[x-placement^=right] > .arrow::after,
.bs-popover-right > .arrow::after {
  left: 1px;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: #fff;
}
.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom {
  margin-top: .5rem;
}
.bs-popover-auto[x-placement^=bottom] > .arrow,
.bs-popover-bottom > .arrow {
  top: calc(-.5rem - 1px);
}
.bs-popover-auto[x-placement^=bottom] > .arrow::before,
.bs-popover-bottom > .arrow::before {
  top: 0;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.bs-popover-auto[x-placement^=bottom] > .arrow::after,
.bs-popover-bottom > .arrow::after {
  top: 1px;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: #fff;
}
.bs-popover-auto[x-placement^=bottom] .popover-header::before,
.bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}
.bs-popover-auto[x-placement^=left],
.bs-popover-left {
  margin-right: .5rem;
}
.bs-popover-auto[x-placement^=left] > .arrow,
.bs-popover-left > .arrow {
  right: calc(-.5rem - 1px);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}
.bs-popover-auto[x-placement^=left] > .arrow::before,
.bs-popover-left > .arrow::before {
  right: 0;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: rgba(0, 0, 0, .25);
}
.bs-popover-auto[x-placement^=left] > .arrow::after,
.bs-popover-left > .arrow::after {
  right: 1px;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: #fff;
}
.popover-header {
  padding: .5rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: .5rem .75rem;
  color: #212529;
}
.carousel {
  position: relative;
}
.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out;
  transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}
.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s .6s;
}
@media (prefers-reduced-motion:reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5;
  transition: opacity .15s ease;
}
@media (prefers-reduced-motion:reduce) {
  .carousel-control-next,
  .carousel-control-prev {
    transition: none;
  }
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}
@media (prefers-reduced-motion:reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: .25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
  animation: .75s linear infinite spinner-border;
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: .2em;
}
@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: .75s linear infinite spinner-grow;
  animation: .75s linear infinite spinner-grow;
}
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
@media (prefers-reduced-motion:reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.bg-primary {
  background-color: #007bff !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #0062cc !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #545b62 !important;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1d2124 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #007bff !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded-sm {
  border-radius: .2rem !important;
}
.rounded {
  border-radius: .25rem !important;
}
.rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
}
.rounded-right {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}
.rounded-left {
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}
.rounded-lg {
  border-radius: .3rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width:576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width:768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width:992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width:1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}
@media (min-width:576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width:768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width:992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width:1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width:576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width:768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width:992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width:1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}
.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports ((position:-webkit-sticky) or (position:sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.shadow {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.vw-100 {
  width: 100vw !important;
}
.vh-100 {
  height: 100vh !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: .25rem !important;
}
.mt-1,
.my-1 {
  margin-top: .25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: .25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: .25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: .25rem !important;
}
.m-2 {
  margin: .5rem !important;
}
.mt-2,
.my-2 {
  margin-top: .5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: .5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: .5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: .5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: .25rem !important;
}
.pt-1,
.py-1 {
  padding-top: .25rem !important;
}
.pr-1,
.px-1 {
  padding-right: .25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: .25rem !important;
}
.pl-1,
.px-1 {
  padding-left: .25rem !important;
}
.p-2 {
  padding: .5rem !important;
}
.pt-2,
.py-2 {
  padding-top: .5rem !important;
}
.pr-2,
.px-2 {
  padding-right: .5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: .5rem !important;
}
.pl-2,
.px-2 {
  padding-left: .5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-n1 {
  margin: -.25rem !important;
}
.mt-n1,
.my-n1 {
  margin-top: -.25rem !important;
}
.mr-n1,
.mx-n1 {
  margin-right: -.25rem !important;
}
.mb-n1,
.my-n1 {
  margin-bottom: -.25rem !important;
}
.ml-n1,
.mx-n1 {
  margin-left: -.25rem !important;
}
.m-n2 {
  margin: -.5rem !important;
}
.mt-n2,
.my-n2 {
  margin-top: -.5rem !important;
}
.mr-n2,
.mx-n2 {
  margin-right: -.5rem !important;
}
.mb-n2,
.my-n2 {
  margin-bottom: -.5rem !important;
}
.ml-n2,
.mx-n2 {
  margin-left: -.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin: -3rem !important;
}
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width:576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: .25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: .25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: .25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: .25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: .25rem !important;
  }
  .m-sm-2 {
    margin: .5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: .5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: .5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: .5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: .5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: .25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: .25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: .25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: .25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: .25rem !important;
  }
  .p-sm-2 {
    padding: .5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: .5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: .5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: .5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: .5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -.25rem !important;
  }
  .m-sm-n2 {
    margin: -.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width:768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: .25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: .25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: .25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: .25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: .25rem !important;
  }
  .m-md-2 {
    margin: .5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: .5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: .5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: .5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: .5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: .25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: .25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: .25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: .25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: .25rem !important;
  }
  .p-md-2 {
    padding: .5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: .5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: .5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: .5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: .5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -.25rem !important;
  }
  .m-md-n2 {
    margin: -.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width:992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: .25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: .25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: .25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: .25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: .25rem !important;
  }
  .m-lg-2 {
    margin: .5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: .5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: .5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: .5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: .5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: .25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: .25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: .25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: .25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: .25rem !important;
  }
  .p-lg-2 {
    padding: .5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: .5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: .5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: .5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: .5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -.25rem !important;
  }
  .m-lg-n2 {
    margin: -.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width:1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: .25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: .25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: .25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: .25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: .25rem !important;
  }
  .m-xl-2 {
    margin: .5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: .5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: .5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: .5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: .5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: .25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: .25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: .25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: .25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: .25rem !important;
  }
  .p-xl-2 {
    padding: .5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: .5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: .5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: .5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: .5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -.25rem !important;
  }
  .m-xl-n2 {
    margin: -.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.text-monospace {
  font-family:
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace !important;
}
.text-justify {
  text-align: justify !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width:576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width:768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width:992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width:1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-lighter {
  font-weight: lighter !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-weight-bolder {
  font-weight: bolder !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #007bff !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: #0056b3 !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:focus,
a.text-secondary:hover {
  color: #494f54 !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:focus,
a.text-success:hover {
  color: #19692c !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:focus,
a.text-info:hover {
  color: #0f6674 !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:focus,
a.text-warning:hover {
  color: #ba8b00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:focus,
a.text-danger:hover {
  color: #a71d2a !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:focus,
a.text-light:hover {
  color: #cbd3da !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:focus,
a.text-dark:hover {
  color: #121416 !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, .5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, .5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.text-reset {
  color: inherit !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media print {
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  blockquote,
  pre {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark tbody + tbody,
  .table-dark td,
  .table-dark th,
  .table-dark thead th {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/* src/assets/css/fontawesome/css/font-awesome.min.css */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("./media/fontawesome-webfont.eot?v=4.7.0");
  src:
    url("./media/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),
    url("./media/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
    url("./media/fontawesome-webfont.woff?v=4.7.0") format("woff"),
    url("./media/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
    url("./media/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
/* .fa-phone:before {
  content: "\f095";
} */
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* src/assets/css/owl.carousel.min.css */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 92%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height .5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* src/assets/css/bootstrap-select.min.css */
/*!
 * Bootstrap-select v1.13.9 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2019 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */
.bootstrap-select > select.bs-select-hidden,
select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select {
  width: 220px\fffd;
  vertical-align: middle;
}
.bootstrap-select > .dropdown-toggle {
  position: relative;
  width: 100%;
  text-align: right;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.bootstrap-select > .dropdown-toggle:after {
  margin-top: -1px;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {
  color: rgba(255, 255, 255, .5);
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: .5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
  z-index: 0 !important;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2 !important;
}
.bootstrap-select.is-invalid .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:invalid + .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:valid + .dropdown-toggle {
  border-color: #28a745;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  float: none;
  z-index: auto;
}
.form-inline .bootstrap-select,
.form-inline .bootstrap-select.form-control:not([class*=col-]) {
  width: auto;
}
.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*=col-].dropdown-menu-right,
.row .bootstrap-select[class*=col-].dropdown-menu-right {
  float: right;
}
.form-group .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-inline .bootstrap-select {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.bootstrap-select.form-control-lg .dropdown-toggle,
.bootstrap-select.form-control-sm .dropdown-toggle {
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.bootstrap-select.form-control-sm .dropdown-toggle {
  padding: .25rem .5rem;
}
.bootstrap-select.form-control-lg .dropdown-toggle {
  padding: .5rem 1rem;
}
.form-inline .bootstrap-select .form-control {
  width: 100%;
}
.bootstrap-select.disabled,
.bootstrap-select > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.disabled:focus,
.bootstrap-select > .disabled:focus {
  outline: 0 !important;
}
.bootstrap-select.bs-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select .dropdown-toggle .filter-option {
  position: static;
  top: 0;
  left: 0;
  float: left;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right: inherit;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  position: absolute;
  padding-top: inherit;
  padding-bottom: inherit;
  padding-left: inherit;
  float: none;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  padding-right: inherit;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
}
.bootstrap-select .dropdown-toggle .filter-expand {
  width: 0 !important;
  float: left;
  opacity: 0 !important;
  overflow: hidden;
}
.bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius: inherit;
}
.bootstrap-select[class*=col-] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select .dropdown-menu > .inner:focus {
  outline: 0 !important;
}
.bootstrap-select .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrap-select .dropdown-menu li {
  position: relative;
}
.bootstrap-select .dropdown-menu li.active small {
  color: rgba(255, 255, 255, .5) !important;
}
.bootstrap-select .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bootstrap-select .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select .dropdown-menu li small {
  padding-left: .5em;
}
.bootstrap-select .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  pointer-events: none;
  opacity: .9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position: static;
  display: inline;
  padding: 0;
  width: auto;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  display: inline;
}
.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  content: "\a0";
}
.bootstrap-select.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  top: 5px;
}
.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select .bs-ok-default:after {
  content: "";
  display: block;
  width: .5em;
  height: 1em;
  border-style: solid;
  border-width: 0 .26em .26em 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, .2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  bottom: auto;
  top: -4px;
  border-top: 7px solid rgba(204, 204, 204, .2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  bottom: auto;
  top: -4px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before {
  display: block;
}
.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}

/* src/assets/css/magnific-popup.min.css */
.mfp-bg,
.mfp-wrap {
  position: fixed;
  left: 0;
  top: 0;
}
.mfp-bg,
.mfp-container,
.mfp-wrap {
  height: 100%;
  width: 100%;
}
.mfp-arrow:after,
.mfp-arrow:before,
.mfp-container:before,
.mfp-figure:after {
  content: "";
}
.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  background: #0b0b0b;
  opacity: .8;
}
.mfp-wrap {
  z-index: 1043;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-close,
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
  display: none;
}
button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
.mfp-figure:after,
.mfp-iframe-scaler iframe {
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  position: absolute;
  left: 0;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: .65;
  padding: 0 0 18px 10px;
  font-style: normal;
  font-size: 28px;
  font-family:
    Arial,
    Baskerville,
    monospace;
}
.mfp-close:focus,
.mfp-close:hover {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-figure,
img.mfp-img {
  line-height: 0;
}
.mfp-arrow {
  position: absolute;
  opacity: .65;
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:focus,
.mfp-arrow:hover {
  opacity: 1;
}
.mfp-arrow:after,
.mfp-arrow:before {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-image-holder .mfp-content,
img.mfp-img {
  max-width: 100%;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.mfp-figure:after,
img.mfp-img {
  width: auto;
  height: auto;
  display: block;
}
img.mfp-img {
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}
.mfp-figure:after {
  top: 40px;
  bottom: 40px;
  right: 0;
  z-index: -1;
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width:800px) and (orientation:landscape), screen and (max-height:300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, .6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width:900px) {
  .mfp-arrow {
    -webkit-transform: scale(.75);
    transform: scale(.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* src/assets/css/loader.min.css */
.loader {
  height: 58px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  width: 58px;
}
.loader span {
  background: rgb(255, 95, 21);
  display: block;
  height: 12px;
  opacity: 0;
  position: absolute;
  width: 12px;
  animation: load 4.6s ease-in-out infinite;
  -o-animation: load 4.6s ease-in-out infinite;
  -ms-animation: load 4.6s ease-in-out infinite;
  -webkit-animation: load 4.6s ease-in-out infinite;
  -moz-animation: load 4.6s ease-in-out infinite;
}
.loader span.block-1 {
  animation-delay: 1.06s;
  -o-animation-delay: 1.06s;
  -ms-animation-delay: 1.06s;
  -webkit-animation-delay: 1.06s;
  -moz-animation-delay: 1.06s;
  left: 0px;
  top: 0px;
}
.loader span.block-2 {
  animation-delay: 0.97s;
  -o-animation-delay: 0.97s;
  -ms-animation-delay: 0.97s;
  -webkit-animation-delay: 0.97s;
  -moz-animation-delay: 0.97s;
  left: 16px;
  top: 0px;
}
.loader span.block-3 {
  animation-delay: 0.87s;
  -o-animation-delay: 0.87s;
  -ms-animation-delay: 0.87s;
  -webkit-animation-delay: 0.87s;
  -moz-animation-delay: 0.87s;
  left: 31px;
  top: 0px;
}
.loader span.block-4 {
  animation-delay: 0.78s;
  -o-animation-delay: 0.78s;
  -ms-animation-delay: 0.78s;
  -webkit-animation-delay: 0.78s;
  -moz-animation-delay: 0.78s;
  left: 47px;
  top: 0px;
}
.loader span.block-5 {
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
  left: 0px;
  top: 16px;
}
.loader span.block-6 {
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  left: 16px;
  top: 16px;
}
.loader span.block-7 {
  animation-delay: 0.51s;
  -o-animation-delay: 0.51s;
  -ms-animation-delay: 0.51s;
  -webkit-animation-delay: 0.51s;
  -moz-animation-delay: 0.51s;
  left: 31px;
  top: 16px;
}
.loader span.block-8 {
  animation-delay: 0.41s;
  -o-animation-delay: 0.41s;
  -ms-animation-delay: 0.41s;
  -webkit-animation-delay: 0.41s;
  -moz-animation-delay: 0.41s;
  left: 47px;
  top: 16px;
}
.loader span.block-9 {
  animation-delay: 0.32s;
  -o-animation-delay: 0.32s;
  -ms-animation-delay: 0.32s;
  -webkit-animation-delay: 0.32s;
  -moz-animation-delay: 0.32s;
  left: 0px;
  top: 31px;
}
.loader span.block-10 {
  animation-delay: 0.23s;
  -o-animation-delay: 0.23s;
  -ms-animation-delay: 0.23s;
  -webkit-animation-delay: 0.23s;
  -moz-animation-delay: 0.23s;
  left: 16px;
  top: 31px;
}
.loader span.block-11 {
  animation-delay: 0.14s;
  -o-animation-delay: 0.14s;
  -ms-animation-delay: 0.14s;
  -webkit-animation-delay: 0.14s;
  -moz-animation-delay: 0.14s;
  left: 31px;
  top: 31px;
}
.loader span.block-12 {
  animation-delay: 0.05s;
  -o-animation-delay: 0.05s;
  -ms-animation-delay: 0.05s;
  -webkit-animation-delay: 0.05s;
  -moz-animation-delay: 0.05s;
  left: 47px;
  top: 31px;
}
.loader span.block-13 {
  animation-delay: -0.05s;
  -o-animation-delay: -0.05s;
  -ms-animation-delay: -0.05s;
  -webkit-animation-delay: -0.05s;
  -moz-animation-delay: -0.05s;
  left: 0px;
  top: 47px;
}
.loader span.block-14 {
  animation-delay: -0.14s;
  -o-animation-delay: -0.14s;
  -ms-animation-delay: -0.14s;
  -webkit-animation-delay: -0.14s;
  -moz-animation-delay: -0.14s;
  left: 16px;
  top: 47px;
}
.loader span.block-15 {
  animation-delay: -0.23s;
  -o-animation-delay: -0.23s;
  -ms-animation-delay: -0.23s;
  -webkit-animation-delay: -0.23s;
  -moz-animation-delay: -0.23s;
  left: 31px;
  top: 47px;
}
.loader span.block-16 {
  animation-delay: -0.32s;
  -o-animation-delay: -0.32s;
  -ms-animation-delay: -0.32s;
  -webkit-animation-delay: -0.32s;
  -moz-animation-delay: -0.32s;
  left: 47px;
  top: 47px;
}
@keyframes load {
  0% {
    opacity: 0;
    transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  85% {
    opacity: 0;
    transform: translateY(97px);
  }
  100% {
    opacity: 0;
    transform: translateY(97px);
  }
}
@-o-keyframes load {
  0% {
    opacity: 0;
    -o-transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    -o-transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  70% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  85% {
    opacity: 0;
    -o-transform: translateY(97px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(97px);
  }
}
@-ms-keyframes load {
  0% {
    opacity: 0;
    -ms-transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    -ms-transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  70% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  85% {
    opacity: 0;
    -ms-transform: translateY(97px);
  }
  100% {
    opacity: 0;
    -ms-transform: translateY(97px);
  }
}
@-webkit-keyframes load {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    -webkit-transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  85% {
    opacity: 0;
    -webkit-transform: translateY(97px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(97px);
  }
}
@-moz-keyframes load {
  0% {
    opacity: 0;
    -moz-transform: translateY(-97px);
  }
  15% {
    opacity: 0;
    -moz-transform: translateY(-97px);
  }
  30% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  70% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  85% {
    opacity: 0;
    -moz-transform: translateY(97px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(97px);
  }
}

/* src/assets/css/flaticon.min.css */
@font-face {
  font-family: "Flaticon";
  src: url("./media/Flaticon.eot");
  src:
    url("./media/Flaticon.eot?#iefix") format("embedded-opentype"),
    url("./media/Flaticon.woff") format("woff"),
    url("./media/Flaticon.ttf") format("truetype"),
    url("./media/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("./media/Flaticon.svg#Flaticon") format("svg");
  }
}
[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
}
.wt-icon-box-xl [class^=flaticon-]:before,
.wt-icon-box-xl [class*=" flaticon-"]:before,
.wt-icon-box-xl [class^=flaticon-]:after,
.wt-icon-box-xl [class*=" flaticon-"]:after {
  font-size: 96px;
}
.wt-icon-box-lg [class^=flaticon-]:before,
.wt-icon-box-lg [class*=" flaticon-"]:before,
.wt-icon-box-lg [class^=flaticon-]:after,
.wt-icon-box-lg [class*=" flaticon-"]:after {
  font-size: 72px;
}
.wt-icon-box-md [class^=flaticon-]:before,
.wt-icon-box-md [class*=" flaticon-"]:before,
.wt-icon-box-md [class^=flaticon-]:after,
.wt-icon-box-md [class*=" flaticon-"]:after {
  font-size: 48px;
}
.wt-icon-box-sm [class^=flaticon-]:before,
.wt-icon-box-sm [class*=" flaticon-"]:before,
.wt-icon-box-sm [class^=flaticon-]:after,
.wt-icon-box-sm [class*=" flaticon-"]:after {
  font-size: 36px;
}
.wt-icon-box-xs [class^=flaticon-]:before,
.wt-icon-box-xs [class*=" flaticon-"]:before,
.wt-icon-box-xs [class^=flaticon-]:after,
.wt-icon-box-xs [class*=" flaticon-"]:after {
  font-size: 24px;
}
.flaticon-industry:before {
  content: "\f100";
}
.flaticon-stamp:before {
  content: "\f101";
}
.flaticon-trophy:before {
  content: "\f102";
}
.flaticon-magnifying-glass:before {
  content: "\f103";
}
.flaticon-robot-arm:before {
  content: "\f104";
}
.flaticon-conveyor:before {
  content: "\f105";
}
.flaticon-robotic-arm:before {
  content: "\f106";
}
.flaticon-repair:before {
  content: "\f107";
}
.flaticon-layers:before {
  content: "\f108";
}
.flaticon-oil:before {
  content: "\f109";
}
.flaticon-helmet:before {
  content: "\f10a";
}
.flaticon-scythe:before {
  content: "\f10b";
}
.flaticon-healthcare-and-medical:before {
  content: "\f10c";
}
.flaticon-call:before {
  content: "\f10d";
}
.flaticon-mail:before {
  content: "\f10e";
}
.flaticon-history:before {
  content: "\f10f";
}
.flaticon-web-development:before {
  content: "\f200";
}
.flaticon-code:before {
  content: "\f201";
}
.flaticon-website:before {
  content: "\f202";
}
.flaticon-browser:before {
  content: "\f203";
}
.flaticon-responsive:before {
  content: "\f204";
}
.flaticon-database:before {
  content: "\f205";
}
.flaticon-ui:before {
  content: "\f206";
}

/* src/assets/css/lc_lightbox.css */
@font-face {
  font-family: "lc_lightbox";
  src: url("./media/lc_lightbox.eot");
  src:
    url("./media/lc_lightbox.eot") format("embedded-opentype"),
    url("./media/lc_lightbox.woff") format("woff"),
    url("./media/lc_lightbox.ttf") format("truetype"),
    url("./media/lc_lightbox.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lcl_fade_oc.lcl_pre_show #lcl_overlay,
.lcl_fade_oc.lcl_pre_show #lcl_window,
.lcl_fade_oc.lcl_is_closing #lcl_overlay,
.lcl_fade_oc.lcl_is_closing #lcl_window {
  opacity: 0 !important;
}
.lcl_fade_oc.lcl_is_closing #lcl_overlay {
  -webkit-transition-delay: .15s !important;
  transition-delay: .15s !important;
}
#lcl_wrap {
  bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 999999999;
  -webkit-overflow-scrolling: touch;
}
#lcl_wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#lcl_wrap > * {
  text-align: left;
  box-sizing: border-box;
}
#lcl_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-position: top left;
  background-repeat: repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#lcl_wrap:not(.lcl_pre_show) {
  -webkit-transition: all .35s ease-in;
  transition: all .35s ease-in;
}
#lcl_loader {
  display: block;
  opacity: 0;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  z-index: -1;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}
#lcl_loader.lcl_loader_pre_first_el {
  opacity: 0 !important;
}
.lcl_first_sizing #lcl_loader:not(.no_loader),
.lcl_loading_iframe #lcl_loader:not(.no_loader),
.lcl_loading_videojs #lcl_loader:not(.no_loader),
.lcl_switching_elem #lcl_loader:not(.no_loader) {
  opacity: 1;
  z-index: 99999;
}
#lcll_1,
#lcll_2 {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  margin-top: -50%;
  margin-left: -50%;
  background: transparent;
  border-color: #aaa #aaa transparent;
  border-width: 3px;
  border-style: solid;
  -webkit-animation: lcl-loader 1.4s infinite linear;
  animation: lcl-loader 1.4s infinite linear;
}
#lcll_2 {
  width: 50%;
  height: 50%;
  margin-left: -25%;
  margin-top: -25%;
  border-right-color: transparent !important;
  -webkit-animation-duration: 1.15s;
  animation-duration: 1.15s;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
@-webkit-keyframes lcl-loader {
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
  }
}
@keyframes lcl-loader {
  100% {
    transform: rotate(360deg) translateZ(0);
  }
}
#lcl_subj.lcl_switching_el > * {
  opacity: 0;
}
#lcl_contents_wrap {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.lcl_first_sizing #lcl_contents_wrap,
.lcl_loading_iframe #lcl_contents_wrap,
.lcl_loading_videojs #lcl_contents_wrap,
.lcl_switching_elem #lcl_contents_wrap,
.lcl_toggling_fs #lcl_contents_wrap {
  opacity: 0 !important;
}
.lcl_first_sizing #lcl_contents_wrap *,
.lcl_loading_iframe #lcl_contents_wrap *,
.lcl_loading_videojs #lcl_contents_wrap *,
.lcl_switching_elem #lcl_contents_wrap *,
.lcl_toggling_fs #lcl_contents_wrap * {
  -webkit-transition: none !important;
  transition: none !important;
}
#lcl_window {
  display: inline-block;
  text-align: left;
  z-index: 30;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  min-width: 50px;
  min-height: 50px;
  line-height: 0 !important;
  overflow: visible;
  position: relative;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.lcl_image_elem,
#lcl_elem_wrap:not(.lcl_image_elem) .lcl_elem {
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.lcl_toggling_fs#lcl_wrap,
.lcl_toggling_fs #lcl_window,
.lcl_toggling_fs .lcl_image_elem,
.lcl_toggling_fs #lcl_elem_wrap .lcl_elem {
  -webkit-transition: all .05s linear;
  transition: all .05s linear;
}
.lcl_is_resizing:not(.lcl_first_sizing):not(.lcl_toggling_txt):not(.lcl_toggling_tn):not(.lcl_toggling_fs) #lcl_window,
.lcl_is_resizing:not(.lcl_toggling_txt):not(.lcl_toggling_tn) .lcl_image_elem,
.lcl_is_resizing:not(.lcl_toggling_txt):not(.lcl_toggling_tn) #lcl_elem_wrap:not(.lcl_image_elem),
.lcl_show_already_shaped #lcl_window {
  -webkit-transition: none !important;
  transition: none !important;
}
.lcl_tn_hidden #lcl_window {
  margin-top: 0 !important;
}
.lcl_pre_first_el:not(.lcl_show_already_shaped) #lcl_window {
  width: 100px;
  height: 100px;
  max-width: 85px !important;
  max-height: 85px !important;
}
.lcl_is_closing #lcl_window {
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
#lcl_contents_wrap,
#lcl_subj {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden !important;
}
.lcl_on_mobile #lcl_subj {
  overflow: auto !important;
}
#lcl_subj {
  z-index: 10;
}
#lcl_wrap:not(.lcl_switching_elem) #lcl_subj {
  -webkit-transition: border-width .35s ease;
  transition: border-width .35s ease;
}
.lcl_toggling_txt #lcl_subj {
  -webkit-transition-delay: .55s !important;
  transition-delay: .55s !important;
}
#lcl_elem_wrap {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.lcl_image_elem,
.lcl_html_elem {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lcl_image_elem img {
  left: -99999px;
  position: fixed !important;
}
.lcl_html_elem {
  line-height: normal;
  padding: 15px;
  overflow-y: auto;
  background: #fdfdfd;
}
.lcl_fullscreen_mode[lcl-type=iframe] #lcl_subj {
  top: 60px;
}
.lcl_video_elem > *,
.lcl_youtube_elem > *,
.lcl_vimeo_elem > *,
.lcl_dailymotion_elem > *,
.lcl_iframe_elem > *,
.lcl_postered_video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lcl_elem.video-js {
  bottom: 0;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  background: #000 !important;
}
.lcl_elem.video-js .vjs-fullscreen-control {
  display: none !important;
}
.lcl_elem.video-js .vjs-big-play-button {
  background-color: rgba(43, 51, 63, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 40px;
  line-height: 62px;
  width: 66px;
  height: 66px;
  left: 50%;
  top: 50%;
  margin: -33px 0 0 -33px;
}
.lcl_elem.video-js .vjs-poster {
  background-size: cover;
}
.lcl_postered_video {
  background-size: cover;
  background-position: center;
}
.lcl_postered_video:not(.lcl_poster_clicked) {
  cursor: pointer;
}
.lcl_postered_video:not(.lcl_poster_clicked):before {
  content: "\f0bf";
  box-sizing: border-box;
  font-size: 38px !important;
  line-height: 62px !important;
  text-indent: 5px !important;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  background: rgba(43, 51, 63, 0.7);
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  margin-left: -33px;
  margin-top: -33px;
  border: 2px solid #fff;
  -webkit-transition: background .03s linear;
  transition: background .03s linear;
}
.lcl_postered_video:not(.lcl_poster_clicked):hover:before {
  background: rgba(115, 133, 159, .5);
}
.lcl_postered_video:not(.lcl_poster_clicked) iframe {
  display: none;
}
.lcl_html_container {
  margin: auto;
  overflow: auto;
  position: relative;
}
#lcl_wrap[lcl-type=html]:not(.lcl_fullscreen_mode) .lcl_html_elem {
  position: static !important;
}
#lcl_wrap[lcl-type=html]:not(.lcl_fullscreen_mode) #lcl_contents_wrap,
#lcl_wrap[lcl-type=html]:not(.lcl_fullscreen_mode) #lcl_subj {
  position: relative !important;
}
#lcl_wrap[lcl-type=html].lcl_txt_under:not(.lcl_fullscreen_mode) #lcl_txt {
  position: relative !important;
}
#lcl_wrap[lcl-type=html].lcl_txt_under:not(.lcl_forced_over) #lcl_contents_wrap,
#lcl_wrap[lcl-type=html] #lcl_subj {
  overflow: auto;
}
.lcl_fullscreen_mode#lcl_wrap[lcl-type=html] #lcl_elem_wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.lcl_fullscreen_mode .lcl_html_elem {
  padding-top: 18px;
  border-top: 42px solid #fdfdfd;
  padding-bottom: 0;
  border-bottom: 15px solid #fdfdfd;
}
#lcl_inline {
  padding: 15px 10px;
  line-height: 20px;
}
#lcl_nav_cmd {
  position: absolute;
  top: 0;
  z-index: 100;
  overflow: visible;
  padding: 8px;
  height: 0;
}
.lcl_corner_close.lcl_inner_cmd:not(.lcl_txt_rside):not(.lcl_forced_outer_cmd) #lcl_nav_cmd,
.lcl_corner_close.lcl_no_txt:not(.lcl_forced_outer_cmd) #lcl_nav_cmd,
.lcl_corner_close.lcl_hidden_txt:not(.lcl_forced_outer_cmd) #lcl_nav_cmd,
.lcl_corner_close.lcl_force_txt_over:not(.lcl_forced_outer_cmd) #lcl_nav_cmd {
  padding-right: 24px !important;
}
.lcl_first_sizing #lcl_nav_cmd,
.lcl_loading_iframe #lcl_nav_cmd,
.lcl_loading_videojs #lcl_nav_cmd,
.lcl_switching_elem #lcl_nav_cmd,
.lcl_toggling_txt.lcl_inner_cmd #lcl_nav_cmd,
.lcl_toggling_fs #lcl_nav_cmd {
  opacity: 0 !important;
}
#lcl_nav_cmd {
  right: 0;
  left: 0;
}
.lcl_outer_cmd #lcl_nav_cmd {
  z-index: 99999;
  margin: 0 !important;
  padding: 10px 15px;
}
.lcl_outer_cmd:not(.lcl_first_sizing):not(.lcl_first_sizing):not(.lcl_loading_iframe):not(.lcl_switching_elem):not(.lcl_toggling_txt):not(.lcl_toggling_fs):not(.lcl_is_closing) #lcl_nav_cmd {
  opacity: 1 !important;
}
.lcl_is_closing.lcl_outer_cmd #lcl_nav_cmd {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  opacity: 0 !important;
}
#lcl_nav_cmd .lcl_icon {
  display: inline-block;
  border-radius: 3px;
  background: #fefefe;
  box-shadow: 0 0 2px rgb(20, 20, 20, 0.05);
  border: 1px solid #eaeaea;
  text-align: center;
  vertical-align: top;
  margin: 4px;
  width: 28px;
  height: 28px;
  color: #6f6f6f;
  position: relative;
}
.lcl_outer_cmd .lcl_close {
  right: 0 !important;
  top: 0 !important;
}
@media screen and (min-width:450px) {
  .lcl_inner_cmd:not(.lcl_on_mobile) #lcl_nav_cmd .lcl_icon,
  .lcl_fullscreen_mode.lcl_outer_cmd:not(.lcl_on_mobile):not([lcl-type=iframe]):not([lcl-type=html]) #lcl_nav_cmd .lcl_icon {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition:
      opacity .2s ease-in .5s,
      box-shadow .2s ease-in .5s,
      -webkit-transform .2s ease-in .5s;
    transition:
      opacity .2s ease-in .5s,
      box-shadow .2s ease-in .5s,
      transform .2s ease-in .5s;
  }
  #lcl_window:not(.lcl_on_mobile):hover #lcl_nav_cmd .lcl_icon,
  .lcl_fullscreen_mode.lcl_outer_cmd:not(.lcl_on_mobile):not([lcl-type=iframe]):not([lcl-type=html]):hover #lcl_nav_cmd .lcl_icon {
    opacity: 1;
    -webkit-transition: all .2s ease-in 0s;
    transition: all .2s ease-in 0s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.lcl_icon:before,
.lcl_tn_prev:before,
.lcl_tn_next:before,
#lcl_corner_close:before,
.lcl_postered_video:not(.lcl_poster_clicked):before {
  font-family: "lc_lightbox" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: center;
  display: block;
  font-size: 16px;
  line-height: 27px;
  z-index: 10;
  position: relative;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lcl_icon:not(.lcl_counter):after {
  content: "";
  display: block;
  left: -1px;
  right: -1px;
  position: absolute;
  top: -1px;
  bottom: -1px;
  z-index: 5;
  border-radius: 3px;
  opacity: 0;
  background: #6f6f6f;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.lcl_nav_btn_middle .lcl_next:after,
.lcl_nav_btn_middle .lcl_prev:after {
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
}
.lcl_nav_btn_middle.lcl_inner_cmd .lcl_next:after {
  right: 0 !important;
}
.lcl_nav_btn_middle.lcl_inner_cmd .lcl_prev:after {
  left: 0 !important;
}
#lcl_wrap:not(.lcl_on_mobile) .lcl_icon:not(.lcl_counter):not(.lcl_zoom_disabled):not(a):hover {
  border-radius: 5px !important;
}
#lcl_wrap:not(.lcl_on_mobile) .lcl_icon:not(.lcl_counter):not(.lcl_zoom_disabled):not(a):hover:before,
#lcl_corner_close:before {
  color: #fff;
}
#lcl_wrap:not(.lcl_on_mobile) .lcl_icon:not(.lcl_counter):not(.lcl_zoom_disabled):not(a):hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.lcl_prev:before {
  content: "\f053";
  text-indent: -1px;
}
.lcl_next:before {
  content: "\f054";
  text-indent: 1px;
}
.lcl_play:before {
  content: "\f0bf";
  font-size: 20px;
  line-height: 28px;
  text-indent: 1px;
}
.lcl_is_playing .lcl_play:before {
  content: "\f0bb";
  font-size: 20px;
  line-height: 28px;
  text-indent: 0;
}
.lcl_close:before,
#lcl_corner_close:before {
  content: "\e901";
  font-size: 20px;
  line-height: 28px;
}
.lcl_fullscreen:before {
  content: "\f065";
}
.lcl_fullscreen_mode .lcl_fullscreen:before {
  content: "\e900";
}
.lcl_zoom_out:before {
  content: "\e909";
  font-size: 16px;
}
.lcl_zoom_in:before {
  content: "\e908";
  font-size: 16px;
}
.lcl_txt_toggle:before {
  content: "\f10e";
  font-size: 16px;
}
.lcl_thumbs_toggle:before {
  content: "\e902";
  font-size: 15px;
  line-height: 26px;
  text-indent: -1px;
}
.lcl_window:before {
  content: "\e900";
}
.lcl_download:before {
  content: "\e9c5";
}
.lcl_socials:before {
  content: "\e600";
  font-size: 15px;
  line-height: 26px;
}
.lcl_fb:before {
  content: "\f09a";
  font-size: 17px;
}
.lcl_twit:before {
  content: "\f099";
  font-size: 18px;
}
.lcl_pint:before {
  content: "\f0d2";
  font-size: 18px;
}
.lcl_wa:before {
  content: "\f232";
  font-size: 18px;
}
.lcl_tn_prev:before {
  content: "\f137";
}
.lcl_tn_next:before {
  content: "\f138";
}
.lcl_right_icon {
  float: right;
}
.lcl_close {
  margin-left: 36px !important;
}
.lcl_counter {
  cursor: default !important;
  font-size: 12px;
  font-weight: bold;
  line-height: 27px;
  padding: 0 10px;
  width: auto !important;
}
@media screen and (max-width:340px) {
  .lcl_counter {
    display: none !important;
  }
}
.lcl_download {
  position: relative;
}
.lcl_download a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
}
.lcl_first_elem:not(.lcl_on_mobile) #lcl_window:hover .lcl_prev {
  opacity: 0.5 !important;
  cursor: default !important;
}
.lcl_last_elem:not(.lcl_on_mobile) #lcl_window:hover .lcl_next {
  opacity: 0.5 !important;
  cursor: default !important;
}
.lcl_last_elem .lcl_play {
  display: none !important;
}
#lcl_thumb_prev div:before,
#lcl_thumb_next div:before {
  font-size: 20px;
}
.lcl_icon {
  cursor: pointer;
  display: inline-block;
  height: 24px;
  width: 24px;
  border-radius: 2px;
  box-sizing: content-box !important;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.lcl_no_carousel[lc-lelem="0"] .lcl_prev:before,
.lcl_no_carousel.lcl_last_elem .lcl_next:before,
.lcl_hidden_txt .lcl_txt_toggle:before,
.lcl_tn_hidden .lcl_thumbs_toggle:before,
.lcl_zoom_icon.lcl_zoom_disabled:before {
  opacity: .6 !important;
}
.lcl_no_carousel[lc-lelem="0"] .lcl_prev,
.lcl_no_carousel.lcl_last_elem .lcl_next {
  cursor: default !important;
}
.lcl_no_carousel[lc-lelem="0"] .lcl_prev:after,
.lcl_no_carousel.lcl_last_elem .lcl_next:after {
  display: none !important;
}
#lcl_corner_close {
  position: absolute;
  right: -22px;
  top: -24px;
  border: 3px solid #d3d3d3;
  background: #6f6f6f;
  box-sizing: content-box !important;
  border-radius: 50%;
  min-height: 34px;
  min-width: 34px;
  cursor: pointer;
  z-index: 150;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.lcl_first_sizing #lcl_corner_close,
.lcl_loading_iframe #lcl_corner_close,
.lcl_loading_videojs #lcl_corner_close,
.lcl_switching_elem #lcl_corner_close,
.lcl_toggling_fs #lcl_corner_close {
  opacity: 0 !important;
}
#lcl_corner_close:before {
  font-size: 20px !important;
  line-height: 34px !important;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
#lcl_corner_close:not(.lcl_on_mobile):hover:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.lcl_normal_close #lcl_corner_close,
.lcl_outer_cmd #lcl_corner_close,
.lcl_corner_close.lcl_inner_cmd .lcl_close {
  display: none !important;
}
.lcl_nav_btn_middle .lcl_prev,
.lcl_nav_btn_middle .lcl_next {
  position: fixed !important;
  top: 50%;
  margin-top: -32px !important;
  padding: 16px 4px;
}
.lcl_nav_btn_middle.lcl_inner_cmd:not(.lcl_fullscreen_mode) .lcl_prev,
.lcl_nav_btn_middle.lcl_inner_cmd:not(.lcl_fullscreen_mode) .lcl_next {
  box-shadow: none !important;
  border: none !important;
}
.lcl_nav_btn_middle .lcl_prev:before,
.lcl_nav_btn_middle .lcl_next:before {
  font-size: 23px !important;
}
.lcl_nav_btn_middle .lcl_prev {
  left: 0px;
}
.lcl_nav_btn_middle.lcl_inner_cmd .lcl_prev {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.lcl_nav_btn_middle .lcl_next {
  right: 0px;
}
.lcl_nav_btn_middle.lcl_inner_cmd .lcl_next {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.lcl_nav_btn_middle.lcl_outer_cmd .lcl_prev {
  margin-left: 19px !important;
}
.lcl_nav_btn_middle.lcl_outer_cmd .lcl_next {
  margin-right: 19px !important;
}
.lcl_nav_btn_middle.lcl_inner_cmd:not(.lcl_fullscreen_mode) .lcl_prev:after {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.lcl_nav_btn_middle.lcl_inner_cmd:not(.lcl_fullscreen_mode) .lcl_next:after {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media screen and (max-width:450px) {
  #lcl_nav_cmd .lcl_icon {
    margin: 0;
  }
  .lcl_close {
    margin-left: 26px !important;
  }
}
.lcl_on_mobile .lcl_zoom_wrap {
  overflow: scroll !important;
}
.lcl_zoom_wrap,
.lcl_zoom_wrap * {
  cursor: move;
  cursor: grab;
  cursor: -webkit-grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lcl_zoom_wrap:active {
  cursor: move;
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.lcl_zoom_icon.lcl_zoom_disabled {
  cursor: default !important;
}
.lcl_zoom_icon.lcl_zoom_disabled:after {
  display: none !important;
}
.lcl_zoom_helper {
  position: absolute;
  font-size: 8.4px;
  color: rgb(250, 250, 250);
  background: #972626;
  display: inline-block;
  border: 2px solid #972626;
  padding: 5px 1px;
  font-family: arial;
  text-shadow: 0 0 0 rgba(250, 250, 250, 0.8);
  letter-spacing: 0.28px;
  border-radius: 1px;
  line-height: 0;
  z-index: 10;
  bottom: -11px;
  right: -7px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#lcl_txt {
  padding: 12px 10px;
  line-height: 20px;
  z-index: 50;
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}
.lcl_toggling_txt #lcl_txt {
  -webkit-transition: -webkit-transform .45s ease .1s, opacity .35s ease .1s;
  transition: transform .45s ease .1s, opacity .35s ease .1s;
}
#lcl_txt * {
  font-family: "Arial", \200b  "sans-serif";
}
.lcl_no_txt #lcl_txt {
  display: none !important;
}
#lcl_txt > * {
  padding: 0;
  margin: 0;
  text-align: left;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
#lcl_title {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}
#lcl_author {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
}
.lcl_comments_wrap {
  min-width: 178px;
}
.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt .lcl_txt_border,
.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt .lcl_txt_border {
  border-bottom: 1px dashed #cfcfcf;
  margin-bottom: 12px;
  padding-bottom: 17px;
}
.lcl_txt_under #lcl_txt .lcl_txt_border,
.lcl_txt_over #lcl_txt .lcl_txt_border,
.lcl_force_txt_over #lcl_txt .lcl_txt_border {
  border-bottom: 1px dashed #cfcfcf;
  margin-bottom: 10px;
  padding-bottom: 12px;
}
#lcl_descr {
  font-size: 14px;
  line-height: 20px;
}
.lcl_switching_el #lcl_txt,
.lcl_txt_under_calc #lcl_txt,
.lcl_txt_under_calc #lcl_txt *,
.lcl_txt_under.lcl_is_resizing:not(.lcl_force_txt_over) #lcl_txt {
  -webkit-transition-duration: 0ms !important;
  transition-duration: 0ms !important;
}
.lcl_txt_under #lcl_txt,
.lcl_txt_over #lcl_txt {
  left: 0;
  bottom: 0;
}
.lcl_txt_under #lcl_txt {
  background: #fff;
}
.lcl_txt_under:not(.lcl_force_txt_over) #lcl_txt {
  padding: 18px 25px 22px;
  margin-bottom: 0 !important;
}
.lcl_txt_under.lcl_is_resizing:not(.lcl_force_txt_over) #lcl_txt,
.lcl_txt_under.lcl_toggling_txt:not(.lcl_force_txt_over) #lcl_txt {
  opacity: 0 !important;
}
.lcl_txt_under.lcl_hidden_txt.lcl_toggling_txt:not(.lcl_force_txt_over) #lcl_txt {
  visibility: hidden !important;
}
.lcl_txt_under:not(.lcl_force_txt_over) #lcl_txt:after {
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.lcl_force_txt_over #lcl_txt,
.lcl_txt_over #lcl_txt {
  background: rgba(255, 255, 255, 0.9);
  background-clip: padding-box !important;
  border: 15px solid transparent;
  border-radius: 0 17px 17px 0;
  max-height: calc(100% - 42px);
  padding: 13px 22px;
  overflow: auto;
  bottom: 0;
}
.lcl_fullscreen_mode.lcl_force_txt_over #lcl_txt,
.lcl_fullscreen_mode.lcl_txt_over #lcl_txt {
  bottom: auto !important;
  right: auto !important;
  left: 0 !important;
  top: 42px !important;
  padding: 17px 22px !important;
  max-width: 33.3%;
  max-height: calc(100% - 42px);
  -webkit-transition:
    -webkit-transform .45s ease .1s,
    opacity .35s ease .1s,
    bottom .3s ease;
  transition:
    transform .45s ease .1s,
    opacity .35s ease .1s,
    bottom .3s ease;
}
.lcl_playing_video.lcl_txt_over #lcl_txt,
.lcl_playing_video.lcl_force_txt_over #lcl_txt {
  max-height: calc(100% - 42px - 45px);
  bottom: 45px;
}
@media screen and (max-width:1024px) {
  .lcl_fullscreen_mode.lcl_force_txt_over #lcl_txt,
  .lcl_fullscreen_mode.lcl_txt_over #lcl_txt {
    max-width: 66.6%;
  }
}
@media screen and (max-width:780px) {
  .lcl_fullscreen_mode.lcl_force_txt_over #lcl_txt,
  .lcl_fullscreen_mode.lcl_txt_over #lcl_txt {
    max-width: 100%;
  }
}
.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt,
.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
  padding: 16px 24px;
  top: 0;
  bottom: 0;
  width: 330px;
  overflow-y: auto;
  overflow-x: hidden;
}
.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt:after,
.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt:after {
  bottom: 0;
  position: absolute;
  top: 0;
  width: 4px;
}
.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
  padding-left: 18px;
}
.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt {
  padding-right: 18px;
}
.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_subj {
  border-right: 330px solid transparent;
}
.lcl_txt_rside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd,
.lcl_nav_btn_middle.lcl_txt_rside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_next,
.lcl_fullscreen_mode.lcl_nav_btn_middle.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_next,
.lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_thumbs_nav,
.lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd {
  right: 330px;
}
.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt {
  right: 0;
  background: #fefefe;
}
.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_subj {
  border-left: 330px solid transparent;
}
.lcl_txt_lside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd,
.lcl_nav_btn_middle.lcl_txt_lside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_prev,
.lcl_fullscreen_mode.lcl_nav_btn_middle.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_prev,
.lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_thumbs_nav,
.lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd {
  left: 330px;
}
.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
  left: 0;
  background: #fefefe;
}
@media screen and (max-width:780px) {
  .lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt,
  .lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
    width: 220px;
  }
  .lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_subj {
    border-right-width: 220px;
  }
  .lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_subj {
    border-left-width: 220px;
  }
  .lcl_txt_rside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd,
  .lcl_nav_btn_middle.lcl_txt_rside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_next,
  .lcl_fullscreen_mode.lcl_nav_btn_middle.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_next,
  .lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_thumbs_nav,
  .lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd {
    right: 220px;
  }
  .lcl_txt_lside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd,
  .lcl_nav_btn_middle .lcl_txt_lside.lcl_inner_cmd:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_prev,
  .lcl_fullscreen_mode.lcl_nav_btn_middle.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_prev,
  .lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_thumbs_nav,
  .lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd {
    left: 220px;
  }
}
@media screen and (min-width:1700px) {
  .lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt,
  .lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
    width: 400px;
  }
  .lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_subj {
    border-right-width: 400px;
  }
  .lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_subj {
    border-left-width: 400px;
  }
  .lcl_fullscreen_mode.lcl_nav_btn_middle.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_next,
  .lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_thumbs_nav,
  .lcl_fullscreen_mode.lcl_txt_rside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd {
    right: 400px;
  }
  .lcl_fullscreen_mode.lcl_nav_btn_middle.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) .lcl_prev,
  .lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_thumbs_nav,
  .lcl_fullscreen_mode.lcl_txt_lside:not(.lcl_no_txt):not(.lcl_force_txt_over) #lcl_nav_cmd {
    left: 400px;
  }
}
.lcl_hidden_txt.lcl_inner_cmd #lcl_nav_cmd,
.lcl_hidden_txt.lcl_outer_cmd #lcl_nav_cmd,
.lcl_fullscreen_mode.lcl_hidden_txt #lcl_thumbs_nav {
  right: 0 !important;
  left: 0 !important;
}
.lcl_nav_btn_middle.lcl_hidden_txt.lcl_inner_cmd .lcl_prev,
.lcl_nav_btn_middle.lcl_hidden_txt.lcl_outer_cmd .lcl_prev {
  left: 0px !important;
}
.lcl_nav_btn_middle.lcl_hidden_txt.lcl_inner_cmd .lcl_next,
.lcl_nav_btn_middle.lcl_hidden_txt.lcl_outer_cmd .lcl_next {
  right: 0px !important;
}
#lcl_txt > *:first-child {
  padding-top: 0;
  margin-top: 0;
}
#lcl_txt > *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.lcl_hidden_txt.lcl_txt_under:not(.lcl_force_txt_over) #lcl_txt {
  height: 0 !important;
  padding: 0 !important;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.lcl_hidden_txt:not(.lcl_fullscreen_mode).lcl_txt_over #lcl_txt,
.lcl_hidden_txt:not(.lcl_fullscreen_mode).lcl_force_txt_over #lcl_txt {
  opacity: 0 !important;
  z-index: -1;
  -webkit-transform: translateY(30px) scale(.95);
  -ms-transform: translateY(30px) scale(.95);
  transform: translateY(30px) scale(.95);
}
.lcl_hidden_txt.lcl_fullscreen_mode.lcl_txt_over #lcl_txt,
.lcl_hidden_txt.lcl_fullscreen_mode.lcl_force_txt_over #lcl_txt {
  -webkit-transform: translateX(-110%) scale(.8);
  -ms-transform: translateX(-110%) scale(.8);
  transform: translateX(-110%) scale(.8);
}
.lcl_hidden_txt.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_subj,
.lcl_hidden_txt.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_subj {
  border-width: 0 !important;
}
.lcl_hidden_txt.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.lcl_hidden_txt.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.lcl_tooltip {
  position: absolute;
  left: 50%;
  background: #fff;
  padding: 7px;
  border-radius: 3px;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  font-size: 14px;
  -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
}
.lcl_tooltip:before {
  content: "";
  border-style: solid;
  border-width: 7px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
}
.lcl_tooltip.lcl_tt_bottom:before {
  bottom: 100%;
  border-color: transparent transparent #fff;
}
.lcl_tooltip.lcl_tt_top:before {
  top: 100%;
  border-color: #fff transparent transparent;
}
.lcl_tooltip.lcl_tt_bottom {
  top: 115%;
  -webkit-transform: translate(-50%, 8px);
  -ms-transform: translate(-50%, 8px);
  transform: translate(-50%, 8px);
}
.lcl_tooltip.lcl_tt_top {
  bottom: 115%;
  -webkit-transform: translate(-50%, -8px);
  -ms-transform: translate(-50%, -8px);
  transform: translate(-50%, -8px);
}
.lcl_tooltip.lcl_show_tt {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.lcl_tooltip.lcl_socials_tt {
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
  top: 150%;
}
.lcl_socials {
  position: relative;
}
#lcl_wrap[lcl-type=html] .lcl_socials,
#lcl_wrap[lcl-type=iframe] .lcl_socials {
  display: none !important;
}
.lcl_socials_tt a {
  border-width: 0 0 0 1px !important;
  border-style: solid;
  border-color: #eaeaea;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0px 12px;
  text-decoration: none !important;
  margin: 0 !important;
  max-width: 17px;
}
.lcl_socials_tt a:first-child {
  border: none !important;
}
#lcl_wrap.lcl_fullscreen_mode {
  padding: 0 !important;
}
.lcl_fullscreen_mode #lcl_window,
.lcl_fullscreen_mode #lcl_contents_wrap {
  border-radius: 0 !important;
}
.lcl_fullscreen_mode #lcl_window {
  border-width: 0 !important;
  margin-top: 0 !important;
}
.lcl_fullscreen_mode #lcl_subj,
.lcl_fullscreen_mode #lcl_txt {
  margin: 0 !important;
}
.lcl_fullscreen_mode #lcl_elem_wrap {
  bottom: 0 !important;
}
.lcl_fullscreen_mode.lcl_toggling_txt.lcl_outer_cmd,
.lcl_fullscreen_mode.lcl_toggling_txt.lcl_nav_btn_middle .lcl_prev,
.lcl_fullscreen_mode.lcl_toggling_txt.lcl_nav_btn_middle .lcl_next {
  -webkit-transition: all .4s ease .2s !important;
  transition: all .4s ease .2s !important;
}
#lcl_thumbs_nav {
  margin: 10px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: content-box !important;
  z-index: 60;
  -webkit-transition:
    -webkit-transform .35s ease-in,
    opacity .5s ease,
    margin .35s ease,
    left .4s ease .2s,
    right .4s ease .2s;
  transition:
    transform .35s ease-in,
    opacity .5s ease,
    margin .35s ease,
    left .4s ease .2s,
    right .4s ease .2s;
}
#lcl_thumbs_nav,
#lcl_thumbs_nav * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lcl_playing_video.lcl_fullscreen_mode #lcl_thumbs_nav {
  margin-bottom: 50px;
}
.lcl_tn_hidden #lcl_thumbs_nav,
.lcl_pre_first_el #lcl_thumbs_nav,
#lcl_thumbs_nav.lcl_pre_tn_scroll {
  opacity: 0;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
}
#lcl_thumbs_nav .lcl_tn_inner {
  position: absolute;
  z-index: 10;
  left: 45px;
  right: 45px;
  bottom: 0;
  top: 0;
  list-style: none !important;
  margin: 0 !important;
  text-align: center;
  white-space: nowrap;
  overflow: hidden !important;
}
.lcl_on_mobile .lcl_tn_inner {
  overflow: auto !important;
  touch-action: pan-x;
}
.lcl_tn_inner li {
  height: 100%;
  margin: 0 0 0 10px;
  display: inline-block;
  border: 0px solid #ccc;
  border-radius: 2px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-clip: content-box;
  background-color: #9f9f9f;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(10, 10, 10, 0.45);
  -webkit-transform: scale(0.83) translateZ(0);
  -ms-transform: scale(0.83) translateZ(0);
  transform: scale(0.83) translateZ(0);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}
.lcl_tn_inner li:first-child {
  margin: 0;
}
.lcl_tn_inner li.lcl_sel_thumb,
#lcl_wrap:not(.lcl_on_mobile) .lcl_tn_inner li:not(.lcl_sel_thumb):hover {
  -webkit-transform: scale(.97);
  -ms-transform: scale(.97);
  transform: scale(.97);
}
.lcl_tn_inner li.lcl_tn_preload,
.lcl_tn_inner li.lcl_sel_thumb.lcl_tn_preload {
  margin: 0 !important;
  width: 0 !important;
  height: 0 !important;
  -webkit-transform: scale(0) !important;
  -ms-transform: scale(0) !important;
  transform: scale(0) !important;
}
.lcl_thumb_title_tt {
  padding: 7px 10px;
}
#lcl_thumbs_nav span {
  position: absolute;
  cursor: pointer;
  width: 23px;
  height: 23px;
  top: 50%;
  margin-top: -12px;
  z-index: 15;
  color: #f5f5f5;
}
#lcl_thumbs_nav:not(.lcl_tn_has_arr) span {
  display: none !important;
}
#lcl_thumbs_nav.lcl_tn_has_arr span {
  display: inline-block !important;
}
#lcl_thumbs_nav.lcl_tn_has_arr span:before {
  font-size: 23px;
}
#lcl_thumbs_nav span.lcl_tn_prev {
  left: 0;
}
#lcl_thumbs_nav span.lcl_tn_next {
  right: 0;
}
.lcl_tn_video video {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
}
.lcl_tn_mixed_types li::before {
  background: rgba(0, 0, 0, 0.25);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}
.lcl_tn_mixed_types li.lcl_sel_thumb::before {
  opacity: 0;
}
.lcl_tn_mixed_types li:after {
  font-family: "lc_lightbox" !important;
  bottom: 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  position: absolute;
  right: 5px;
  position: absolute;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  z-index: 15;
  content: "\e929";
}
.lcl_tn_mixed_types li.lcl_tn_image:after {
  content: "\e927";
}
.lcl_tn_mixed_types li.lcl_tn_iframe:after {
  content: "\e903";
}
.lcl_tn_mixed_types li.lcl_tn_html:after {
  content: "\e926";
}
#lcl_progressbar {
  position: fixed;
  z-index: 99999;
  top: 0;
  height: 2px;
  left: 0;
  width: 0;
  background: #fff;
  box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}
.lcl_loading_videojs #lcl_progressbar,
.lcl_loading_iframe #lcl_progressbar {
  opacity: 0 !important;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

/* src/assets/css/style.css */
body {
  background-color: #FFF;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #111111;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-size: 16px;
}
a {
  color: #111111;
  outline: 0 none;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0 none;
}
a:active,
a:hover,
a:focus {
  color: inherit;
}
p a {
  color: #111111;
}
img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
hr {
  clear: both;
}
section,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
summary {
  display: block;
}
address {
  font-style: italic;
}
table {
  background-color: transparent;
  width: 100%;
}
table thead th {
  padding: 12px 8px !important;
}
table td {
  padding: 15px 10px !important;
}
@media only screen and (max-width:360px) {
  table td {
    word-break: break-all;
  }
}
p,
address,
pre,
hr,
ul,
ol,
dl,
dd,
table {
  margin-bottom: 24px;
}
.overflow-hide {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.clear {
  clear: both;
}
.pull-none {
  float: none;
}
::selection {
  background: #484848;
  color: #fff;
}
::-moz-selection {
  background: #484848;
  color: #fff;
}
::-webkit-selection {
  background: #484848;
  color: #fff;
}
@media only screen and (max-width:600px) {
  .col-xs-100pc {
    width: 100%;
  }
  .section-content.services-section-content {
    margin-top: 28px;
    margin-left: 16px;
  }
  .wt-list-single-somefacts .col-xs-100pc {
    width: inherit !important;
  }
  .wt-list-single-somefacts .col-xs-100pc h1,
  .wt-list-single-somefacts .col-xs-100pc h2,
  .wt-list-single-somefacts .col-xs-100pc h3 {
    font-size: 22px;
    line-height: normal;
  }
  .wt-list-single-somefacts h1,
  .wt-list-single-somefacts h2,
  .wt-list-single-somefacts .col-xs-100pc h3 {
    font-size: 22px;
    line-height: normal;
  }
  body {
    font-size: 14px;
  }
}
@media only screen and (max-width:480px) {
  .wt-list-single-somefacts .col-xs-100pc {
    width: 100% !important;
  }
  .wt-list-single-somefacts-three .col-xs-4 {
    width: 100% !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  font-family: "Teko", sans-serif;
  font-weight: 600;
  line-height: 1.1;
}
.title-style-2 {
  font-family: "Teko", sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #000;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #00173c;
}
h1 {
  font-size: 66px;
  color: #00173c;
  font-weight: 400;
}
h2 {
  font-size: 40px;
  color: #00173c;
}
h3 {
  font-size: 32px;
  color: #00173c;
}
h4 {
  font-size: 24px;
  color: #00173c;
}
h5 {
  font-weight: normal;
  font-size: 18px;
  color: #00173c;
}
h6 {
  font-weight: normal;
  font-size: 14px;
  color: #00173c;
}
.display-inline {
  display: inline;
}
.display-inline-block {
  display: inline-block;
}
.display-block {
  display: block;
}
.section-head {
  position: relative;
  z-index: 1;
}
.section-head h1:after,
.section-head h2:after,
.section-head h3:after {
  position: absolute;
  content: attr(data-title);
  color: #00173c;
  opacity: 0.1;
  font-family: "Teko", sans-serif;
  font-size: 120px;
  line-height: 100px;
  bottom: -30px;
  left: 50%;
  width: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width:991px) {
  .section-head h1:after,
  .section-head h2:after,
  .section-head h3:after {
    font-size: 74px;
    bottom: -10px;
  }
}
@media only screen and (max-width:720px) {
  .section-head h1:after,
  .section-head h2:after,
  .section-head h3:after {
    display: none;
  }
}
p {
  margin-bottom: 20px;
}
strong {
  font-weight: 600;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.v-align-t {
  vertical-align: top;
}
.v-align-m {
  vertical-align: middle;
}
.v-align-b {
  vertical-align: bottom;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.font-12 {
  font-size: 12px;
  line-height: 18px;
}
.font-14 {
  font-size: 14px;
  line-height: 20px;
}
.font-16 {
  font-size: 16px;
  line-height: 22px;
}
.font-18 {
  font-size: 18px;
  line-height: 24px;
}
.font-20 {
  font-size: 20px;
  line-height: 26px;
}
.font-22 {
  font-size: 22px;
  line-height: 28px;
}
.font-24 {
  font-size: 24px;
  line-height: 30px;
}
.font-26 {
  font-size: 26px;
  line-height: 32px;
}
.font-28 {
  font-size: 28px;
  line-height: 34px;
}
.font-30 {
  font-size: 30px;
  line-height: 36px;
}
.font-32 {
  font-size: 32px;
  line-height: 38px;
}
.font-34 {
  font-size: 34px;
  line-height: 40px;
}
.font-36 {
  font-size: 36px;
  line-height: 42px;
}
.font-38 {
  font-size: 38px;
  line-height: 44px;
}
.font-40 {
  font-size: 40px;
  line-height: 46px;
}
.font-45 {
  font-size: 46px;
  line-height: 52px;
}
.font-50 {
  font-size: 50px;
  line-height: 56px;
}
.font-60 {
  font-size: 60px;
  line-height: 66px;
}
.font-70 {
  font-size: 70px;
  line-height: 76px;
}
.font-80 {
  font-size: 80px;
  line-height: 86px;
}
.font-90 {
  font-size: 90px;
  line-height: 96px;
}
.font-100 {
  font-size: 100px;
  line-height: 106px;
}
.font-120 {
  font-size: 120px;
  line-height: 126px;
}
.font-140 {
  font-size: 140px;
  line-height: 146px;
}
.font-160 {
  font-size: 160px;
  line-height: 166px;
}
.font-180 {
  font-size: 180px;
  line-height: 186px;
}
.font-weight-100 {
  font-weight: 100;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.font-weight-900 {
  font-weight: 900;
}
.letter-spacing-2 {
  letter-spacing: 2px;
}
.letter-spacing-3 {
  letter-spacing: 3px;
}
.letter-spacing-4 {
  letter-spacing: 4px;
}
.letter-spacing-5 {
  letter-spacing: 5px;
}
dl,
ul,
ol {
  list-style-position: outside;
  padding: 0;
}
ul,
ol {
  margin-bottom: 24px;
}
ul li,
ol li {
  padding: 0;
}
dl {
  margin-left: 0;
  margin-bottom: 30px;
}
dl dd {
  margin-bottom: 10px;
}
.list-simple li {
  margin-bottom: 10px;
}
.list-simple li ul {
  margin-left: 15px;
  margin-top: 10px;
}
.list-simple.list-unstyled li ul {
  margin-left: 30px;
  margin-top: 10px;
}
.list-circle,
.list-angle-right,
.list-arrow,
.list-check,
.list-checked,
.list-check-circle,
.list-chevron-circle,
.list-arrow-circle,
.list-times-circle {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.list-circle li,
.list-angle-right li,
.list-arrow li,
.list-check li,
.list-checked li,
.list-check-circle li,
.list-chevron-circle li,
.list-arrow-circle li,
.list-times-circle li {
  padding: 5px 5px 5px 20px;
  position: relative;
}
.list-circle li:before,
.list-angle-right li:before,
.list-arrow li:before,
.list-check li:before,
.list-checked li:before,
.list-check-circle li:before,
.list-chevron-circle li:before,
.list-arrow-circle li:before,
.list-times-circle li:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  font-size: 15px;
  color: #000;
}
.list-circle li:before {
  top: 6px;
  font-size: 10px;
}
.list-circle li:before {
  content: "\f111";
}
.list-angle-right li:before {
  content: "\f105";
}
.list-arrow li:before {
  content: "\f0da";
}
.list-check li:before {
  content: "\f00c";
}
.list-checked li:before {
  content: "\f046";
}
.list-check-circle li:before {
  content: "\f058";
}
.list-chevron-circle li:before {
  content: "\f138";
}
.list-arrow-circle li:before {
  content: "\f0a9";
}
.list-times-circle li:before {
  content: "\f057";
}
ul.primary li:before {
  color: #0f1221;
}
ul.secondry li:before {
  color: #253641;
}
ul.black li:before {
  color: #000;
}
ul.white li:before {
  color: #fff;
}
ul.orange li:before {
  color: #FF6600;
}
ul.green li:before {
  color: #00CC00;
}
ul.red li:before {
  color: #FF3737;
}
dl.no-margin,
ul.no-margin,
ol.no-margin {
  margin: 0px !important;
  list-style: none;
}
ol.list-num-count {
  counter-reset: li;
  padding-left: 0;
}
ol.list-num-count > li {
  position: relative;
  margin: 0 0 20px 40px;
  padding: 0px 8px;
  list-style: none;
}
ol.list-num-count > li:last-child {
  margin-bottom: 0px;
}
ol.list-num-count > li:before {
  content: counter(li, decimal);
  counter-increment: li;
  position: absolute;
  top: 0;
  left: -40px;
  width: 26px;
  height: 24px;
  padding: 5px;
  color: #fff;
  background: #0f1221;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
ol.list-num-count.lower-alpha > li:before {
  content: counter(li, lower-alpha);
}
ol.list-num-count.upper-alpha > li:before {
  content: counter(li, upper-alpha);
}
ol.list-num-count.list-outline > li:before {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
}
ol.list-num-count.list-outline-none > li:before {
  background-color: transparent;
  color: #000;
}
.p-a0 {
  padding: 0;
}
.p-a5 {
  padding: 5px;
}
.p-a10 {
  padding: 10px;
}
.p-a15 {
  padding: 15px;
}
.p-a20 {
  padding: 20px;
}
.p-a25 {
  padding: 25px;
}
.p-a30 {
  padding: 30px;
}
.p-a40 {
  padding: 40px;
}
.p-a50 {
  padding: 50px;
}
.p-a60 {
  padding: 60px;
}
.p-a70 {
  padding: 70px;
}
.p-a80 {
  padding: 80px;
}
.p-a90 {
  padding: 90px;
}
.p-a100 {
  padding: 100px;
}
.p-a110 {
  padding: 110px;
}
.p-a120 {
  padding: 120px;
}
.p-a130 {
  padding: 130px;
}
.p-a140 {
  padding: 140px;
}
.p-a150 {
  padding: 150px;
}
.p-t0 {
  padding-top: 0;
}
.p-t5 {
  padding-top: 5px;
}
.p-t10 {
  padding-top: 10px;
}
.p-t15 {
  padding-top: 15px;
}
.p-t20 {
  padding-top: 20px;
}
.p-t30 {
  padding-top: 30px;
}
.p-t40 {
  padding-top: 40px;
}
.p-t50 {
  padding-top: 50px;
}
.p-t60 {
  padding-top: 60px;
}
.p-t70 {
  padding-top: 70px;
}
.p-t80 {
  padding-top: 80px;
}
.p-t90 {
  padding-top: 90px;
}
.p-t100 {
  padding-top: 100px;
}
.p-t110 {
  padding-top: 110px;
}
.p-t120 {
  padding-top: 120px;
}
.p-t130 {
  padding-top: 130px;
}
.p-t140 {
  padding-top: 140px;
}
.p-t150 {
  padding-top: 150px;
}
.p-b0 {
  padding-bottom: 0;
}
.p-b5 {
  padding-bottom: 5px;
}
.p-b10 {
  padding-bottom: 10px;
}
.p-b15 {
  padding-bottom: 15px;
}
.p-b20 {
  padding-bottom: 20px;
}
.p-b30 {
  padding-bottom: 30px;
}
.p-b40 {
  padding-bottom: 40px;
}
.p-b50 {
  padding-bottom: 50px;
}
.p-b60 {
  padding-bottom: 60px;
}
.p-b70 {
  padding-bottom: 70px;
}
.p-b80 {
  padding-bottom: 80px;
}
.p-b90 {
  padding-bottom: 90px;
}
.p-b100 {
  padding-bottom: 100px;
}
.p-b110 {
  padding-bottom: 110px;
}
.p-b120 {
  padding-bottom: 120px;
}
.p-b130 {
  padding-bottom: 130px;
}
.p-b140 {
  padding-bottom: 140px;
}
.p-b150 {
  padding-bottom: 150px;
}
.p-l0 {
  padding-left: 0;
}
.p-l5 {
  padding-left: 5px;
}
.p-l10 {
  padding-left: 10px;
}
.p-l15 {
  padding-left: 15px;
}
.p-l20 {
  padding-left: 20px;
}
.p-l30 {
  padding-left: 30px;
}
.p-l40 {
  padding-left: 40px;
}
.p-l50 {
  padding-left: 50px;
}
.p-l60 {
  padding-left: 60px;
}
.p-l70 {
  padding-left: 70px;
}
.p-l80 {
  padding-left: 80px;
}
.p-l90 {
  padding-left: 90px;
}
.p-l100 {
  padding-left: 100px;
}
.p-l110 {
  padding-left: 110px;
}
.p-l120 {
  padding-left: 120px;
}
.p-l130 {
  padding-left: 130px;
}
.p-l140 {
  padding-left: 140px;
}
.p-l150 {
  padding-left: 150px;
}
.p-r0 {
  padding-right: 0;
}
.p-r5 {
  padding-right: 5px;
}
.p-r10 {
  padding-right: 10px;
}
.p-r15 {
  padding-right: 15px;
}
.p-r20 {
  padding-right: 20px;
}
.p-r30 {
  padding-right: 30px;
}
.p-r40 {
  padding-right: 40px;
}
.p-r50 {
  padding-right: 50px;
}
.p-r60 {
  padding-right: 60px;
}
.p-r70 {
  padding-right: 70px;
}
.p-r80 {
  padding-right: 80px;
}
.p-r90 {
  padding-right: 90px;
}
.p-r100 {
  padding-right: 100px;
}
.p-r110 {
  padding-right: 110px;
}
.p-r120 {
  padding-right: 120px;
}
.p-r130 {
  padding-right: 130px;
}
.p-r140 {
  padding-right: 140px;
}
.p-r150 {
  padding-right: 150px;
}
.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}
.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}
.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}
.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}
.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}
.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}
.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}
.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}
.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}
.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}
.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}
.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}
.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}
.p-lr120 {
  padding-left: 120px;
  padding-right: 120px;
}
.p-lr150 {
  padding-left: 150px;
  padding-right: 150px;
}
.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}
.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}
.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}
.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}
.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}
.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}
.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}
.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}
.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}
.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}
.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}
.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}
.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}
.p-tb120 {
  padding-bottom: 120px;
  padding-top: 120px;
}
.p-tb150 {
  padding-bottom: 150px;
  padding-top: 150px;
}
.m-a-1 {
  margin: -1px;
}
.m-a0 {
  margin: 0;
}
.m-a5 {
  margin: 5px;
}
.m-a10 {
  margin: 10px;
}
.m-a15 {
  margin: 15px;
}
.m-a20 {
  margin: 20px;
}
.m-a30 {
  margin: 30px;
}
.m-a40 {
  margin: 40px;
}
.m-a50 {
  margin: 50px;
}
.m-a60 {
  margin: 60px;
}
.m-a70 {
  margin: 70px;
}
.m-a80 {
  margin: 80px;
}
.m-a90 {
  margin: 90px;
}
.m-a100 {
  margin: 100px;
}
.m-a110 {
  margin: 110px;
}
.m-a120 {
  margin: 120px;
}
.m-a130 {
  margin: 130px;
}
.m-a140 {
  margin: 140px;
}
.m-a150 {
  margin: 150px;
}
.m-t0 {
  margin-top: 0;
}
.m-t5 {
  margin-top: 5px;
}
.m-t10 {
  margin-top: 10px;
}
.m-t15 {
  margin-top: 15px;
}
.m-t20 {
  margin-top: 20px;
}
.m-t30 {
  margin-top: 30px;
}
.m-t40 {
  margin-top: 40px;
}
.m-t50 {
  margin-top: 50px;
}
.m-t60 {
  margin-top: 60px;
}
.m-t70 {
  margin-top: 70px;
}
.m-t80 {
  margin-top: 80px;
}
.m-t90 {
  margin-top: 90px;
}
.m-t100 {
  margin-top: 100px;
}
.m-t110 {
  margin-top: 110px;
}
.m-t120 {
  margin-top: 120px;
}
.m-t130 {
  margin-top: 130px;
}
.m-t140 {
  margin-top: 140px;
}
.m-t150 {
  margin-top: 150px;
}
.m-b0 {
  margin-bottom: 0;
}
.m-b5 {
  margin-bottom: 5px;
}
.m-b10 {
  margin-bottom: 10px;
}
.m-b15 {
  margin-bottom: 15px;
}
.m-b20 {
  margin-bottom: 20px;
}
.m-b30 {
  margin-bottom: 30px;
}
.m-b40 {
  margin-bottom: 40px;
}
.m-b50 {
  margin-bottom: 50px;
}
.m-b60 {
  margin-bottom: 60px;
}
.m-b70 {
  margin-bottom: 70px;
}
.m-b80 {
  margin-bottom: 80px;
}
.m-b90 {
  margin-bottom: 90px;
}
.m-b100 {
  margin-bottom: 100px;
}
.m-b110 {
  margin-bottom: 110px;
}
.m-b120 {
  margin-bottom: 120px;
}
.m-b130 {
  margin-bottom: 130px;
}
.m-b140 {
  margin-bottom: 140px;
}
.m-b150 {
  margin-bottom: 150px;
}
.m-l0 {
  margin-left: 0;
}
.m-l5 {
  margin-left: 5px;
}
.m-l10 {
  margin-left: 10px;
}
.m-l15 {
  margin-left: 15px;
}
.m-l20 {
  margin-left: 20px;
}
.m-l30 {
  margin-left: 30px;
}
.m-l40 {
  margin-left: 40px;
}
.m-l50 {
  margin-left: 50px;
}
.m-l60 {
  margin-left: 60px;
}
.m-l70 {
  margin-left: 70px;
}
.m-l80 {
  margin-left: 80px;
}
.m-l90 {
  margin-left: 90px;
}
.m-l100 {
  margin-left: 100px;
}
.m-l110 {
  margin-left: 110px;
}
.m-l120 {
  margin-left: 120px;
}
.m-l130 {
  margin-left: 130px;
}
.m-l140 {
  margin-left: 140px;
}
.m-l150 {
  margin-left: 150px;
}
.m-r0 {
  margin-right: 0;
}
.m-r5 {
  margin-right: 5px;
}
.m-r10 {
  margin-right: 10px;
}
.m-r15 {
  margin-right: 15px;
}
.m-r20 {
  margin-right: 20px;
}
.m-r30 {
  margin-right: 30px;
}
.m-r40 {
  margin-right: 40px;
}
.m-r50 {
  margin-right: 50px;
}
.m-r60 {
  margin-right: 60px;
}
.m-r70 {
  margin-right: 70px;
}
.m-r80 {
  margin-right: 80px;
}
.m-r90 {
  margin-right: 90px;
}
.m-r100 {
  margin-right: 100px;
}
.m-r110 {
  margin-right: 110px;
}
.m-r120 {
  margin-right: 120px;
}
.m-r130 {
  margin-right: 130px;
}
.m-r140 {
  margin-right: 140px;
}
.m-r150 {
  margin-right: 150px;
}
.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}
.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}
.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}
.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}
.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}
.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}
.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}
.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}
.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}
.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}
.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}
.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}
.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}
.m-lr120 {
  margin-left: 120px;
  margin-right: 120px;
}
.m-lr150 {
  margin-left: 150px;
  margin-right: 150px;
}
.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}
.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}
.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}
.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}
.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}
.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}
.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}
.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}
.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}
.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}
.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}
.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}
.m-tb120 {
  margin-bottom: 120px;
  margin-top: 120px;
}
.m-tb150 {
  margin-bottom: 150px;
  margin-top: 150px;
}
.no-col-gap [class*=col-xs-],
.no-col-gap [class*=col-sm-],
.no-col-gap [class*=col-md-],
.no-col-gap [class*=col-lg-] {
  padding-left: 0;
  padding-right: 0;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.static {
  position: static;
}
.z-index1 {
  z-index: 1;
}
.z-index2 {
  z-index: 2;
}
.z-index3 {
  z-index: 3;
}
.z-index4 {
  z-index: 4;
}
.z-index5 {
  z-index: 5;
}
.z-index6 {
  z-index: 6;
}
.z-index7 {
  z-index: 7;
}
.z-index8 {
  z-index: 8;
}
.z-index9 {
  z-index: 9;
}
.z-index10 {
  z-index: 10;
}
.z-index100 {
  z-index: 100;
}
.z-index999 {
  z-index: 999;
}
.site-text-white {
  color: #fff;
}
.site-text-primary {
  color: dodgerblue;
}
.site-text-secondry {
  color: #00173c;
}
.text-black {
  color: #000;
}
.text-gray {
  color: #f5f6f6;
}
.text-gray-dark {
  color: #d3d3d3;
}
.text-red {
  color: #99090A;
}
.text-green {
  color: #557131;
}
.text-yellow {
  color: #ffc100;
}
.text-light-blue {
  color: #004F83;
}
.bg-orange-light {
  background-color: #fff6ef;
}
.bg-orange-light2 {
  background-color: #feede7;
}
.bg-transparent {
  background-color: transparent;
}
.site-bg-primary {
  background-color: dodgerblue;
}
.site-bg-secondry {
  background-color: #00173c;
}
.bg-dark {
  background-color: #1e1e20;
}
.bg-white {
  background-color: #FFF;
}
.bg-black {
  background-color: #000;
}
.bg-black-light {
  background-color: #212121;
}
.bg-gray {
  background-color: #0003;
}
.bg-gray-light {
  background-color: #f1f1f1;
}
.bg-gray-dark {
  background-color: #d3d3d3;
}
.bg-red {
  background-color: #fb5455;
}
.bg-orange {
  background-color: #FF4B00;
}
.bg-dark-blue {
  background-color: #161b23;
}
.bg-light-blue {
  background-color: #3097db;
}
.bg-green {
  background-color: #54ba1d;
}
.bg-yellow {
  background-color: #fff000;
}
.bg-purple {
  background-color: #5e6db3;
  border-radius: 10px;
}
.bg-cyan {
  background-color: #00ca95;
}
.bg-blue {
  background-color: #31cff9;
}
.bg-light-orange {
  background-color: #fd7b6c;
}
.gradi-1 {
  background: rgb(78, 215, 207);
  background: -moz-linear-gradient(45deg, rgba(78, 215, 207, 1) 0%, rgba(25, 159, 255, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(78, 215, 207, 1) 0%, rgba(25, 159, 255, 1) 100%);
  background:
    linear-gradient(
      45deg,
      rgba(78, 215, 207, 1) 0%,
      rgba(25, 159, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4ed7cf", endColorstr="#199fff", GradientType=1);
}
.gradi-2 {
  background: rgb(234, 111, 157);
  background: -moz-linear-gradient(45deg, rgba(234, 111, 157, 1) 0%, rgba(238, 137, 109, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(234, 111, 157, 1) 0%, rgba(238, 137, 109, 1) 100%);
  background:
    linear-gradient(
      45deg,
      rgba(234, 111, 157, 1) 0%,
      rgba(238, 137, 109, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ea6f9d", endColorstr="#ee896d", GradientType=1);
}
.gradi-3 {
  background: rgb(98, 124, 235);
  background: -moz-linear-gradient(45deg, rgba(98, 124, 235, 1) 0%, rgba(110, 75, 159, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(98, 124, 235, 1) 0%, rgba(110, 75, 159, 1) 100%);
  background:
    linear-gradient(
      45deg,
      rgba(98, 124, 235, 1) 0%,
      rgba(110, 75, 159, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#627ceb", endColorstr="#6e4b9f", GradientType=1);
}
.gradi-4 {
  background: rgb(251, 188, 117);
  background: -moz-linear-gradient(45deg, rgba(251, 188, 117, 1) 0%, rgba(251, 165, 106, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(251, 188, 117, 1) 0%, rgba(251, 165, 106, 1) 100%);
  background:
    linear-gradient(
      45deg,
      rgba(251, 188, 117, 1) 0%,
      rgba(251, 165, 106, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fbbc75", endColorstr="#fba56a", GradientType=1);
}
.bg-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width:768px) {
  .bg-parallax {
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.overlay-wraper {
  position: relative;
}
.overlay-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.opacity-01 {
  opacity: 0.1;
}
.opacity-02 {
  opacity: 0.2;
}
.opacity-03 {
  opacity: 0.3;
}
.opacity-04 {
  opacity: 0.4;
}
.opacity-05 {
  opacity: 0.5;
}
.opacity-06 {
  opacity: 0.6;
}
.opacity-07 {
  opacity: 0.7;
}
.overlay-light .overlay-main {
  opacity: 0.3;
}
.overlay-dark .overlay-main {
  opacity: 0.9;
}
.overlay-wraper > .container,
.overlay-wraper > .container-fluid,
.overlay-wraper > .wt-icon-box-wraper,
.overlay-wraper > .wt-left-part,
.overlay-wraper > .wt-right-part {
  position: relative;
  z-index: 1;
}
.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.overlay-icon {
  list-style: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  z-index: 1 !important;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
}
.overlay-icon a {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
  background-color: #00173c;
  color: #fff;
}
.overlay-icon .wt-icon-box-xs {
  line-height: 40px;
}
.overlay-icon a:hover {
  color: #fff;
}
.mfp-gallery .overlay-icon a {
  color: #fff;
}
.mfp-gallery .overlay-icon a:hover {
  color: #0f1221;
}
.overlay-bx:hover a > i,
.wt-thum-bx:hover .overlay-bx a > i,
.wt-box:hover .overlay-bx a > i {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.overlay-bx:hover,
.wt-thum-bx:hover .overlay-bx,
.wt-box:hover .overlay-bx,
.ow-img:hover .overlay-bx,
.ow-portfolio-img:hover .overlay-bx {
  opacity: 1;
  visibility: visible;
}
.rounded-bx,
.wt-box,
.wt-icon-box,
.wt-icon-box-small,
.wt-thum-bx,
.wt-post-thum {
  position: relative;
}
.wt-box {
  position: relative;
}
.wt-box.no-margin {
  margin-bottom: 0;
}
.wt-icon-box-xld,
.wt-icon-box-xl,
.wt-icon-box-lg,
.wt-icon-box-md,
.wt-icon-box-sm,
.wt-icon-box-xs {
  display: inline-block;
  text-align: center;
}
.wt-icon-box-xld {
  width: 180px;
  height: 180px;
}
.wt-icon-box-xl {
  width: 150px;
  height: 150px;
}
.wt-icon-box-lg {
  width: 120px;
  height: 120px;
}
.wt-icon-box-md {
  width: 100px;
  height: 100px;
}
.wt-icon-box-sm {
  width: 80px;
  height: 80px;
}
.wt-icon-box-xs {
  width: 40px;
  height: 40px;
}
.wt-icon-box-xld.radius,
.wt-icon-box-xl.radius,
.wt-icon-box-lg.radius,
.wt-icon-box-md.radius,
.wt-icon-box-sm.radius,
.wt-icon-box-xs.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.wt-icon-box-xld i,
.wt-icon-box-xl i,
.wt-icon-box-lg i,
.wt-icon-box-md i,
.wt-icon-box-sm i,
.wt-icon-box-xs i {
  vertical-align: middle;
}
.wt-icon-box-xld i {
  font-size: 100px;
}
.wt-icon-box-xl i {
  font-size: 80px;
}
.wt-icon-box-lg i {
  font-size: 60px;
}
.wt-icon-box-md i {
  font-size: 45px;
}
.wt-icon-box-sm i {
  font-size: 30px;
}
.wt-icon-box-xs i {
  font-size: 20px;
}
.wt-icon-box-xld img,
.wt-icon-box-xl img,
.wt-icon-box-lg img,
.wt-icon-box-md img,
.wt-icon-box-sm img,
.wt-icon-box-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}
.wt-icon-box-xld img {
  height: 90px;
}
.wt-icon-box-xl img {
  height: 80px;
}
.wt-icon-box-lg img {
  height: 55px;
}
.wt-icon-box-md img {
  height: 40px;
}
.wt-icon-box-sm img {
  height: 30px;
}
.wt-icon-box-xs img {
  height: 20px;
}
.bdr-white {
  border-color: #ffffff;
}
.bdr-black {
  border-color: #000000;
}
.bdr-primary {
  border-color: #0f1221;
}
.bdr-gray {
  border-color: #dddddd;
}
.bdr-gray-light {
  border-color: #eeeeee;
}
.bdr-gray-dark {
  border-color: #333333;
}
.bdr-solid {
  border-style: solid;
}
.bdr-dot {
  border-style: dotted;
}
.bdr-dash {
  border-style: dashed;
}
.bdr-1 {
  border-width: 1px;
}
.bdr-2 {
  border-width: 2px;
}
.bdr-3 {
  border-width: 3px;
}
.bdr-4 {
  border-width: 4px;
}
.bdr-5 {
  border-width: 5px;
}
.bdr-l-1 {
  border-width: 0px 0px 0px 1px;
}
.bdr-r-1 {
  border-width: 0px 1px 0px 0px;
}
.bdr-t-1 {
  border-width: 1px 0px 0px 0px;
}
.bdr-b-1 {
  border-width: 0px 0px 1px 0px;
}
.bdr-l-2 {
  border-width: 0px 0px 0px 2px;
}
.bdr-r-2 {
  border-width: 0px 2px 0px 0px;
}
.bdr-t-2 {
  border-width: 2px 0px 0px 0px;
}
.bdr-b-2 {
  border-width: 0px 0px 2px 0px;
}
.bdr-l-3 {
  border-width: 0px 0px 0px 3px;
}
.bdr-r-3 {
  border-width: 0px 3px 0px 0px;
}
.bdr-t-3 {
  border-width: 3px 0px 0px 0px;
}
.bdr-b-3 {
  border-width: 0px 0px 3px 0px;
}
.bdr-l-4 {
  border-width: 0px 0px 0px 4px;
}
.bdr-r-4 {
  border-width: 0px 4px 0px 0px;
}
.bdr-t-4 {
  border-width: 4px 0px 0px 0px;
}
.bdr-b-4 {
  border-width: 0px 0px 4px 0px;
}
.bdr-l-5 {
  border-width: 0px 0px 0px 5px;
}
.bdr-r-5 {
  border-width: 0px 5px 0px 0px;
}
.bdr-t-5 {
  border-width: 5px 0px 0px 0px;
}
.bdr-b-5 {
  border-width: 0px 0px 5px 0px;
}
.icon-xld,
.icon-xl,
.icon-lg,
.icon-md,
.icon-sm,
.icon-xs {
  display: inline-block;
  text-align: center;
}
.icon-xld i,
.icon-xl i,
.icon-lg i,
.icon-md i,
.icon-sm i,
.icon-xs i {
  vertical-align: middle;
}
.icon-xld {
  width: 120px;
}
.icon-xld i {
  font-size: 100px;
}
.icon-xld.inline-icon {
  width: auto;
  text-align: left !important;
}
.icon-xl {
  width: 100px;
}
.icon-xl i {
  font-size: 80px;
}
.icon-xl.inline-icon {
  width: auto;
  text-align: left !important;
}
.icon-lg {
  width: 80px;
}
.icon-lg i {
  font-size: 60px;
}
.icon-lg.inline-icon {
  width: auto;
  text-align: left !important;
}
.icon-md {
  width: 60px;
}
.icon-md i {
  font-size: 45px;
}
.icon-md.inline-icon {
  width: auto;
  text-align: left !important;
}
.icon-sm {
  width: 40px;
}
.icon-sm i {
  font-size: 30px;
}
.icon-sm.inline-icon {
  width: auto;
  text-align: left !important;
}
.icon-xs {
  width: 30px;
}
.icon-xs i {
  font-size: 20px;
}
.icon-xs.inline-icon {
  width: auto;
  text-align: left !important;
}
.icon-xld img,
.icon-xl img,
.icon-lg img,
.icon-md img,
.icon-sm img,
.icon-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}
.icon-xld img {
  height: 90px;
}
.icon-xl img {
  height: 80px;
}
.icon-lg img {
  height: 70px;
}
.icon-md img {
  height: 50px;
}
.icon-sm img {
  height: 30px;
}
.icon-xs img {
  height: 20px;
}
.wt-icon-box-wraper {
  position: relative;
}
.wt-icon-box-wraper .wt-tilte {
  margin-top: 0;
}
.wt-icon-box-wraper .after-titile-line {
  margin-bottom: 10px;
}
.wt-icon-box-wraper p:last-child {
  margin: 0px;
}
.icon-content {
  overflow: hidden;
}
.wt-icon-box-xld,
.wt-icon-box-xl,
.wt-icon-box-lg,
.wt-icon-box-md,
.wt-icon-box-sm,
.wt-icon-box-xs {
  display: table;
}
.wt-icon-box-xld .icon-cell,
.wt-icon-box-xl .icon-cell,
.wt-icon-box-lg .icon-cell,
.wt-icon-box-md .icon-cell,
.wt-icon-box-sm .icon-cell,
.wt-icon-box-xs .icon-cell {
  display: table-cell;
  vertical-align: middle;
}
:is(.wt-icon-box-xld .icon-cell, .wt-icon-box-xl .icon-cell, .wt-icon-box-lg .icon-cell, .wt-icon-box-md .icon-cell, .wt-icon-box-sm .icon-cell, .wt-icon-box-xs .icon-cell) img {
  width: 65%;
  height: 100%;
  border-radius: 10px;
}
.wt-icon-box-wraper.left .wt-icon-box-xld,
.wt-icon-box-wraper.left .wt-icon-box-xl,
.wt-icon-box-wraper.left .wt-icon-box-lg,
.wt-icon-box-wraper.left .wt-icon-box-md,
.wt-icon-box-wraper.left .wt-icon-box-sm,
.wt-icon-box-wraper.left .wt-icon-box-xs {
  float: left;
  margin-right: 20px;
}
.wt-icon-box-wraper.left .icon-xld,
.wt-icon-box-wraper.left .icon-xl,
.wt-icon-box-wraper.left .icon-lg,
.wt-icon-box-wraper.left .icon-md,
.wt-icon-box-wraper.left .icon-sm,
.wt-icon-box-wraper.left .icon-xs {
  float: left;
  margin-right: 10px;
}
.wt-icon-box-wraper.right {
  text-align: right;
}
.wt-icon-box-wraper.right .wt-icon-box-xld,
.wt-icon-box-wraper.right .wt-icon-box-xl,
.wt-icon-box-wraper.right .wt-icon-box-lg,
.wt-icon-box-wraper.right .wt-icon-box-md,
.wt-icon-box-wraper.right .wt-icon-box-sm,
.wt-icon-box-wraper.right .wt-icon-box-xs {
  float: right;
  display: table;
  margin-left: 20px;
}
.wt-icon-box-wraper.right .icon-xld,
.wt-icon-box-wraper.right .icon-xl,
.wt-icon-box-wraper.right .icon-lg,
.wt-icon-box-wraper.right .icon-md,
.wt-icon-box-wraper.right .icon-sm,
.wt-icon-box-wraper.right .icon-xs {
  float: right;
  margin-left: 10px;
}
.wt-icon-box-wraper.center {
  text-align: center;
}
.wt-icon-box-wraper.center .wt-icon-box-xld,
.wt-icon-box-wraper.center .wt-icon-box-xl,
.wt-icon-box-wraper.center .wt-icon-box-lg,
.wt-icon-box-wraper.center .wt-icon-box-md,
.wt-icon-box-wraper.center .wt-icon-box-sm,
.wt-icon-box-wraper.center .wt-icon-box-xs {
  margin-left: auto;
  margin-right: auto;
}
.wt-icon-box-wraper.bx-style-1,
.wt-icon-box-wraper.bx-style-2 {
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
}
.wt-icon-box-wraper.bx-style-2.center [class*=wt-icon-box-],
.wt-icon-box-wraper.bx-style-2.left [class*=wt-icon-box-],
.wt-icon-box-wraper.bx-style-2.right [class*=wt-icon-box-] {
  position: absolute;
}
.wt-icon-box-wraper.bx-style-2.center [class*=wt-icon-box-] {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wt-icon-box-wraper.bx-style-2.center .wt-icon-box-xl {
  margin-left: -75px;
}
.wt-icon-box-wraper.bx-style-2.center .wt-icon-box-lg {
  margin-left: -60px;
}
.wt-icon-box-wraper.bx-style-2.center .wt-icon-box-md {
  margin-left: -50px;
}
.wt-icon-box-wraper.bx-style-2.center .wt-icon-box-sm {
  margin-left: -40px;
}
.wt-icon-box-wraper.bx-style-2.center .wt-icon-box-xs {
  margin-left: -20px;
}
.wt-icon-box-wraper.bx-style-2.left [class*=wt-icon-box-] {
  position: absolute;
  top: auto;
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.wt-icon-box-wraper.bx-style-2.right [class*=wt-icon-box-] {
  position: absolute;
  top: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.wt-box,
.wt-info,
.wt-tilte,
.wt-tilte-inner {
  position: relative;
}
.wt-tilte-inner {
  display: inline-block;
}
.wt-tilte-inner.skew-title:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: -1;
  -moz-transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
}
.wt-box[class*=border-],
.wt-info[class*=border-],
.wt-icon-box-wraper[class*=border-] {
  border-color: #eee;
}
.wt-info.border-1,
.wt-info.border-2,
.wt-info.border-3,
.wt-info.border-4,
.wt-info.border-5 {
  border-top: none;
}
.wt-thum-bx,
.wt-post-thum {
  background-color: #000;
}
.wt-thum-bx img,
.wt-post-thum img {
  width: 100%;
  height: auto;
}
.wt-img-overlay1,
.wt-img-overlay2 {
  position: relative;
}
.wt-img-overlay1:before,
.wt-img-overlay1:after {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.wt-img-overlay1:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.wt-img-overlay1:hover:before,
.wt-box:hover .wt-img-overlay1:before {
  opacity: 0.5;
}
.wt-img-overlay2:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 100%);
}
.wt-img-overlay2:hover:before,
.wt-box:hover .wt-img-overlay2:before {
  opacity: 0.9;
}
.btn {
  padding-top: 9px;
  padding-bottom: 9px;
}
.site-button:active,
.site-button:focus,
.site-button:visited,
.active > .site-button {
  background-color: dodgerblue;
  color: #fff;
}
.site-button:hover {
  background-color: #00173c;
  color: #fff;
}
.site-button-secondry {
  color: #fff;
  outline: none;
  background-color: #00173c;
}
.site-button-secondry:active,
.site-button-secondry:hover,
.active > .site-button-secondry {
  background-color: #ededed;
  color: #111;
}
.site-button-secondry:hover.site-btn-effect {
  text-shadow: -400px 0 0 #111111, 0 0 0 #111111;
}
.site-button {
  outline: none;
  color: #fff;
  padding: 15px 40px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  background-color: dodgerblue;
  border: none;
  font-size: 14px;
  font-weight: 500;
}
.site-button-secondry {
  color: #fff;
  padding: 15px 40px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  background-color: #00173c;
  border: none;
  font-size: 14px;
}
.site-button-gradient {
  background: rgb(249, 107, 57);
  background: -moz-linear-gradient(-45deg, rgba(249, 107, 57, 1) 0%, rgba(26, 32, 59, 1) 100%);
  background: -webkit-linear-gradient(-45deg, rgba(249, 107, 57, 1) 0%, rgba(26, 32, 59, 1) 100%);
  background:
    linear-gradient(
      135deg,
      rgba(249, 107, 57, 1) 0%,
      rgba(26, 32, 59, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00173c", endColorstr="#1a203b", GradientType=1);
}
.site-button-gradient:hover {
  background: rgb(26, 32, 59);
  background: -moz-linear-gradient(-45deg, rgba(26, 32, 59, 1) 0%, rgba(249, 107, 57, 1) 100%);
  background: -webkit-linear-gradient(-45deg, rgba(26, 32, 59, 1) 0%, rgba(249, 107, 57, 1) 100%);
  background:
    linear-gradient(
      135deg,
      rgba(26, 32, 59, 1) 0%,
      rgba(249, 107, 57, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1a203b", endColorstr="#00173c", GradientType=1);
}
.mfp-video.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin: -25px;
  color: #fff;
  display: block;
  z-index: 10;
  font-size: 14px;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.mfp-video.video-play-btn:hover {
  background-color: #0f1221;
  color: #fff;
  border: 2px solid transparent;
}
.mfp-video.video-play-btn i {
  margin-right: -5px;
}
.site-button.text-uppercase {
  text-transform: uppercase;
}
.button-sm {
  padding: 5px 10px;
  font-size: 12px;
}
.button-lg {
  padding: 15px 30px;
  font-size: 16px;
}
.button-xl {
  padding: 30px 50px;
  font-size: 24px;
}
.radius-no {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.radius-sm {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.radius-md {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.radius-xl {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}
.radius-bx {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.site-button.white {
  background-color: #fff;
  color: #484848;
}
.site-button.white:hover,
.site-button.white:active,
.site-button.white:focus {
  background-color: #F4F4F4;
  color: #555;
}
.site-button.black {
  background-color: #000;
  color: #fff;
}
.site-button.black:hover,
.site-button.black:active,
.site-button.black:focus {
  background-color: #171717 !important;
  color: #fff !important;
}
.site-button.gray {
  background-color: #666666;
  color: #fff;
}
.site-button.gray:hover,
.site-button.gray:active,
.site-button.gray:focus {
  background-color: #555555;
  color: #fff;
}
.site-button.pink {
  background-color: #e63f75;
  color: #fff;
}
.site-button.pink:hover,
.site-button.pink:active,
.site-button.pink:focus {
  background-color: #d22b61;
  color: #fff;
}
.site-button.blue {
  background-color: #42B8D4;
  color: #fff;
}
.site-button.blue:hover,
.site-button.blue:active,
.site-button.blue:focus {
  background-color: #2ca2be;
  color: #fff;
}
.site-button.green {
  background-color: #35B494;
  color: #fff;
}
.site-button.green:hover,
.site-button.green:active,
.site-button.green:focus {
  background-color: #26a585;
  color: #fff;
}
.site-button.orange {
  background-color: #E56713;
  color: #fff;
}
.site-button.orange:hover,
.site-button.orange:active,
.site-button.orange:focus {
  background-color: #d55703;
  color: #fff;
}
.site-button.red {
  background-color: #D93223;
  color: #fff;
}
.site-button.red:hover,
.site-button.red:active,
.site-button.red:focus {
  background-color: #c51e0f;
  color: #fff;
}
.site-button.brown {
  background-color: #69441F;
  color: #fff;
}
.site-button.brown:hover,
.site-button.brown:active,
.site-button.brown:focus {
  background-color: #5f3a15;
  color: #fff;
}
.site-button.yellow {
  background-color: #ecc731;
  color: #fff;
}
.site-button.yellow:hover,
.site-button.yellow:active,
.site-button.yellow:focus {
  background-color: #d4af19;
  color: #fff;
}
.site-button.purple {
  background-color: #AE1AF7;
  color: #fff;
}
.site-button.purple:hover,
.site-button.purple:active,
.site-button.purple:focus {
  background-color: #9804e1;
  color: #fff;
}
.site-button.graphical {
  color: #fff;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 1px 3px -1px rgba(45, 60, 72, 0.5);
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 1px 3px -1px rgba(45, 60, 72, 0.5);
  -moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 1px 3px -1px rgba(45, 60, 72, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.site-button.graphical:active {
  box-shadow: 0 2px 2px rgba(0, 0, 0, .25) inset;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .25) inset;
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, .25) inset;
}
.site-button.outline {
  color: #888;
  background: none;
  border-width: 2px;
  border-style: solid;
  border-color: #eee;
}
.site-button.outline.white {
  color: #e7e7e7;
  border-color: #e7e7e7;
}
.site-button.outline.white:hover {
  color: #666666;
}
.site-button.outline.black {
  color: #171717;
  border-color: #171717;
}
.site-button.outline.gray {
  color: #666666;
  border-color: #666666;
}
.site-button.outline.pink {
  color: #e63f75;
  border-color: #e63f75;
}
.site-button.outline.blue {
  color: #42b8d4;
  border-color: #42b8d4;
}
.site-button.outline.green {
  color: #35b494;
  border-color: #35b494;
}
.site-button.outline.orange {
  color: #e56713;
  border-color: #e56713;
}
.site-button.outline.red {
  color: #d93223;
  border-color: #d93223;
}
.site-button.outline.brown {
  color: #69441f;
  border-color: #69441f;
}
.site-button.outline.yellow {
  color: #0f1221;
  border-color: #0f1221;
}
.site-button.outline.purple {
  color: #ae1af7;
  border-color: #ae1af7;
}
.site-button.outline.black:hover {
  border-color: rgba(0, 0, 0, 0);
  color: #fff;
}
.site-button-link {
  display: inline-block;
  position: relative;
  font-weight: 700;
}
.site-button-link.white {
  color: #e7e7e7;
}
.site-button-link.white:hover,
.site-button-link.white:active,
.site-button-link.white:focus {
  color: #CCC;
}
.site-button-link.black {
  color: #171717;
}
.site-button-link.black:hover,
.site-button-link.black:active,
.site-button-link.black:focus {
  color: #000;
}
.site-button-link.gray {
  color: #666666;
}
.site-button-link.gray:hover,
.site-button-link.gray:active,
.site-button-link.gray:focus {
  color: #555555;
}
.site-button-link.pink {
  color: #e63f75;
}
.site-button-link.pink:hover,
.site-button-link.pink:active,
.site-button-link.pink:focus {
  color: #2ca2be;
}
.site-button-link.blue {
  color: #42B8D4;
}
.site-button-link.blue:hover,
.site-button-link.blue:active,
.site-button-link.blue:focus {
  color: #2ca2be;
}
.site-button-link.green {
  color: #35B494;
}
.site-button-link.green:hover,
.site-button-link.green:active,
.site-button-link.green:focus {
  color: #26a585;
}
.site-button-link.orange {
  color: #E56713;
}
.site-button-link.orange:hover,
.site-button-link.orange:active,
.site-button-link.orange:focus {
  color: #d55703;
}
.site-button-link.red {
  color: #D93223;
}
.site-button-link.red:hover,
.site-button-link.red:active,
.site-button-link.red:focus {
  color: #c51e0f;
}
.site-button-link.brown {
  color: #69441F;
}
.site-button-link.brown:hover,
.site-button-link.brown:active,
.site-button-link.brown:focus {
  color: #5f3a15;
}
.site-button-link.yellow {
  color: #ecc731;
}
.site-button-link.yellow:hover,
.site-button-link.yellow:active,
.site-button-link.yellow:focus {
  color: #d4af19;
}
.site-button-link.purple {
  color: #ae1af7;
}
.site-button-link.purple:hover,
.site-button-link.purple:active,
.site-button-link.purple:focus {
  color: #9804e1;
}
.site-button.button-app {
  text-align: left;
  padding: 15px 25px;
}
.site-button.button-app i {
  display: inline-block;
  font-size: 45px;
  margin-right: 15px;
}
.site-button.button-app strong {
  display: block;
  font-size: 16px;
}
.masonry-filter {
  background-color: #6CB4EE;
  padding: 12px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0;
}
.masonry-filter > li {
  display: inline-block;
  margin-right: 0px;
}
.masonry-filter li a {
  color: var(--white);
  font-size: 14px;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  position: relative;
  margin: 1px 10px;
  font-weight: 500;
  letter-spacing: 1px;
}
.masonry-filter > li.active a,
.masonry-filter > li a:hover,
.masonry-filter > li a:active,
.masonry-filter > li a:focus {
  color: dodgerblue;
}
.masonry-filter.filter-gradi > li.active a,
.masonry-filter.filter-gradi > li a:hover,
.masonry-filter.filter-gradi > li a:active,
.masonry-filter.filter-gradi > li a:focus {
  color: #fff;
}
.masonry-filter.filter-light-bg > li a {
  color: #0f1221;
}
.masonry-filter.filter-gradi > li a {
  display: inline-block;
  margin-right: 0px;
  padding: 10px 25px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  margin-right: 10px;
}
.masonry-filter.filter-gradi > li.active a,
.masonry-filter.filter-gradi > li a:hover,
.masonry-filter.filter-gradi > li a:active,
.masonry-filter.filter-gradi > li a:focus {
  background: rgb(249, 107, 57);
}
@media only screen and (max-width: 991px) {
  .masonry-filter.filter-gradi > li a {
    padding: 10px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .masonry-filter.filter-gradi > li a {
    padding: 4px 10px;
  }
  .filter-wrap {
    text-align: left !important;
  }
}
@media only screen and (max-width: 600px) {
  .masonry-filter > li a {
    font-size: 20px !important;
  }
}
.filter-wrap.right > .masonry-filter {
  float: right;
}
@media only screen and (max-width:991px) {
  .filter-wrap.right > .masonry-filter {
    float: none;
  }
}
.filter-wrap.center > .masonry-filter {
  margin-left: auto;
  margin-right: auto;
}
.masonry-filter.link-style > li a {
  font-size: 22px;
  font-family: "Teko", sans-serif;
}
.masonry-filter.link-style.white > li:after {
  color: #fff;
}
.masonry-filter.link-style > li:last-child:after {
  display: none;
}
.masonry-filter.link-style.white > li.active a,
.masonry-filter.link-style.white > li a:hover,
.masonry-filter.link-style.white > li a:active,
.masonry-filter.link-style.white > li a:focus {
  color: #f7c20a;
}
.masonry-filter.has-bg > li a {
  color: #fff;
}
.masonry-filter.link-style.has-bg > li.active a,
.masonry-filter.link-style.has-bg > li:hover a,
.masonry-filter.link-style.has-bg > li:active a,
.masonry-filter.link-style.has-bg > li:focus a {
  color: #0f1221;
}
.masonry-filter.button-style > li {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .masonry-filter.button-style > li {
    margin-bottom: 10px;
  }
}
.masonry-filter.button-style > li a {
  background-color: #666666;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-block;
}
.masonry-filter.button-style > li.active a,
.masonry-filter.button-style > li a:hover,
.masonry-filter.button-style > li a:active,
.masonry-filter.button-style > li a:focus {
  background-color: #000;
  color: #fff;
}
.masonry-filter.button-style.has-bg > li a {
  background-color: #fff;
  color: #666;
}
.masonry-filter.button-style.has-bg > li.active a,
.masonry-filter.button-style.has-bg > li a:hover,
.masonry-filter.button-style.has-bg > li a:active,
.masonry-filter.button-style.has-bg > li a:focus {
  background-color: #000;
  color: #fff;
}
.masonry-filter.outline-style > li {
  margin-right: 10px;
}
.masonry-filter.outline-style > li a {
  border-width: 2px;
  border-style: solid;
  border-color: #666666;
  color: #666666;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-block;
}
.masonry-filter.outline-style.rounded-corner > li a {
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}
.masonry-filter.outline-style > li.active a,
.masonry-filter.outline-style > li a:hover,
.masonry-filter.outline-style > li a:active,
.masonry-filter.outline-style > li a:focus {
  border-color: #000;
  color: #000;
}
.masonry-filter.outline-style.has-bg > li a {
  border-color: #fff;
  color: #fff;
}
.masonry-filter.outline-style.has-bg > li.active a,
.masonry-filter.outline-style.has-bg > li a:hover,
.masonry-filter.outline-style.has-bg > li a:active,
.masonry-filter.outline-style.has-bg > li a:focus {
  border-color: #000;
  color: #000;
}
@media only screen and (max-width:768px) {
  .masonry-item {
    width: 96%;
  }
}
.wt-separator-two-part {
  padding-bottom: 15px;
}
.wt-separator-two-part-row {
  display: flex;
  align-items: center;
}
.wt-separator-two-part-left .section-head {
  margin-bottom: 0px;
}
.wt-separator-outer {
  overflow: hidden;
}
.wt-small-separator {
  font-family: "Teko", sans-serif;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.wt-small-separator img {
  width: 28px;
  vertical-align: baseline;
}
.wt-small-separator div {
  display: inline-block;
}
@media only screen and (max-width:767px) {
  .wt-separator-two-part-right.text-right {
    text-align: left !important;
  }
  .wt-separator-two-part {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width:540px) {
  .wt-small-separator {
    font-size: 22px;
    line-height: 20px;
  }
}
.center.wt-small-separator-outer {
  text-align: center;
}
.center.wt-small-separator-outer h2 {
  max-width: 850px;
  margin: 0px auto;
}
.center .wt-small-separator div.sep-leaf-right {
  position: relative;
  margin-left: 50px;
}
.center .wt-small-separator div.sep-leaf-left {
  position: relative;
  margin-right: 50px;
}
.center .wt-small-separator div.sep-leaf-right:before,
.center .wt-small-separator div.sep-leaf-left:before {
  position: absolute;
  content: "";
  background-color: dodgerblue;
  width: 40px;
  height: 3px;
  bottom: 0px;
}
.center .wt-small-separator div.sep-leaf-right:before {
  right: 0px;
}
.center .wt-small-separator div.sep-leaf-left:before {
  left: 0px;
}
.left.wt-small-separator-outer {
  text-align: left;
}
.left .wt-small-separator div.sep-leaf-right {
  position: relative;
  margin-left: 50px;
}
.left .wt-small-separator div.sep-leaf-left {
  position: relative;
  margin-right: 50px;
  display: none;
}
.left .wt-small-separator div.sep-leaf-right:before,
.left .wt-small-separator div.sep-leaf-left:before {
  position: absolute;
  content: "";
  background-color: dodgerblue;
  width: 40px;
  height: 3px;
  bottom: 0px;
}
.left .wt-small-separator div.sep-leaf-right:before {
  right: 0px;
}
.left .wt-small-separator div.sep-leaf-left:before {
  left: 0px;
}
@media only screen and (max-width:540px) {
  div.sep-leaf-right:before {
    display: none;
  }
  div.sep-leaf-left:before {
    display: none;
  }
  .center .wt-small-separator div.sep-leaf-left {
    margin: 0px;
  }
  .center .wt-small-separator div.sep-leaf-right {
    margin: 0px;
  }
}
.wt-divider {
  height: 1px;
  position: relative;
  margin: 0px 0px 30px 0px;
  background-color: #424242;
}
.wt-divider.divider-2px {
  height: 2px;
}
.wt-divider.divider-3px {
  height: 3px;
}
.wt-divider.divider-4px {
  height: 4px;
}
.wt-divider i {
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: block;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wt-divider.icon-left {
  margin-left: 40px;
}
.wt-divider.icon-left i {
  left: -40px;
}
.wt-divider.icon-right {
  margin-right: 40px;
}
.wt-divider.icon-right i {
  left: auto;
  right: -40px;
}
.wt-divider.icon-center i {
  left: 50%;
  margin-left: -5px;
}
.wt-tabs:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
@media only screen and (max-width: 767px) {
  .wt-tabs .nav-tabs > li {
    float: none;
  }
}
.wt-tabs p:last-child {
  margin-bottom: 0;
}
.wt-tabs .tab-pane {
  padding: 20px 0;
}
.wt-tabs .nav-tabs > li > a {
  color: #000;
  font-size: 14px;
  padding: 15px;
  border-bottom: 1px solid transparent;
  border-radius: 0px;
  font-weight: 800;
  border-top: 2px solid transparent;
  display: block;
}
.wt-tabs .nav-tabs > li > a.active,
.wt-tabs .nav-tabs > li > a.active:focus {
  background-color: #fff;
  border-bottom: 1px solid #fff;
  color: #000;
  border-top: 2px solid #0f1221;
}
.wt-tabs .nav-tabs > li.active > a:hover {
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom: 1px solid #fff;
  color: #000;
  border-top: 2px solid #0f1221;
}
.wt-tabs .nav > li > a:focus,
.wt-tabs .nav > li > a:hover {
  background-color: transparent;
}
.wt-tabs .nav li a:hover {
  border-color: transparent;
}
.wt-tabs .nav-tabs.nav-justified > .active > a,
.wt-tabs .nav-tabs.nav-justified > .active > a:focus,
.wt-tabs .nav-tabs.nav-justified > .active > a:hover {
  border: 0px;
}
.wt-tabs .nav-tabs > li > a i {
  margin-right: 5px;
}
.wt-tabs.tabs-default.has-bg .nav-tabs > li > a {
  color: #fff;
}
.wt-tabs.tabs-default.has-bg .nav-tabs > li.active > a,
.wt-tabs.tabs-default.has-bg .nav-tabs > li.active > a:focus,
.wt-tabs.tabs-default.has-bg .nav-tabs > li.active > a:hover {
  color: #000;
  border-color: #ddd #ddd #fff;
}
.wt-tabs.tabs-default.has-bg .tab-pane {
  color: #fff;
}
.wt-tabs.nav-center > .nav-tabs {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.wt-tabs.bg-tabs .nav-tabs > li > a {
  background-color: dodgerblue;
  border: 0px;
  margin-right: -1px;
}
.wt-tabs.bg-tabs .nav-tabs > li > a.active {
  background-color: #00173c;
  color: #fff;
  border: 0px;
}
.wt-tabs.bg-tabs.has-bg .tab-pane {
  color: #fff;
}
.wt-tabs.vertical.bg-tabs .nav-tabs > li > a {
  border-bottom: 4px solid transparent;
}
.wt-tabs.vertical.bg-tabs .nav-tabs > li.active > a {
  border-bottom: 1px solid transparent;
  background-color: #000;
  color: #0f1221;
  border-bottom: 4px solid #0f1221;
}
.wt-tabs.vertical.right.bg-tabs .nav-tabs > li > a {
  border: 1px solid #ddd;
}
.wt-tabs.vertical.right.bg-tabs .nav-tabs > li.active > a {
  border-left: 1px solid transparent;
}
.wt-tabs.border-top .nav-tabs > li.active > a {
  color: #1a1a1a;
}
.wt-tabs.border-top .nav-tabs > li.active > a:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
}
.wt-tabs.border-top.vertical .nav-tabs > li.active > a:after {
  top: 0px;
  left: -1px;
  width: 3px;
  height: 100%;
}
.wt-tabs.border .tab-pane {
  padding: 10px;
  border: 1px solid #ddd;
  margin-top: -1px;
}
.wt-tabs.border {
  border: none !important;
}
.wt-tabs.border .table td,
.wt-tabs.border .table th {
  border: 0px;
}
.wt-tabs.border .nav.nav-tabs {
  border: 0px;
}
.wt-tabs.vertical .nav-tabs {
  float: left;
  width: 170px;
  border-bottom: none;
  border-right: 0px;
}
@media only screen and (max-width:720px) {
  .wt-tabs.vertical .nav-tabs {
    width: 100%;
    float: none;
    border-right: 0px;
  }
  .wt-tabs.vertical .tab-content {
    width: 100%;
    margin-left: 0px !important;
  }
}
.wt-tabs.vertical .tab-pane {
  padding: 10px 0 10px 20px;
}
.wt-tabs.vertical .nav-tabs li {
  float: none;
  margin-right: 0px;
}
.wt-tabs.vertical .nav-tabs li a {
  margin-right: 0;
  border-right: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  border-radius: 0px;
  color: #000;
  border-bottom: 1px solid transparent;
}
.wt-tabs.vertical .nav-tabs li.active a {
  border-bottom: 1px solid #0f1221;
  background-color: #fff;
}
.wt-tabs.vertical .tab-content {
  border-left: 0px;
  margin-left: 169px;
}
.wt-tabs.vertical.border .tab-pane {
  padding: 20px;
  margin-left: -1px;
}
.wt-tabs.vertical.right .nav-tabs {
  border-left: 1px solid #ddd;
  border-right: none;
  float: right;
}
.wt-tabs.vertical.right .nav-tabs li {
  margin-right: 0;
  margin-left: -1px;
}
.wt-tabs.vertical.right .nav-tabs li a {
  border-right: 1px solid transparent;
  border-left: none;
}
.wt-tabs.vertical.right .nav-tabs li.active a {
  border-right: 1px solid #ddd;
  border-left: none;
}
.wt-tabs.vertical.right .tab-content {
  border-left: none;
  border-right: 1px solid #ddd;
  margin-right: 169px;
  margin-left: 0;
}
.wt-tabs.vertical.right .tab-pane {
  padding: 10px 20px 10px 0;
}
.wt-tabs.vertical.right.border .tab-pane {
  padding: 20px;
  margin-right: -1px;
}
.wt-accordion .wt-panel {
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.acod-head {
  position: relative;
}
.acod-head a.collapsed {
  color: #00173c;
}
.acod-title {
  margin-top: 0;
  margin-bottom: 0;
}
.acod-title a {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.acod-head .fa {
  margin-right: 5px;
}
.acod-head a {
  display: block;
  padding: 15px 60px 15px 15px;
  font-size: 22px;
  font-weight: 500;
}
.acod-head a,
.acod-head a:hover,
.acod-head a:active,
.acod-head a:focus {
  color: #0f1221;
}
.acod-body {
  color: #000;
}
.acod-body .acod-content p:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width:540px) {
  .acod-head a .indicator {
    font-size: 12px;
  }
}
.acod-head .indicator {
  padding: 15px;
  color: #000;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  font-size: 12px;
}
.acod-head .indicator .fa {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.acod-head.acc-actives .indicator .fa:before,
.acod-head [aria-expanded=false] .indicator .fa:before {
  content: "\f067";
  font-family: "FontAwesome";
}
.acod-head.acc-actives .indicator .fa:before,
.acod-head [aria-expanded=true] .indicator .fa:before {
  font-family: "FontAwesome";
  content: "\f068";
}
.acod-head .collapsed .indicator .fa:before,
.acod-head .collapsed [aria-expanded=false] .indicator .fa:before {
  content: "\f067";
  font-family: "FontAwesome";
}
.acod-head .indicator .fa:before,
.acod-head [aria-expanded=true] .indicator .fa:before {
  font-family: "FontAwesome";
  content: "\f068";
}
.acc-default .acod-title a {
  padding: 5px 0;
  border-bottom: 1px solid #ececec;
}
.acc-default .acod-head .indicator {
  padding: 0;
}
.acc-default.acc-has-bg .acod-head a,
.acc-default.acc-has-bg .acod-head a:hover,
.acc-default.acc-has-bg .acod-head a:active,
.acc-default.acc-has-bg .acod-head a:focus,
.acc-default.acc-has-bg .acod-head .indicator,
.acc-default.acc-has-bg .acod-body {
  color: #fff;
}
.acc-outline .acod-title a {
  border: 1px solid #ddd;
}
.acc-outline.acc-has-bg .acod-head a,
.acc-outline.acc-has-bg .acod-head a:hover,
.acc-outline.acc-has-bg .acod-head a:active,
.acc-outline.acc-has-bg .acod-head a:focus,
.acc-outline.acc-has-bg .acod-head .indicator,
.acc-outline.acc-has-bg .acod-body {
  color: #fff;
}
.acc-bg-gray a {
  background-color: #0003;
}
.acc-bg-gray .acod-head .indicator {
  color: #fff;
  background-color: #00173c;
}
.acc-bg-gray.acc-has-bg .acod-body {
  color: #fff;
}
.acc-bg-white a {
  background-color: #fff;
}
.acc-bg-white .acod-head .indicator {
  color: #fff;
  background-color: #00173c;
}
.acc-bg-white.acc-has-bg .acod-body {
  color: #fff;
}
.acc-bg-primary a {
  background-color: #000;
}
.acc-bg-primary .acod-head a,
.acc-bg-primary .acod-head a:hover,
.acc-bg-primary .acod-head a:active,
.acc-bg-primary .acod-head a:focus {
  color: #fff;
}
.acc-bg-primary .acod-head .indicator {
  color: #fff;
}
.acc-bg-primary.acc-has-bg .acod-body {
  color: #fff;
}
.acc-bg-dark a {
  background-color: #000;
}
.acc-bg-dark .acod-head a,
.acc-bg-dark .acod-head a:hover,
.acc-bg-dark .acod-head a:active,
.acc-bg-dark .acod-head a:focus {
  color: #fff;
}
.acc-bg-dark .acod-head .indicator {
  background-color: #00173c;
}
.acc-bg-dark .acod-head .fa {
  color: #fff;
}
.acc-bg-dark.acc-has-bg .acod-body {
  color: #fff;
}
.ow-client-logo {
  display: table;
  width: 100%;
}
.remove-line.ow-client-logo:after {
  visibility: hidden;
}
.client-logo {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.owl-carousel .ow-client-logo img {
  max-height: 100%;
  width: auto;
  display: inline-block;
}
.client-logo-media img {
  max-width: 100% !important;
  margin: 0px auto !important;
  width: auto !important;
}
@media only screen and (max-width:720px) {
  .ow-client-logo {
    margin: 0px 1px;
  }
}
.testimonial-pic {
  background: #FFF;
  width: 65px;
  height: 65px;
  position: relative;
  display: inline-block;
}
.testimonial-pic.radius {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}
.testimonial-pic.radius img {
  width: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  padding: 5px;
}
.quote-left,
.quote-right {
  position: relative;
}
.quote-left:before,
.quote-right:after {
  font-family: "FontAwesome";
  position: absolute;
  z-index: 10;
  top: 15px;
}
.quote-left:before {
  content: "\f10d";
  left: 0;
}
.quote-right:after {
  content: "\f10e";
  left: auto;
  right: 0;
}
.testimonial-1-outer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonial-1-outer:after {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #eff3f6;
  z-index: -1;
  left: 0px;
  top: 0px;
  bottom: 80px;
}
.testimonial-1-content-outer {
  z-index: 1;
  top: 0px;
  position: inherit;
}
.testimonial-1-content-outer:after {
  content: "";
  left: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
  z-index: -1;
  background-color: dodgerblue;
  width: 6000px;
  background-image: url("./media/bg-left.png");
  background-position: left bottom;
  background-repeat: no-repeat;
}
.testimonial-1 {
  margin: 160px 0px 140px 180px;
  position: relative;
  padding: 100px 35px 30px 40px;
}
.testimonial-1 .testimonial-pic-block {
  position: absolute;
  left: -140px;
  top: -120px;
}
.testimonial-1 .testimonial-pic {
  width: 180px;
  height: 180px;
  border: 3px solid #fff;
}
.testimonial-1 .testimonial-info {
  padding: 0px;
}
.testimonial-1 .testimonial-text {
  padding: 0px;
  position: relative;
  z-index: 1;
}
.testimonial-1 .testimonial-text .fa-quote-left {
  position: absolute;
  font-size: 90px;
  top: -60px;
  z-index: -1;
  color: dodgerblue;
  opacity: 0.2;
}
.testimonial-1 .testimonial-name {
  padding-right: 0px;
  display: block;
  font-size: 30px;
}
.testimonial-1 .testimonial-name::after {
  display: none;
}
.testimonial-1 .testimonial-position {
  display: block;
  font-size: 24px;
  position: relative;
  line-height: 24px;
}
.testimonial-1-content.owl-carousel.owl-btn-top-right.long-arrow-next-prev .owl-stage-outer {
  padding-top: 0px;
}
.testimonial-1-content.owl-carousel.owl-btn-top-right.long-arrow-next-prev .owl-nav {
  position: absolute;
  right: 30px;
  top: 170px;
  width: auto;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.testimonial-1-outer .hilite-large-title {
  position: absolute;
  right: -1px;
  bottom: -20px;
  z-index: 1;
}
.testimonial-1-outer .hilite-large-title span {
  font-size: 120px;
  line-height: 100px;
  color: #fff;
  opacity: 1;
  font-family: "Teko", sans-serif;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -2px;
}
@media only screen and (max-width:991px) {
  .testimonial-1-content-outer {
    margin-top: 23px;
  }
  .testimonial-1-content-outer:after {
    left: -150px;
  }
  .testimonial-1 {
    margin: 160px 0px 140px 140px;
  }
}
@media only screen and (max-width:767px) {
  .testimonial-1-outer .hilite-large-title {
    display: none;
  }
  .testimonial-1 {
    margin: 40px 0px 40px 0px;
    padding: 20px;
  }
  .testimonial-1 .testimonial-pic-block {
    position: inherit;
    left: auto;
    top: auto;
  }
  .testimonial-1 .testimonial-text .fa-quote-left {
    position: inherit;
    font-size: 40px;
    top: auto;
  }
  .testimonial-1-content.owl-carousel.owl-btn-top-right.long-arrow-next-prev .owl-nav {
    position: absolute;
    right: 20px;
    top: 50px;
    width: auto;
  }
}
@media only screen and (max-width:380px) {
  .testimonial-1 .testimonial-pic {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
  }
  .services-nav {
    margin-top: -6px;
  }
}
.testimonial-2-outer {
  position: relative;
  z-index: 1;
}
.testimonial-2-outer:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  top: 0px;
  content: "";
  background-color: #eff3f6;
  height: 100%;
  width: 50%;
}
.testimonial-2-content-outer {
  position: relative;
  z-index: 1;
}
.testimonial-2 {
  margin: 0px 15px 30px 0px;
  position: relative;
  padding: 60px 35px 30px 40px;
  border-radius: 12px;
}
.testimonial-2 .testimonial-detail {
  padding: 30px 0px 0px 0px;
}
.testimonial-2 .testimonial-pic-block {
  float: left;
  padding-right: 15px;
}
.testimonial-2 .testimonial-pic {
  width: 100px;
  height: 100px;
}
.testimonial-2 .testimonial-info {
  padding: 0px;
}
.testimonial-2 .testimonial-text {
  padding: 0px 0px 0px 20px;
  position: relative;
  z-index: 1;
  border-left: 5px solid dodgerblue;
}
.testimonial-2 .testimonial-text .fa-quote-left {
  position: absolute;
  font-size: 90px;
  top: -30px;
  z-index: -1;
  color: dodgerblue;
  opacity: 0.2;
}
.testimonial-2 .testimonial-name {
  padding-right: 0px;
  display: block;
  font-size: 30px;
}
.testimonial-2 .testimonial-name::after {
  display: none;
}
.testimonial-2 .testimonial-position {
  display: block;
  font-size: 24px;
  position: relative;
  line-height: 24px;
}
.testimonial-2-content.owl-carousel.owl-btn-bottom-right.long-arrow-next-prev .owl-stage-outer {
  padding-top: 0px;
}
.testimonial-2-content.owl-carousel.owl-btn-bottom-right.long-arrow-next-prev .owl-nav {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: auto;
  margin: 0px;
}
.testimonial-2-outer .hilite-large-title {
  position: absolute;
  left: 0px;
  bottom: -20px;
  z-index: 1;
}
.testimonial-2-outer .hilite-large-title span {
  font-size: 120px;
  line-height: 100px;
  color: #fff;
  opacity: 1;
  font-family: "Teko", sans-serif;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -2px;
}
@media only screen and (max-width:991px) {
  .testimonial-2-outer:before {
    width: 100%;
  }
  .testimonial-2-outer .hilite-large-title {
    display: none;
  }
  .testimonial-2 {
    margin: 0px;
    padding: 60px 35px 30px 40px;
  }
}
@media only screen and (max-width:767px) {
  .testimonial-2-content.owl-carousel.owl-btn-bottom-right.long-arrow-next-prev .owl-nav {
    bottom: 0px;
    right: 20px;
  }
}
@media only screen and (max-width:400px) {
  .testimonial-2 {
    margin: 0px 0px 0px 0px;
    position: relative;
    padding: 45px 20px 20px 20px;
  }
}
.testimonial-text {
  padding: 15px;
  position: relative;
}
.testimonial-text p:last-child {
  margin: 0px;
  color: #00173c;
  font-style: italic;
}
.testimonial-detail {
  padding: 15px 0px 0px 0px;
}
.testimonial-name,
.testimonial-position {
  display: inline-block;
  font-size: 14px;
  position: relative;
}
.testimonial-name {
  padding-right: 15px;
}
.testimonial-name:after {
  content: "/";
  position: absolute;
  right: 0px;
  top: 0px;
  font-weight: lighter;
}
.testimonial-text p {
  margin: 0;
}
.testimonial-pic,
.testimonial-info {
  display: inline-block;
}
.testimonial-info {
  padding: 0px 60px 0px 15px;
}
.testimonial-1-thumb {
  max-width: 285px;
  position: relative;
  overflow: hidden;
  left: 50%;
  transform: translateX(50%);
  -webkit-transform: translateX(-50%);
}
.testimonial-1-thumb .wt-media {
  width: 80px;
  height: 80px;
}
.testimonial-1-thumb .wt-media img {
  width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.testimonial-1-thumb.center {
  margin: 0px auto 0px;
}
.testimonial-1-thumb .owl-item.current .wt-media img {
  border: 2px solid #00173c;
  z-index: 2;
}
@media only screen and (max-width:540px) {
  .testimonial-home {
    padding: 30px;
  }
  .testimonial-1-thumb .wt-media {
    width: 50px;
    height: 50px;
  }
  .testimonial-1-thumb {
    max-width: 175px;
  }
}
.testimonial-1-thumb.owl-carousel .owl-nav {
  margin-top: 10px;
  height: 23px;
}
.testimonial-1-thumb.owl-carousel .owl-nav .owl-prev,
.testimonial-1-thumb.owl-carousel .owl-nav .owl-next {
  color: #000;
  background: none;
}
.testimonial-bg {
  color: #fff;
}
@media only screen and (max-width:800px) {
  .testimonial-home .owl-item.active.center .item {
    transform: none;
  }
}
.owl-carousel.testimonial-home-2 .owl-dots .owl-dot.active {
  border: 2px solid #fff;
}
.pricingtable-inner {
  text-align: center;
  border: 1px solid #E9E9E9;
}
.pricing-table-top-section {
  position: relative;
  overflow: hidden;
}
.pricingtable-price {
  padding: 10px;
  margin: -1px;
  position: relative;
}
.pricingtable-sign {
  font-size: 72px;
  color: #0f1221;
  font-weight: 700;
  position: relative;
  top: 0;
}
.pricingtable-bx {
  font-size: 72px;
  color: #0f1221;
  font-weight: 700;
}
.pricingtable-type {
  font-size: 20px;
  color: #0f1221;
  display: block;
  letter-spacing: 0px;
  padding: 20px 10px 10px 10px;
}
.pricingtable-title {
  padding: 0px 20px 0px 20px;
  margin: -1px;
  -webkit-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
  position: relative;
  z-index: 1;
}
.table-featured-title {
  font-style: italic;
  padding: 4px 50px;
  position: absolute;
  left: -30px;
  top: 30px;
  -ms-transform: rotate(42deg);
  -webkit-transform: rotate(42deg);
  transform: rotate(-42deg);
}
.pricingtable-title * {
  margin: 0px;
}
.pricingtable-features {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #000;
}
.pricingtable-features li {
  padding: 15px;
}
.pricingtable-features li i {
  margin: 0 3px;
}
.pricingtable-footer {
  margin-top: -1px;
  padding: 20px;
}
.pricingtable-highlight-outer {
  position: relative;
  z-index: 10;
}
.pricingtable-highlight {
  position: relative;
  z-index: 99;
  background-color: dodgerblue;
}
.pricingtable-highlight .pricingtable-title h2 {
  color: #fff;
}
.pricingtable-highlight .pricingtable-features {
  color: #fff;
}
.pricingtable-highlight .pricingtable-type {
  color: #fff;
}
.pricingtable-highlight .pricingtable-price {
  padding: 10px 10px;
}
.pricingtable-highlight .pricingtable-price .pricingtable-bx {
  color: #fff;
}
.pricingtable-highlight .pricingtable-price .pricingtable-bx .pricingtable-sign {
  color: #fff;
}
.pricingtable-highlight .pricingtable-footer {
  padding: 20px 20px;
}
.no-col-gap .pricingtable-wrapper {
  margin-left: -1px;
}
.pt-with-icon {
  margin-top: 70px;
}
.pt-pic-outer {
  position: relative;
  top: -70px;
  margin-bottom: -45px;
}
.pt-pic {
  width: 140px;
  margin: 0px auto;
  background-color: #dff6fc;
  border-radius: 50%;
  height: 140px;
  line-height: 140px;
  text-align: center;
}
.pt-pic img {
  width: 75px;
}
@media only screen and (max-width:991px) {
  .pricingtable-highlight {
    margin: 0px 0;
    box-shadow: none;
    border: 1px solid #E9E9E9;
  }
  .pricingtable-highlight .pricingtable-price {
    padding: 10px;
  }
  .pricingtable-highlight .pricingtable-footer {
    padding: 20px 20px;
  }
  .pricingtable-row.no-col-gap [class*=col-xs-],
  .pricingtable-row.no-col-gap [class*=col-sm-],
  .pricingtable-row.no-col-gap [class*=col-md-],
  .pricingtable-row.no-col-gap [class*=col-lg-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width:767px) {
  .pricingtable-row.no-col-gap [class*=col-xs-],
  .pricingtable-row.no-col-gap [class*=col-sm-],
  .pricingtable-row.no-col-gap [class*=col-md-],
  .pricingtable-row.no-col-gap [class*=col-lg-] {
    padding-left: 0px;
    padding-right: 0px;
  }
  .pricingtable-row.m-b30 {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:576px) {
  .pricingtable-row {
    padding: 0px 15px;
  }
}
@media only screen and (max-width:420px) {
  .pricingtable-bx {
    font-size: 40px;
  }
  .pricingtable-sign {
    font-size: 40px;
  }
  .pricingtable-type {
    font-size: 18px;
  }
}
.alert.alert-sm {
  padding: 5px 15px;
  font-size: 12px;
}
.alert.alert-lg {
  padding: 25px 15px;
  font-size: 16px;
}
.alert.alert-xl {
  padding: 35px 15px;
  font-size: 18px;
}
.alert[class*=alert-] i {
  margin-right: 8px;
}
.alert.no-radius {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.alert.no-bg {
  background-color: transparent;
  border-width: 2px;
}
.alert[class*=alert-] ul {
  padding-left: 25px;
  margin-top: 10px;
}
.alert[class*=alert-] ul li:before {
  color: #a94442;
}
.wt-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
}
.wt-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.25s;
  -moz-transition: all 0.25s;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
}
.wt-img-effect.opacity img:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  -webkit-opacity: 0.8;
}
.wt-img-effect.zoom-slow img {
  transition: all 10s;
  -moz-transition: all 10s;
  -webkit-transition: all 10s;
  -o-transition: all 10s;
}
.wt-img-effect.zoom-slow:hover img {
  -moz-transform: scale(2);
  -webkit-transform: scale(2);
  -o-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}
.bg-blur-img:hover {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
.wt-img-effect.zoom:hover img {
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.wt-img-effect.shrink:hover img {
  transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  -moz-transform: scale(0.8);
}
.wt-img-effect.side-pan:hover img {
  margin-left: -9%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.wt-img-effect.vertical-pan:hover img {
  margin-top: -10%;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.wt-img-effect.fade-in {
  background: #000;
}
.wt-img-effect.fade-in img {
  opacity: 0.65;
  -moz-opacity: 0.65;
  -webkit-opacity: 0.65;
}
.wt-img-effect.fade-in:hover img {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}
.wt-img-effect.fade-out {
  background: #000;
}
.wt-img-effect.fade-out:hover img {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
}
.wt-img-effect.rotate:hover img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg);
}
.wt-img-effect.sepia img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
}
.algo-image-hover.sepia:hover img {
  -webkit-filter: sepia(0);
  filter: sepia(0);
}
.wt-img-effect.blurr img {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.wt-img-effect.blurr:hover img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}
.wt-img-effect.blurr-invert img {
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.wt-img-effect.blurr-invert img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}
.wt-img-effect.blurr-invert:hover img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
}
.wt-img-effect.off-color img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.wt-img-effect.off-color:hover img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}
.wt-img-effect.on-color img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}
.wt-img-effect.on-color:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}
.modal-xlg {
  width: 1000px;
}
.provider_registration .bootstrap-select div.dropdown-menu ul li a {
  font-weight: 600;
}
.provider_registration .bootstrap-select div.dropdown-menu ul li a span.childcat {
  font-weight: 400;
  color: #7c7c7c;
}
@media only screen and (max-width: 1024px) {
  .modal-xlg {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.social-icons {
  list-style: none;
  margin-left: -3px;
  margin-right: -3px;
  font-size: 12px;
  margin: 0px;
}
.social-icons li {
  display: inline-block;
  text-align: center;
}
.social-icons li a {
  display: block;
  padding: 3px;
}
.social-icons.social-md {
  font-size: 18px;
}
.social-icons.social-lg li a {
  font-size: 24px;
}
.social-icons.has-bg li a:hover {
  color: #fff;
}
.social-icons.social-light a {
  color: #fff;
}
.social-icons.social-light.has-bg li a:hover {
  color: #777;
}
.social-icons.social-dark a {
  color: #000000;
}
.social-icons.social-dark a:hover {
  color: #fff;
}
.social-icons.social-dark.has-bg li a:hover {
  color: #777;
}
.social-icons.social-square a,
.social-icons.social-radius a {
  width: 24px;
  height: 24px;
  line-height: 24px;
  padding: 0;
}
.social-icons.social-square.social-md a,
.social-icons.social-radius.social-md a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  padding: 0;
}
.social-icons.social-square.social-lg a,
.social-icons.social-radius.social-lg a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
}
.social-icons.social-square.social-primary a,
.social-icons.social-radius.social-primary a {
  background-color: #000;
  color: #FFF;
}
.social-icons.social-square.social-primary a:hover,
.social-icons.social-radius.social-primary a:hover {
  background-color: #1a1a1a;
}
.social-icons.social-square.social-dark a,
.social-icons.social-radius.social-dark a {
  background-color: #fff;
}
.social-icons.social-square.social-dark a:hover,
.social-icons.social-radius.social-dark a:hover {
  background-color: #1a1a1a;
  color: #fff;
}
.social-icons.social-square.social-dark.has-bg a:hover,
.social-icons.social-radius.social-dark.has-bg a:hover {
  border: 1px solid #777;
}
.social-icons.social-darkest a {
  color: #000;
}
.social-icons.social-square.social-darkest a:hover,
.social-icons.social-radius.social-darkest a:hover {
  background-color: #000;
  color: #fff;
}
.social-icons.social-radius a {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}
.social-icons.social-square.social-dark.white-border a,
.social-icons.social-radius.social-dark.white-border a {
  background: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 1);
}
.wt-social-icon {
  display: inline-block;
  margin: 0 -3px;
  padding: 0;
}
.wt-social-icon li {
  display: inline-block;
  padding: 0;
  font-size: 12px;
}
.wt-social-icon li a {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 4px;
}
.wt-social-icon li .fa {
  vertical-align: middle;
}
.wt-social-icon.border li {
  padding: 0 3px;
}
.wt-social-icon.border li a {
  border: 1px solid #efeded;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.wt-social-links.dark li {
  padding: 0 3px;
}
.wt-social-icon.dark li a {
  border: 1px solid #777777;
  color: #777777;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
.wt-breadcrumb {
  margin: 0;
  list-style: none;
}
.wt-breadcrumb li {
  padding: 0px;
  margin-right: 7px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-family: "Teko", sans-serif;
}
.wt-breadcrumb li a {
  color: #fff;
}
.wt-breadcrumb li a:hover {
  color: dodgerblue;
}
.wt-breadcrumb li:last-child {
  color: dodgerblue;
}
.wt-breadcrumb li:first-child a i {
  font-size: 18px;
  vertical-align: text-top;
}
.wt-breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb-style-2 li:after {
  content: "\f101";
  margin-left: 7px;
  font-family: "FontAwesome";
  color: #fff;
  font-size: 16px;
  font-weight: normal;
}
.google-map {
  width: 100%;
  height: 460px;
}
label {
  font-weight: 700;
  margin-bottom: 10px;
}
.panel-default,
.panel-default > .panel-heading {
  border-color: #e7ecf1;
  color: inherit;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #e7ecf1;
}
.form-group {
  margin-bottom: 25px;
}
.form-control {
  border-color: #e1e6eb;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  height: 40px;
  font-size: 13px;
  line-height: 20px;
  padding: 9px 12px 9px 10px;
}
.form-control:focus {
  border-color: #e1e1e1;
  outline: 0;
}
.form-control:focus,
.has-error .form-control:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control.kv-fileinput-caption {
  height: 39px;
}
.form-group.form-inline .radio,
.form-group.form-inline .checkbox {
  margin-right: 15px;
}
.input-group {
  width: 100%;
}
.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}
.input-group-addon {
  background: #fff;
  border-color: #e1e1e1;
  padding: 6px 14px;
  font-size: 16px;
}
.input-group-addon.font-size-20 {
  font-size: 20px;
}
.input-group-addon.fixed-w {
  text-align: center;
  padding: 6px 0;
  width: 40px;
}
.input-group-addon.v-align-t {
  line-height: 30px;
}
input[type=checkbox],
input[type=radio] {
  opacity: 0;
  margin-left: 1px !important;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: block;
  padding-left: 30px !important;
  position: relative;
}
input[type=checkbox] + label:hover:before,
input[type=radio] + label:hover:before {
  border-color: #3396d1;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  background-color: #fff;
  border: 2px solid #b6b7b8;
  border-radius: 0px;
  content: "";
  display: inline-block;
  height: 16px;
  line-height: 1;
  margin-left: -30px;
  position: absolute;
  top: 2px;
  transition: all linear 0.1s;
  width: 16px;
}
input[type=checkbox] + label:after {
  color: #fff;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 0px;
  -webkit-font-smoothing: antialiased;
  left: 6px;
  position: absolute;
  top: 7px;
  transition: all linear 0.1s;
}
input[type=checkbox]:checked + label:before {
  border-width: 7px;
  border-color: #3396d1;
}
input[type=checkbox]:checked + label:after {
  font-size: 10px;
  left: 2px;
  top: 2px;
}
input[type=radio] + label:before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  content: "";
}
input[type=radio]:checked + label:before {
  border-color: #3396d1;
  border-width: 5px;
}
.form-inline .checkbox input[type=checkbox],
.form-inline .radio input[type=radio] {
  position: absolute;
  left: 0;
  bottom: 0;
}
.btn-file {
  overflow: hidden;
  position: relative;
}
.btn-file input[type=file] {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  cursor: inherit;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
}
.has-feedback label ~ .form-control-feedback {
  top: 31px;
}
.has-error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle:hover,
.has-error .bootstrap-select .dropdown-toggle:focus {
  border-color: #a94442 !important;
}
.has-success .bootstrap-select .dropdown-toggle,
.has-success .bootstrap-select .dropdown-toggle:hover,
.has-success .bootstrap-select .dropdown-toggle:focus {
  border-color: #3c763d !important;
}
.resize-vertical {
  resize: vertical;
}
.resize-horizontal {
  resize: horizontal;
}
.resize-none {
  resize: none;
}
.loading-area {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: hidden;
}
.loading-box {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 9999;
}
.loading-pic {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 99999;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.loading-cover,
.loading-srh-bar,
.loading-map {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.loading-cover .fa-spinner,
.loading-srh-bar .fa-spinner,
.loading-map .fa-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px;
  font-size: 25px;
  color: #333;
}
.widget {
  margin-bottom: 10px;
  width: 400px;
  margin-left: -100px;
  border-spacing: 6px;
}
.widget-title {
  margin: 0 0 25px;
  font-size: 45px;
}
@media only screen and (max-width:1025px) {
  .widget-title {
    margin: 0 0 5px;
    font-size: 32px;
  }
  .widget {
    margin-bottom: 10px;
    width: 303px;
    margin-left: -10px;
    border-spacing: 6px;
  }
  .widget_about span {
    font-size: 16px;
  }
  .widget_services {
    margin-bottom: 10px;
    width: 203px;
    margin-left: -10px;
    border-spacing: 6px;
  }
}
.widget-title {
  margin-bottom: 20px;
}
.recent-posts-entry ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.site-footer .widget_services ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.site-footer .widget_services ul li {
  margin-bottom: 16px;
  position: relative;
  padding: 10px 10px 10px 0px;
  margin-bottom: 0;
  display: inline-block;
}
.site-footer .widget_services ul li {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}
.site-footer .widget_services ul li {
  display: table;
  width: 100%;
  padding: 2px 0px;
}
.site-footer .widget_services ul li a {
  display: table-cell;
  width: 65%;
  font-weight: 650;
}
.site-footer .widget_services ul li a {
  color: #000;
}
.site-footer .widget_services ul li a:hover {
  color: dodgerblue;
}
.site-footer.footer-light .widget_services ul li a:hover {
  color: #00173c;
}
.site-footer .widget_services li {
  border-bottom: none;
  line-height: 28px;
}
.site-footer .widget_services li:before {
  top: 0;
  left: 1px;
}
.site-footer .widget_services.inline-links li {
  display: block;
  border-bottom: none;
  position: relative;
  border-bottom: 1px dashed rgba(102, 102, 102, 0.3);
}
.site-footer .widget_services.inline-links li:last-child {
  border-bottom: 0px;
}
@media only screen and (max-width:375px) {
  .site-footer .widget_services ul li {
    display: block;
  }
  .site-footer .widget_services ul li a {
    display: block;
    width: 100%;
  }
}
.widget_services ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.widget_services ul li {
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  padding: 10px 0px 10px 0px;
  line-height: 20px;
}
.widget_services ul li {
  font-size: 14px;
}
.widget_services ul li:last-child {
  font-size: 14px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}
.widget_services ul li a {
  color: #000;
}
.widget_services ul li a:hover {
  color: dodgerblue;
}
.widget_services ul li .badge {
  float: right;
  background: none;
  color: #111;
  font-weight: normal;
  font-size: 14px;
  font-weight: 600;
}
.widget_services li li {
  border-bottom: none;
  padding-left: 25px;
  padding-right: 5px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 28px;
}
.widget_services li li:before {
  top: 0;
  left: 1px;
}
.widget_archives ul {
  list-style: none;
  margin-bottom: 0px;
}
.widget_archives ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  padding: 10px 0px 10px 0px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}
.widget_archives ul li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
}
.widget_archives ul li a {
  color: #000;
}
.widget_archives ul li a:hover {
  color: dodgerblue;
}
.widget_archives ul li .badge {
  float: right;
  background: none;
  color: #111;
  font-weight: normal;
  font-size: 14px;
  font-weight: 600;
}
.all_services {
  background-color: #00173c;
}
.all_services ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.all_services ul li {
  border-bottom: 1px solid #010c1d;
  position: relative;
}
.all_services ul li {
  font-size: 16px;
}
.all_services ul li:last-child {
  border-bottom: 0px;
}
.all_services ul li a {
  position: relative;
  padding: 20px 10px 20px 30px;
  margin-bottom: 0;
  line-height: 20px;
  display: block;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}
.all_services ul li a i:hover {
  transform: scale(1.4);
}
.all_services ul li a:hover {
  background-color: dodgerblue;
}
.all_services ul li a.active {
  background-color: dodgerblue;
}
@media (min-width: 992px) {
  .col-lg-8.col-md-12.Services {
    margin-top: -55px;
  }
}
.service-side-btn a.btn-block {
  background-color: #fff;
}
.service-side-btn a.btn-block:hover {
  background-color: dodgerblue;
}
@media only screen and (max-width:767px) {
  .need-help {
    margin-bottom: 0px;
  }
}
.search-bx button {
  border-left-color: #FFF;
  padding: 9px 20px;
  color: #fff !important;
  background-color: dodgerblue;
  border: 0px;
  height: 56px;
  border-radius: 0px;
}
.search-bx .input-group .form-control {
  border-right: 1px solid transparent;
  height: 56px;
  background-color: #f8f8f8;
}
.widget_search .screen-reader-text {
  display: block;
}
.searchform {
  position: relative;
}
.searchform input[type=text] {
  width: 100%;
  height: 40px;
  padding: 10px 90px 10px 15px;
  border: 1px solid #CCCCCC;
}
.searchform input[type=submit] {
  height: 40px;
  padding: 10px 15px;
  background-color: #0f1221;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
}
.searchform input[type=submit]:hover,
.searchform input[type=submit]:focus,
.searchform input[type=submit]:active {
  background-color: #6ab33e;
  color: #ffffff !important;
  border-bottom-color: #5a9e2f;
}
.recent-posts-entry .post-date,
.tweets-feed-entry .tweet-date {
  color: #3396d1;
  font-style: normal;
}
.widget .post-title {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.widget .wt-post-meta {
  margin-bottom: 10px;
}
.widget .wt-post-meta li {
  font-size: 14px;
  color: dodgerblue;
}
.recent-posts-entry .widget-post:last-child {
  border: none;
  margin-bottom: 0px;
}
.recent-posts-entry .wt-post-date {
  background-color: #0e0e0e;
  width: 50px;
  height: 60px;
  float: left;
}
.recent-posts-entry .wt-post-media {
  width: 75px;
  float: left;
}
.recent-posts-entry .wt-post-date strong {
  display: block;
  font-size: 24px;
}
.recent-posts-entry .wt-post-date span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}
.recent-posts-entry .widget-post {
  margin-bottom: 10px;
}
.recent-posts-entry .wt-post-info {
  margin-left: 85px;
}
.recent-posts-entry .wt-post-info .wt-post-meta ul li {
  font-weight: 600;
  font-size: 12px;
}
.recent-posts-entry .wt-post-info .post-title {
  margin-top: 0px;
}
.widget_tag_cloud a {
  padding: 8px 14px;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 14px;
  display: inline-block;
  color: #111111;
  position: relative;
  border: 1px solid #e8e8e8;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.widget_tag_cloud a:before {
  position: absolute;
  content: "";
  right: 100%;
  top: 0px;
  background-color: #e8e8e8;
  width: 0%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.widget_tag_cloud a:hover:before {
  width: 100%;
  right: 0%;
}
.widget_tag_cloud a:hover {
  color: dodgerblue;
}
.widget_gallery ul {
  padding-left: 0;
}
.widget_gallery .wt-post-thum {
  margin-right: 2px;
  margin-bottom: 2px;
}
.widget_gallery li a {
  position: relative;
}
.widget_gallery li a:hover {
  cursor: crosshair;
}
.widget_gallery li:hover img {
  margin-bottom: 0;
  opacity: 0.3;
}
.widget_gallery li:hover a:after {
  opacity: 1;
}
.widget_gallery a {
  display: block;
}
@media only screen and (max-width:991px) {
  .widget_gallery li {
    width: 24.333%;
  }
}
@media only screen and (max-width:480px) {
  .widget_gallery li {
    width: 32.1%;
  }
}
.widget_newsletter-2 .newsletter-bx {
  background-color: #f6f7f8;
  text-align: center;
}
.widget_newsletter-2 .newsletter-bx .newsletter-icon {
  background-color: #000;
  display: block;
  width: 70px;
  height: 70px;
  margin: 0px auto;
  margin-bottom: 15px;
  border-radius: 50%;
  text-align: center;
}
.widget_newsletter-2 .newsletter-bx .newsletter-icon i {
  font-size: 32px;
  color: #fff;
  line-height: 70px;
}
.widget-client {
  background-color: #f6f7f8;
}
.widget_address li {
  margin-bottom: 20px;
  color: #999999;
  position: relative;
  padding-left: 30px;
}
.widget_address li i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 16px;
}
.widget_address_outer .social-icons li {
  padding-right: 10px;
}
.widget_newsletter .newsletter-bx .form-control {
  background-color: #fff;
  border: 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.wt-responsive-table td,
.wt-responsive-table th {
  text-align: center;
}
.wt-responsive-table td a,
.wt-responsive-table th a {
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  #no-more-tables table,
  #no-more-tables thead,
  #no-more-tables tbody,
  #no-more-tables th,
  #no-more-tables td,
  #no-more-tables tr {
    display: block;
  }
  #no-more-tables thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
    display: none;
  }
  #no-more-tables tr {
    border: 1px solid #ccc;
  }
  #no-more-tables td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
    white-space: normal;
    text-align: left;
  }
  #no-more-tables td:before {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  #no-more-tables td:before {
    content: attr(data-title);
  }
}
.cart-total-table table {
  margin-bottom: 0px;
}
.yt-thum-box img {
  margin: -9.5% 0%;
}
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 15px;
}
.alignright {
  float: right;
  margin: 5px 0 25px 25px;
}
.alignleft {
  float: left;
  margin: 5px 25px 25px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 25px 25px;
}
a img.alignnone {
  margin: 5px 0 25px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 25px 25px 0;
}
a img.aligncenter {
  display: block;
  margin: 5px auto 15px;
}
.wp-caption {
  max-width: 100%;
  text-align: center;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0;
}
.wp-caption.alignnone {
  margin: 5px 0 25px 0;
}
.wp-caption.alignleft {
  margin: 5px 25px 25px 0;
}
.wp-caption.alignright {
  margin: 5px 0 25px 25px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  color: #9d9d9d;
  font-size: 13px;
  line-height: 18px;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}
blockquote {
  color: #000;
  clear: both;
  border: none;
  position: relative;
  text-align: left;
}
blockquote .fa-quote-left {
  position: absolute;
  font-size: 50px;
  left: 20px;
  top: 30px;
  color: dodgerblue;
  line-height: 50px;
}
blockquote p {
  font-size: 30px;
  line-height: 36px;
  padding-left: 50px;
  font-family: "Teko", sans-serif;
}
blockquote strong {
  font-size: 18px;
  padding-right: 10px;
}
blockquote span {
  font-size: 14px;
  color: #000;
  line-height: 30px;
  margin-bottom: 0px;
  font-style: normal;
  display: inline-block;
}
@media only screen and (max-width:640px) {
  blockquote {
    padding: 80px 20px 20px 20px;
  }
  blockquote p {
    font-size: 28px;
    line-height: 28px;
    padding: 0px;
  }
  blockquote .fa-quote-left {
    position: inherit;
    left: auto;
    top: auto;
    padding-bottom: 20px;
  }
}
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}
.blog-post {
  position: relative;
  margin-bottom: 30px;
}
.wt-post-title {
  margin-bottom: 15px;
}
.wt-post-title .post-title {
  margin: 0;
}
.wt-post-meta {
  margin-bottom: 20px;
}
.wt-post-meta ul {
  margin: 0px;
  list-style: none;
}
.wt-post-meta li {
  padding: 0;
  display: inline-block;
  font-size: 14px;
}
.wt-post-meta li.post-user span {
  font-weight: 600;
}
.wt-post-meta li.post-comment span {
  font-weight: 600;
}
.wt-post-meta i {
  margin-right: 5px;
}
.wt-post-meta li:after {
  content: "|";
  display: inline-block;
  font-weight: normal;
  margin-left: 5px;
  font-size: 14px;
  margin-right: 5px;
  color: #000;
}
.wt-post-meta li:last-child:after {
  display: none;
}
.wt-post-text p a {
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
.wt-post-text p:last-child {
  margin: 0;
}
.wt-post-readmore {
  margin-bottom: 0px;
}
.wt-post-readmore a {
  font-size: 16px;
  position: relative;
}
.wt-post-readmore a:hover {
  color: #000;
}
.blog-post .wt-post-info {
  z-index: 1;
}
.blog-post .wt-post-info .post-author {
  padding-top: 15px;
  font-size: 13px;
  position: relative;
}
.blog-post .wt-post-info .post-author .post-author-pic {
  left: 30px;
  top: 0px;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid #0f1221;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.blog-post:hover .wt-post-info .post-author .post-author-pic {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 4px solid #0f1221;
}
.blog-post-outer-3 .container {
  max-width: 1430px;
}
@media only screen and (max-width:767px) {
  .blog-post-outer-3.p-b40 {
    padding-bottom: 0px;
  }
}
.blog-post .blog-category {
  position: absolute;
  left: -20px;
  top: 30px;
  z-index: 1;
}
.blog-post .blog-category:after {
  position: absolute;
  content: "";
  right: -8px;
  width: 20px;
  height: 46px;
  border: 2px solid #fff;
  z-index: -1;
  top: -10px;
}
.blog-post .blog-category span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 2px 10px 1px 10px;
  position: relative;
}
.blog-grid-1 {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: inherit;
  margin-bottom: 30px;
  margin-left: 20px;
  height: 400px;
}
.blog-grid-1 .wt-post-info {
  position: absolute;
  z-index: 1;
  bottom: 0px;
}
.blog-grid-1 .wt-post-info .post-author {
  font-size: 13px;
  position: relative;
  padding: 0px;
}
.blog-grid-1 .wt-post-meta {
  margin-bottom: 0px;
}
.blog-grid-1 .post-date {
  text-transform: uppercase;
  font-weight: 700;
}
.blog-grid-1 .wt-post-meta li::after {
  display: none;
}
.blog-grid-1 .wt-post-info .post-author .post-author-pic {
  left: 30px;
  top: 0px;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid #0f1221;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.blog-grid-1:hover .wt-post-info .post-author .post-author-pic {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 4px solid #0f1221;
}
.blog-grid-1 .overlay-main {
  border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;
}
@media only screen and (max-width:991px) {
  .blog-grid-1 {
    margin-bottom: 0px;
  }
}
.latest-blog-1 .blog-post .wt-post-info {
  position: relative;
  top: -20px;
  margin: 0px 20px;
}
.latest-blog-1 .date-style-2 .post-date {
  color: inherit;
  position: inherit;
  left: inherit;
  top: inherit;
  text-align: left;
  background-color: inherit;
  padding: inherit;
  text-transform: inherit;
}
.latest-blog-1 .date-style-2 .post-date span {
  font-size: inherit;
  font-weight: 600;
  color: #00173c;
}
.blog-post blockquote {
  color: #fff;
  clear: both;
  border: none;
  position: relative;
  text-align: center;
  padding: 100px 30px 30px 30px;
  background-color: dodgerblue;
}
.blog-post blockquote .fa-quote-left {
  position: absolute;
  font-size: 50px;
  left: 50%;
  top: 30px;
  color: #fff;
  line-height: 50px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}
.blog-post blockquote p {
  font-size: 30px;
  line-height: 36px;
  padding-left: 0px;
  font-family: "Teko", sans-serif;
}
.blog-post blockquote strong {
  font-size: 18px;
}
.blog-post blockquote span {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 0px;
  font-style: normal;
  padding-left: 0px;
  display: inline-block;
  font-weight: 600;
}
.blog-list-1 {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.blog-list-1 .wt-post-info {
  position: relative;
  z-index: 1;
}
.blog-list-1 .wt-post-info .post-author {
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 13px;
  position: relative;
}
.blog-list-1 .wt-post-meta {
  border-bottom: 1px solid #eff3f6;
  padding-bottom: 20px;
}
.blog-list-1 .wt-post-meta li {
  color: #000;
}
.blog-list-1 .wt-post-meta li a {
  color: #000;
}
.blog-list-1 .wt-post-info .post-author .post-author-pic {
  left: 30px;
  top: 0px;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid transparent;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.blog-list-1:hover .wt-post-info .post-author .post-author-pic {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 4px solid #0f1221;
}
.blog-post-outer .blog-post:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width:420px) {
  .masonry-item .wt-post-title h2.post-title {
    line-height: 14px;
  }
  .masonry-item .wt-post-title h2.post-title a {
    font-size: 14px;
    line-height: none;
  }
}
.blog-share-btn {
  position: absolute;
  bottom: 6px;
  right: 0px;
  border-radius: 50px;
  height: 30px;
  width: 25px;
  text-align: center;
  line-height: 30px;
  padding: 0px;
  border: none;
  background: none;
}
.dropdown-menu.blog-social-icon {
  position: absolute;
  right: 0px;
  bottom: 30px;
  background: no-repeat;
  min-width: 0px;
  float: none;
  left: auto;
  top: auto;
  border: none;
  box-shadow: inherit;
  text-align: center;
  z-index: 1;
}
.blog-social-icon ul {
  margin-bottom: 0px;
}
.blog-social-icon li {
  display: block;
}
.blog-social-icon li a {
  padding: 6px;
  font-size: 14px;
  position: relative;
}
.blog-social-icon li:first-child a {
  -webkit-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
  padding-top: 10px;
}
.blog-social-icon li:last-child a {
  -webkit-border-radius: 0px 0px 10px 10px;
  border-radius: 0px 0px 10px 10px;
  padding-bottom: 10px;
}
.block-shadow {
  -webkit-box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .16);
  box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .16);
}
.blog-social-icon li a .social-tooltip {
  padding: 4px 15px;
  position: absolute;
  right: 130%;
  top: 0px;
  background-color: #0f1221;
  color: #fff;
  display: block;
  width: auto;
  text-align: right;
  opacity: 0;
  font-size: 12px;
  border-radius: 3px;
}
.blog-social-icon li a:hover .social-tooltip {
  opacity: 1;
}
.social-tooltip:after,
.social-tooltip:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}
.social-tooltip:after {
  border-left-color: #0f1221;
  border-width: 6px;
  margin-top: -6px;
}
.social-tooltip:before {
  border-left-color: #0f1221;
  border-width: 6px;
  margin-top: -6px;
}
.side-bar .widget {
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
}
.widget .widget-post img {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .side-bar .widget:last-child {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .side-bar {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 420px) {
  .side-bar {
    margin-bottom: 0px;
    padding: 0px;
    box-shadow: none !important;
  }
}
.comments-area {
  padding: 0;
}
.comments-area .comments-title {
  text-transform: uppercase;
  font-size: 30px;
}
ol.comment-list {
  list-style: none;
}
ol.comment-list li.comment {
  position: relative;
  padding: 0;
}
ol.comment-list li.comment .comment-body {
  position: relative;
  padding: 30px 0px 30px 110px;
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9dcde;
}
ol.comment-list li.comment .comment-author {
  display: block;
  margin-bottom: 10px;
}
ol.comment-list li.comment .comment-author .avatar {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 90px;
  height: 90px;
  border: 4px solid transparent;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
ol.comment-list li.comment .comment-author .fn {
  display: inline-block;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}
ol.comment-list li.comment .comment-author .says {
  display: none;
  color: #999999;
  font-weight: 600;
}
ol.comment-list li.comment .comment-meta {
  margin-bottom: 5px;
  font-size: 12px;
}
ol.comment-list li.comment .comment-meta a {
  color: #000;
}
ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
  font-family: "FontAwesome";
  font-size: 16px;
  vertical-align: top;
}
ol.comment-list li.comment p {
  margin: 0 0 5px;
  font-weight: 400;
}
ol.comment-list li.comment .reply {
  text-align: left;
}
ol.comment-list li.comment .reply a {
  font-size: 14px;
  position: relative;
}
ol.comment-list li .children {
  list-style: none;
  margin-left: 40px;
}
ol.comment-list li .children li {
  padding: 0;
}
ol.comment-list li.comment .comment-body:hover .comment-author .avatar {
  border: 4px solid #fff;
}
@media only screen and (max-width:991px) {
  #comment-list {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #comment-list.p-a30 {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    margin-bottom: 0px;
  }
  .comments-area .padding-30 {
    padding: 15px;
  }
  ol.comment-list li.comment .comment-body {
    margin-bottom: 30px;
    margin-left: 30px;
    padding-left: 60px;
  }
  ol.comment-list li.comment .comment-author .avatar {
    left: -35px;
    height: 70px;
    width: 70px;
  }
  ol.comment-list li .children {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 480px) {
  ol.comment-list li.comment .comment-body {
    margin-left: 10px;
  }
  ol.comment-list li.comment .comment-author .avatar {
    left: -15px;
    top: 12px;
    width: 60px;
    height: 60px;
  }
  ol.comment-list li.comment .comment-body {
    padding-left: 55px;
  }
}
@media only screen and (max-width: 380px) {
  ol.comment-list li.comment .comment-body {
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  ol.comment-list li.comment .comment-author .avatar {
    position: inherit;
    display: block;
    margin-bottom: 20px;
  }
  .comments-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.comment-reply-link {
  position: relative;
  color: #00173c;
  font-weight: 700;
}
.comment-reply-link:before {
  position: absolute;
  content: "\f178";
  font-family: "FontAwesome";
  left: 50%;
  top: 0px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}
.comment-reply-link:hover:before {
  left: 110%;
  opacity: 1;
}
.comment-reply-link:hover {
  color: #000;
}
.comment-respond .comment-reply-title {
  text-transform: uppercase;
  font-size: 30px;
}
.comments-area .comment-form {
  margin: 0 -15px;
}
.comments-area .comment-form .comment-notes {
  display: none;
}
.comments-area .comment-form p {
  width: 50%;
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}
.comments-area .comment-form p.comment-form-url {
  width: 100%;
  display: block;
  clear: both;
}
.comments-area .comment-form p.form-allowed-tags {
  width: 100%;
}
ol.comment-list li.comment .comment-respond .comment-form p {
  padding: 0 15px !important;
}
.comments-area .comment-form p label {
  display: none;
  line-height: 18px;
  margin-bottom: 10px;
}
.comments-area .comment-form p input[type=text],
.comments-area .comment-form p textarea {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: none;
  background-color: #fff;
}
.comments-area .comment-form p.comment-form-comment {
  width: 100%;
  display: block;
  clear: both;
}
.comments-area .comment-form p textarea {
  height: 120px;
  resize: none;
}
.comments-area .comment-form p.form-submit {
  clear: both;
  float: none;
  width: 100%;
  margin: 0;
}
.comments-area .comment-form p input[type=submit] {
  background-color: #77c04b;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-width: 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
  text-transform: uppercase;
}
.comments-area .comment-form p input[type=submit]:hover,
.comments-area .comment-form p input[type=submit]:focus,
.comments-area .comment-form p input[type=submit]:active {
  background-color: #6ab33e;
  border-color: #6ab33e;
  color: #fff;
}
.comment-respond .form-submit .site-button {
  font-weight: 300;
  padding: 15px 30px;
}
.comment-form .form-control::-webkit-input-placeholder {
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
}
.comment-form .form-control::-moz-placeholder {
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
}
.comment-form .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
}
.comment-form .form-control:-moz-placeholder {
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .comments-area .comment-form p {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:1280px) {
  .wt-post-info-inner {
    padding: 20px;
  }
}
@media only screen and (max-width:767px) {
  .wt-post-info-inner {
    height: auto;
  }
}
.blog-post .grid-post li {
  float: left;
  width: 33.33%;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  list-style: none;
}
.blog-post .grid-post li:first-child {
  width: 100%;
}
.blog-post .grid-post li .portfolio-item {
  width: 100%;
}
.portfolio-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 100%;
  border: 0;
  position: relative;
}
.blog-post .grid-post li img {
  width: 100%;
}
.date-style-2 .wt-post-info {
  position: relative;
}
.date-style-2 .wt-post-meta ul li {
  font-family: "Teko", sans-serif;
  margin-right: 30px;
}
.date-style-2 .wt-post-meta ul li:last-child {
  margin-right: 0px;
}
.date-style-2 .wt-post-meta ul li.post-category {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  margin-right: 0px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: left 0px;
  -webkit-transform-origin: left 0px;
  -moz-transform-origin: left 0px;
  -o-transform-origin: left 0px;
  -ms-transform-origin: left 0px;
  border-right: 20px solid #fff;
  border-bottom: 20px solid #fff;
  background-color: #fff;
}
.date-style-2 .wt-post-meta ul li.post-category span {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: dodgerblue;
  font-size: 24px;
  display: block;
  padding: 2px 15px;
  letter-spacing: 2px;
}
.date-style-2 .wt-post-meta ul li.post-date,
.date-style-2 .wt-post-meta ul li.post-comment {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: dodgerblue;
  position: relative;
}
.date-style-2 .wt-post-readmore {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.date-style-2 .wt-post-readmore a {
  color: dodgerblue;
}
.date-style-2 .wt-post-meta {
  margin-bottom: 10px;
}
.date-style-2 .wt-post-meta ul li:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #00173c;
  top: 15px;
  right: -30px;
}
.date-style-2 .wt-post-meta ul li.post-category:after {
  display: none;
}
.blog-without-image.date-style-2 .wt-post-info {
  position: relative;
  margin-left: 60px;
  padding-left: 30px;
}
.blog-without-image.date-style-2 .wt-post-meta ul li.post-category {
  position: absolute;
  left: 0px;
  bottom: 0px;
  top: auto;
  z-index: 1;
  margin-right: 0px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: left bottom;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  border-right: 20px solid #f0f0f0;
  border-bottom: 20px solid #f0f0f0;
  background-color: #fff;
}
.date-style-outline {
  padding: 40px 40px 40px 110px;
  margin-bottom: 30px;
}
.date-style-outline .post-date {
  color: #fff;
  position: absolute;
  left: 30px;
  top: 40px;
  text-align: center;
  text-transform: uppercase;
  background-color: #000;
  z-index: 1;
  padding: 10px 15px;
  border: 5px solid #fff;
}
.date-style-outline .post-date strong {
  font-size: 32px;
  line-height: 28px;
  padding: 0px;
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
}
.date-style-outline .post-date i {
  display: none;
}
.date-style-outline .post-date span {
  font-size: 12px;
  font-weight: 500;
  padding: 0px;
  display: block;
}
.date-style-outline .wt-post-meta a {
  color: #fff;
}
.date-style-outline2 {
  padding: 0px 0px 0px 90px;
  margin-bottom: 60px;
}
.date-style-outline2 .post-date {
  color: #000;
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  text-transform: uppercase;
  background-color: #f1f1f1;
  z-index: 1;
  padding: 10px 15px;
}
.date-style-outline2 .post-date strong {
  font-size: 32px;
  line-height: 28px;
  padding: 0px;
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
}
.date-style-outline2 .post-date i {
  display: none;
}
.date-style-outline2 .post-date span {
  font-size: 12px;
  font-weight: 500;
  padding: 0px;
  display: block;
}
.date-style-outline2 .wt-post-meta a {
  color: #000;
}
.date-style-outline2 .readmore-line a:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  right: -40px;
  top: 10px;
  background-color: #000;
}
@media only screen and (max-width:360px) {
  .date-style-outline {
    padding: 20px;
    padding-top: 100px;
  }
  .date-style-outline .post-date span {
    display: inline;
  }
  .date-style-outline .post-date {
    left: 20px;
    top: 20px;
  }
}
.recent-posts-entry-date .widget-post:last-child {
  border: none;
}
.recent-posts-entry-date .wt-post-date {
  background-color: #0e0e0e;
  width: 50px;
  height: 60px;
  float: left;
}
.recent-posts-entry-date .wt-post-date strong {
  display: block;
  font-size: 24px;
}
.recent-posts-entry-date .wt-post-date span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}
.recent-posts-entry-date .wt-post-info {
  margin-left: 70px;
}
.recent-posts-entry-date .wt-post-info .wt-post-meta ul li {
  font-weight: normal;
  font-size: 12px;
}
.recent-posts-entry-date .wt-post-info .post-title {
  font-weight: normal;
  margin-top: 0px;
  font-size: 14px;
}
.site-header {
  position: relative;
  z-index: 999;
}
.site-header ul,
.site-header ol {
  margin-bottom: 0;
}
.nav-wide .container {
  width: 100%;
}
.nav-wide .container {
  padding: 0px 50px;
}
.nav-full-banner .container {
  max-width: 1440px;
  width: 100%;
  padding: 0px !important;
}
@media only screen and (max-width:991px) {
  .nav-wide .container {
    padding: 0px 70px;
  }
  .nav-full-banner .container {
    padding: 0px 15px !important;
  }
}
@media only screen and (max-width:768px) {
  .nav-wide .container {
    padding: 0px 15px;
  }
}
.extra-nav {
  display: table;
  float: right;
  height: 70px;
  position: relative;
  z-index: 13;
}
.extra-nav .extra-cell {
  display: table-cell;
  padding-left: 10px;
  vertical-align: middle;
}
@media only screen and (max-width:480px) {
  .extra-nav.header-2-nav {
    padding-left: 0px;
  }
  .extra-nav.header-2-nav::after {
    display: none;
  }
  .extra-nav.header-2-nav .extra-cell {
    padding-left: 0px;
  }
  .extra-nav.header-2-nav .site-menu-share {
    font-size: 0px;
  }
  .extra-nav.header-2-nav .site-search-btn {
    font-size: 0px;
    padding: 0px;
  }
}
#header-part.fix-map-header {
  height: 90px;
}
#header-part.fix-map-header .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width:480px) {
  #header-part.fix-map-header {
    height: 160px;
  }
}
.logo-header {
  display: table;
  float: left;
  width: 190px;
  height: 70px;
  vertical-align: middle;
  padding: 0;
  font-size: 36px;
  color: #1bbce8;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  z-index: 11;
}
.logo-header-inner {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}
.logo-header-inner img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width:640px) {
  .header-style-2 .logo-header {
    width: 120px;
  }
}
@media only screen and (max-width:350px) {
  .logo-header {
    width: 120px;
  }
}
.logo-footer {
  margin-bottom: 35px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  z-index: 9;
}
.logo-footer-inner {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}
.logo-footer-inner img {
  max-width: 100%;
  max-height: 100%;
}
.nav-wide .container {
  padding: 0px 15px;
  max-width: 100%;
}
.site-menu-share {
  background: none;
  border: none;
  outline: none;
  color: #000;
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
}
.top-bar {
  padding: 10px 0px;
  font-size: 14px;
}
.social-bx li a {
  color: #ffffff;
  font-size: 12px;
}
.wt-topbar-left {
  float: left;
}
.wt-topbar-right {
  float: right;
}
.wt-topbar-center {
  text-align: center;
}
.wt-topbar-info li {
  display: inline-block;
  margin-right: 10px;
  padding: 12px 0px;
}
.wt-topbar-info li span {
  display: inline-block;
  padding-right: 10px;
}
.wt-topbar-info li i {
  margin-right: 10px;
}
.login-controls li {
  display: inline-block;
  margin-right: 10px;
}
.login-controls li:last-child {
  margin-right: 0px;
}
.login-controls li a {
  color: #00173c;
}
.social-bx li {
  margin-right: 15px;
}
.social-bx li:last-child {
  margin-right: 0px;
}
.login-controls {
  margin-left: 30px;
}
@media only screen and (max-width: 991px) {
  .top-bar .d-flex.justify-content-between {
    display: block !important;
  }
  .login-controls {
    margin-left: 10px;
    text-align: left;
    display: inline-block;
  }
  .login-controls li:last-child {
    display: inline-block;
    margin-right: 0px;
  }
  .social-bx {
    text-align: left;
    display: inline-block !important;
  }
  .social-bx li {
    margin-right: 15px;
    display: inline-block;
  }
}
@media only screen and (max-width: 480px) {
  .header-style-2 .wt-topbar-left {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .header-top-info .wt-topbar-right {
    padding-left: 0px;
    padding-right: 0px;
  }
  .header-top-info .social-bx {
    margin-left: 0px;
  }
}
@media only screen and (max-width:480px) {
  .header-top-info {
    display: none;
  }
}
.main-bar {
  position: relative;
  width: 100%;
  padding: 10px 0px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.main-bar::after,
.main-bar::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 480px) {
  .main-bar {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.header-info {
  float: right;
}
.header-info > ul {
  list-style: none;
  display: table;
}
.header-info > ul li {
  display: table-cell;
  padding: 0px 10px;
  vertical-align: middle;
}
.header-info > ul li .icon-md {
  float: left;
  margin-right: 15px;
}
.header-info > ul li strong {
  display: block;
  font-size: 32px;
  line-height: 32px;
  color: #111;
  font-family: "Teko", sans-serif;
  font-weight: 300;
}
.header-info .icon-content {
  text-align: right;
  padding-top: 10px;
}
.header-botton {
  background-color: #1a1a1a;
}
.header-botton .header-nav .nav {
  float: none;
}
.header-botton .header-nav .nav > li > a {
  padding: 20px 12px;
  color: #fff;
}
.header-botton .extra-nav {
  padding: 13px 0;
}
.header-botton .extra-nav .site-search-btn {
  color: #fff;
  padding: 7px 15px;
}
.header-botton .extra-nav .wt-cart .woo-cart-count {
  border: 2px solid #fff;
  color: #fff;
  min-width: 36px;
  padding: 5px 5px 5px;
}
.header-botton .extra-nav .wt-cart .woo-cart-count::before {
  border-color: #fff;
}
@media only screen and (max-width:991px) {
  .header-botton .navbar-toggler {
    float: left;
    margin: 9px 0;
  }
  .header-botton .navbar-toggler span {
    background-color: #fff;
  }
  .header-botton .header-nav .nav > li > a {
    padding: 12px 12px;
    color: #777;
  }
}
@media only screen and (max-width:640px) {
  .header-middle .logo-header {
    float: none;
    margin: 9px auto;
  }
}
.navbar-toggler {
  border: none;
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: 15px;
  margin-right: -10px;
  padding: 12px 10px;
}
.navbar-toggler .icon-bar {
  background: #111111;
  height: 3px;
  border-radius: 0;
  -webkit-border-radius: 0;
  display: block;
  width: 22px;
}
.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media only screen and (max-width:480px) {
  .navbar-toggler {
    margin-left: 10px;
  }
}
.is-fixed .navbar-toggler {
  margin-top: 14px;
  margin-bottom: 14px;
}
.header-nav {
  position: relative;
  padding: 0px;
  z-index: 10;
}
.header-nav .nav {
  display: flex;
  justify-content: flex-end;
  flex-direction: inherit;
}
.header-nav .nav i {
  font-size: 9px;
  margin-left: 3px;
  margin-top: -3px;
  vertical-align: middle;
  opacity: 0.7;
}
.header-nav .nav > li {
  font-weight: 500;
  position: relative;
  margin: -10px 0;
  padding: 10px 0;
  font-family: "Roboto", sans-serif;
}
.header-nav .nav > li > a {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  color: #4D4DFF;
  font-size: 16px;
  padding: 35px 10px;
  cursor: pointer;
  margin: -10px 0;
}
.header-nav .nav > li > a:hover {
  background-color: transparent;
  color: #212427;
}
.header-nav .nav > li > a:active,
.header-nav .nav > li > a:focus {
  background-color: transparent;
}
.header-nav .nav > li.active > a,
.header-nav .nav > li.current-menu-item > a {
  background-color: transparent;
  color: #0f1221;
}
.header-nav .nav > li:hover > a {
  color: #4D4DFF;
}
.header-nav.nav-animation .nav > li:hover > ul.sub-menu li:hover > a {
  padding-left: 25px;
}
.header-style-1 .header-nav .nav > li:hover > a {
  color: #fff;
  background-color: dodgerblue;
}
.header-nav .nav > li:hover > .sub-menu,
.header-nav .nav > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-nav .nav > li .sub-menu {
  background-color: #ffffff;
  display: block;
  left: 0;
  top: 100%;
  list-style: none;
  margin: 20px 0 0;
  opacity: 0;
  padding: 0px;
  position: absolute;
  visibility: hidden;
  width: 220px;
  z-index: 10;
}
.header-nav .nav > li .sub-menu li {
  border-bottom: 1px solid #f4f4f4;
  position: relative;
  text-transform: none;
}
.header-nav .nav > li .sub-menu li a {
  color: #000;
  display: block;
  font-size: 16px;
  padding: 10px 20px;
}
.header-nav .nav > li .sub-menu li a:hover {
  color: #000;
  text-decoration: none;
}
.header-nav .nav > li .sub-menu li:hover > a {
  color: dodgerblue;
}
.header-nav .nav > li .sub-menu li:last-child {
  border-bottom: 0px;
}
.header-nav .nav > li .sub-menu li .fa {
  color: #363636;
  display: block;
  float: right;
  position: absolute;
  right: 10px;
  top: 2px;
}
.header-nav .nav > li .sub-menu li > .sub-menu {
  left: 220px;
  margin: 0 0 0 20px;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.header-nav .nav > li .sub-menu li:hover > .sub-menu {
  left: 220px;
  margin: 0px;
  opacity: 1;
  top: -1px;
  visibility: visible;
}
.header-nav .nav > li .sub-menu li:hover > .sub-menu:before {
  background-color: transparent;
  bottom: 0px;
  content: "";
  display: block;
  height: 100%;
  left: -6px;
  position: absolute;
  top: 0px;
  width: 6px;
}
.header-nav .nav > li.has-mega-menu {
  position: inherit;
}
.header-nav .nav > li .mega-menu li a > i {
  font-size: 13px;
  margin-right: 5px;
  min-width: 20px;
}
.header-nav .nav > li .mega-menu {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  display: table;
  left: 0px;
  list-style: none;
  opacity: 0;
  position: absolute;
  right: 0px;
  visibility: hidden;
  width: 100%;
  margin-top: 20px;
  z-index: 10;
}
.header-nav .nav > li .mega-menu > li {
  display: table-cell;
  padding: 10px 0;
  position: relative;
  vertical-align: top;
  width: 25%;
  text-transform: none;
}
.header-nav .nav > li .mega-menu > li:after {
  content: "";
  background-color: rgba(204, 204, 204, 0.4);
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  width: 1px;
  height: 100%;
}
.header-nav .nav > li .mega-menu > li:last-child:after {
  display: none;
}
.header-nav .nav > li .mega-menu > li > a {
  color: #555555;
  display: block;
  font-size: 14px;
  padding: 0 20px;
}
.header-nav .nav > li .mega-menu > li ul {
  list-style: none;
  margin: 10px 0px 0px 0px;
  padding: 0px;
}
.header-nav .nav > li .mega-menu > li ul a {
  color: #474747;
  display: block;
  font-size: 13px;
  line-height: 34px;
  padding: 2px 20px;
}
.header-nav .nav > li .mega-menu > li ul a:hover {
  color: #1BBCE8;
  background-color: #F2F2F2;
}
.header-nav .nav > li.menu-item-has-children:before {
  content: "\f078";
  display: block;
  font-family: "FontAwesome";
  right: 4px;
  position: absolute;
  top: 50%;
  color: #999;
  margin-top: -8px;
  font-size: 8px;
}
.header-nav .nav > li.submenu-direction .sub-menu {
  left: auto;
  right: 0;
}
.header-nav .nav > li.submenu-direction .sub-menu li > .sub-menu {
  left: auto;
  right: 220px;
  margin: 0 20px 0 0;
}
.header-nav .nav > li.submenu-direction .sub-menu li:hover > .sub-menu {
  left: auto;
  right: 220px;
  margin: 0 0 0 0;
}
.has-child .submenu-toogle {
  position: absolute;
  right: 4px;
  top: 4px;
  color: #000;
  background-color: transparent;
  z-index: 900;
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
  display: none;
}
.header-nav .has-child li .submenu-toogle {
  opacity: 0.9;
}
.header-nav .has-child.nav-active > a + .submenu-toogle.glyphicon-chevron-right:before {
  content: "\e114";
}
.header-nav .has-child.nav-active > a + .submenu-toogle.glyphicon-plus::before {
  content: "\2212";
}
@media only screen and (max-width:1200px) {
  .header-style-1 .container {
    padding: 0px 50px;
    max-width: 100%;
  }
}
@media only screen and (max-width:777px) {
  .header-style-1 .container {
    padding: 0px 15px;
  }
}
@media only screen and (max-width: 991px) {
  header .logo {
    display: block;
    padding: 4px 0;
  }
  .header-nav .nav i {
    margin-top: 6px;
  }
  .header-nav .nav li.has-child.nav-active > a {
    color: #000;
  }
  .header-style-1 .header-info > ul li strong {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
  }
  .header-style-1 .header-info > ul li .icon-md i {
    font-size: 34px;
  }
  .header-style-1 .header-info > ul li .icon-md {
    margin-right: 0px;
    margin-top: 10px;
  }
}
@media only screen and (max-width:640px) {
  .header-style-1 .header-info {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-header {
    float: none;
  }
  .navbar-toggler {
    display: block;
    margin-top: 14px;
    margin-bottom: 14px;
    float: right;
    outline: none !important;
  }
  .header-nav {
    clear: both;
    margin: 0 -15px;
    border-bottom: 1px solid #E9E9E9;
  }
  .header-nav .nav {
    float: none;
    margin: 0;
    background: #fff;
    display: block;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .header-nav .nav li {
    float: none;
  }
  .header-nav .nav > li .sub-menu > li,
  .header-nav .nav > li .mega-menu > li {
    float: none;
    display: block;
    width: auto;
  }
  .header-nav .nav li .sub-menu > li a {
    padding-left: 30px;
  }
  .header-nav .nav > li > a {
    padding: 12px 15px;
    border-top: 1px solid #E9E9E9;
    color: #777;
  }
  .header-nav .nav > li.active > a,
  .header-nav .nav > li.current-menu-item > a {
    color: #000;
  }
  .header-nav .nav i {
    float: right;
  }
  .header-nav .nav > li > a:hover,
  .header-nav .nav > li > a:active,
  .header-nav .nav > li > a:focus {
    background-color: #f0f0f0;
    text-decoration: none;
  }
  .header-nav .nav > li .mega-menu > li:after {
    display: none;
  }
  .header-nav .nav > li ul,
  .header-nav .nav > li .sub-menu,
  .header-nav .nav > li .mega-menu {
    display: none;
    position: static;
    visibility: visible;
    width: auto;
    background: #f9f9f9;
    transition: none !important;
  }
  .header-nav .nav > li ul.mega-menu ul {
    display: block;
  }
  .header-nav .nav > li .mega-menu > li {
    padding: 0px;
  }
  .header-nav .nav > li ul.mega-menu li:hover ul {
    display: block;
  }
  .header-nav .nav li.has-child {
    position: relative;
  }
  .header-nav .nav li .sub-menu,
  .header-nav .nav li .mega-menu {
    opacity: 1;
    margin: 0 !important;
  }
  .has-child .submenu-toogle {
    display: block;
  }
  .header-nav .has-child.nav-active > a + .submenu-toogle.fa.fa-angle-right::before {
    content: "\f107";
  }
}
.header-nav.nav-animation .nav > li > a {
  position: relative;
}
.header-nav.nav-animation .nav > li > ul.sub-menu li > a {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .is-fixed#header-part .navbar-toggler,
  .header-fixed .navbar-toggler {
    margin: 15px 0;
  }
  .header-nav.nav-animation .nav > li > a:before {
    left: 30px;
  }
}
.header-style-1 .top-bar {
  padding: 0px 0px;
  font-size: 14px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.header-style-1 .top-bar .container {
  position: relative;
}
.header-style-1 .top-bar .wt-topbar-info li {
  display: inline-block;
  margin-right: 0px;
  padding: 12px 15px 12px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.header-style-1 .top-bar .wt-topbar-info li:first-child {
  position: relative;
  z-index: 1;
}
.header-style-1 .top-bar .wt-topbar-info li:first-child:before {
  content: "";
  position: absolute;
  right: 0px;
  top: -2px;
  background-color: dodgerblue;
  z-index: -1;
  width: 6000px;
  bottom: 0px;
}
.header-style-1 .top-bar .wt-topbar-info li span {
  display: inline-block;
  padding-right: 10px;
}
.header-style-1 .top-bar .wt-topbar-info li i {
  margin-right: 10px;
  font-size: 20px;
}
.header-style-1 .header-search {
  text-align: center;
}
.header-style-1 .header-search-icon {
  background-color: #fff;
  display: flex;
  width: 48px;
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0px;
  height: 100%;
  align-content: center;
  flex-wrap: wrap;
}
.header-style-1 .header-search-icon i {
  margin: 0px auto;
}
.header-style-1 .main-bar {
  border-top: 1px solid #ddd;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0px 0px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-style-1 .header-nav .nav > li {
  margin: 0px;
  padding: 0px;
}
.header-style-1 .header-nav .nav > li > a {
  margin: 0px;
  padding: 14px 10px;
}
.header-style-1 .header-nav {
  float: left;
  margin-left: 17%;
}
.header-style-1 .header-nav-request {
  float: right;
}
.header-style-1 .header-nav-request a {
  background-color: dodgerblue;
  display: block;
  color: #fff;
  padding: 12px 20px 13px 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.header-style-1 .header-nav-request a i {
  margin-left: 10px;
}
@media only screen and (max-width:991px) {
  .header-style-1 .header-nav-request {
    float: left;
  }
  .header-style-1 .top-bar .wt-topbar-info li {
    display: none;
  }
  .header-style-1 .top-bar .wt-topbar-info li:first-child {
    display: block;
  }
}
.nav-dark.header-nav .nav > li .sub-menu,
.nav-dark.header-nav .nav > li .mega-menu {
  background-color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.nav-dark.header-nav .nav > li .sub-menu li {
  border-bottom: 1px solid #23282f;
}
.nav-dark.header-nav .nav > li .sub-menu li:last-child {
  border-bottom: 0px;
}
.nav-dark.header-nav .nav > li .sub-menu li a,
.nav-dark.header-nav .nav > li .mega-menu > li ul a,
.nav-dark.header-nav .nav > li .mega-menu > li > a {
  color: #CCCCCC;
}
.nav-dark.header-nav .nav > li .sub-menu li a:hover {
  background-color: #222;
}
.nav-dark.header-nav .nav > li .mega-menu > li ul a:hover {
  background-color: #23282f;
  color: #0f1221;
}
.nav-dark.header-nav .nav > li .mega-menu > li:after {
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 991px) {
  .nav-dark.header-nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  }
  .nav-dark.header-nav .nav {
    background-color: #2D3239;
  }
  .nav-dark.header-nav .nav > li > a {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .nav-dark.header-nav .nav > li > a {
    color: #999;
  }
  .nav-dark.header-nav .nav > li > a:hover,
  .nav-dark.header-nav .nav > li > a:active,
  .nav-dark.header-nav .nav > li > a:focus {
    background-color: #23282F;
    color: #0f1221;
  }
  .nav-dark.header-nav .nav > li ul,
  .nav-dark.header-nav .nav > li .sub-menu,
  .nav-dark.header-nav .nav > li .mega-menu {
    background-color: #23282F;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-sider-drawer-menu .header-nav {
    position: fixed;
    width: 250px !important;
    z-index: 999;
    height: 100vh !important;
    overflow-y: inherit !important;
    right: -250px;
    top: 28%;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    background-color: #fff;
  }
  .mobile-sider-drawer-menu.active .header-nav {
    right: 15px;
  }
  .is-fixed.mobile-sider-drawer-menu .header-nav .nav,
  .header-fixed.mobile-sider-drawer-menu .header-nav .nav {
    height: 100vh !important;
    width: 100%;
  }
  .is-fixed.mobile-sider-drawer-menu .header-nav .nav > li > a,
  .header-fixed.mobile-sider-drawer-menu .header-nav .nav > li > a {
    padding: 12px 15px !important;
  }
  .header-nav .nav > li:hover > .sub-menu,
  .header-nav .nav > li .sub-menu li:hover > .sub-menu {
    animation: none !important;
  }
  .mobile-sider-drawer-menu .icon-bar {
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }
  #mobile-side-drawer {
    min-height: 41px;
  }
  .mobile-sider-drawer-menu.active .icon-bar.icon-bar-first {
    -moz-transform: rotate(45deg) translateX(3px) translateY(2px);
    -webkit-transform: rotate(45deg) translateX(3px) translateY(2px);
    -o-transform: rotate(45deg) translateX(3px) translateY(2px);
    -ms-transform: rotate(45deg) translateX(3px) translateY(2px);
    transform: rotate(45deg) translateX(3px) translateY(2px);
  }
  .mobile-sider-drawer-menu.active .icon-bar.icon-bar-three {
    -moz-transform: rotate(-45deg) translateX(3px) translateY(-2px);
    -webkit-transform: rotate(-45deg) translateX(3px) translateY(-2px);
    -o-transform: rotate(-45deg) translateX(3px) translateY(-2px);
    -ms-transform: rotate(-45deg) translateX(3px) translateY(-2px);
    transform: rotate(-45deg) translateX(3px) translateY(-2px);
  }
  .mobile-sider-drawer-menu .icon-bar.icon-bar-two {
    position: relative;
    right: 0%;
  }
  .mobile-sider-drawer-menu.active .icon-bar.icon-bar-two {
    position: absolute;
    right: 100px;
    opacity: 0;
  }
}
.sticky-no .main-bar {
  position: static !important;
}
.is-fixed .main-bar {
  position: fixed;
}
#page-boxed .main-bar {
  margin-left: auto;
  margin-right: auto;
  max-width: 1760px;
  width: 100%;
  left: auto;
  right: auto;
}
#page-boxed .nav-wide .container {
  padding: 0px 0px;
  max-width: 100%;
}
#page-boxed .header-style-1 .is-fixed.color-fill .main-bar {
  background: #fff;
}
@media only screen and (max-width:1760px) {
  #page-boxed .main-bar {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-style-1 .is-fixed.color-fill .main-bar {
  background: #fff;
}
.header-style-1.header-transparent .main-bar {
  position: fixed;
}
.header-style-1 .header-nav .nav > li > a {
  color: black;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}
.is-fixed.color-fill .header-nav .nav > li {
  margin: 0;
  padding: 0;
}
.is-fixed.color-fill .header-nav .nav > li > a {
  margin: 0;
}
@media only screen and (max-width:767px) {
  .main-bar,
  .is-fixed .main-bar,
  .is-fixed.color-fill .main-bar {
    padding: 0px;
  }
}
.site-bg-primary .header-nav .nav > li > a {
  color: #fff;
}
.site-bg-primary .header-nav .nav > li:hover > a,
.site-bg-primary .header-nav .nav > li.active > a,
.site-bg-primary .header-nav .nav > li.current-menu-item > a {
  color: #1a1a1a;
}
.site-bg-primary .site-search-btn,
.site-bg-primary .wt-cart .woo-cart-total,
.site-bg-primary .wt-cart .woo-cart-count {
  color: #fff;
}
.site-bg-primary .wt-cart .woo-cart-count,
.site-bg-primary .wt-cart .woo-cart-count::before {
  border-color: #fff;
}
.site-bg-primary .navbar-toggler .icon-bar {
  background-color: #fff;
}
@media only screen and (max-width:991px) {
  .site-bg-primary .header-nav .nav > li > a {
    color: #777;
  }
  .site-bg-primary .header-nav .nav > li:hover > a,
  .site-bg-primary .header-nav .nav > li.active > a,
  .site-bg-primary .header-nav .nav > li.current-menu-item > a {
    color: #0f1221;
  }
  .header-nav .nav > li {
    margin: 0;
    padding: 0;
  }
  .header-nav .nav > li > a {
    margin: 0;
    padding: 10px 12px;
  }
  .is-fixed.color-fill .header-nav .nav > li {
    margin: 0;
    padding: 0;
  }
  .header-style-1 .header-nav .nav > li > a {
    color: #0f1221;
  }
}
.wt-bnr-inr {
  height: 20vh;
  background-size: cover;
  background-position: center center;
  display: table;
  width: 100%;
}
.wt-bnr-inr .container {
  display: table;
  height: 100%;
  padding-top: 150px;
}
.wt-bnr-inr-entry {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.wt-bnr-inr-entry .banner-title-outer {
  position: relative;
}
.wt-bnr-inr-entry .banner-title-outer h2 {
  font-size: 58px;
}
@media only screen and (max-width: 991px) {
  .wt-bnr-inr {
    height: 20vh;
    padding: 20px;
  }
  .wt-bnr-inr-entry {
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .wt-bnr-inr-entry .banner-title-name h1,
  .wt-bnr-inr-entry .banner-title-name h2,
  .wt-bnr-inr-entry .banner-title-name h3 {
    font-size: 42px;
    line-height: normal;
  }
}
.banner-inner-row h1,
.banner-inner-row h2,
.banner-inner-row h3,
.banner-inner-row h4,
.banner-inner-row h5,
.banner-inner-row h6 {
  color: #FFF;
}
.owl-carousel .owl-nav {
  margin-top: 40px;
  text-align: center;
}
.owl-carousel .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #0f1221;
  display: block;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #00173c;
}
.owl-btn-top-center .owl-nav,
.owl-btn-top-left .owl-nav,
.owl-btn-top-right .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.owl-btn-top-center .owl-stage-outer,
.owl-btn-top-left .owl-stage-outer,
.owl-btn-top-right .owl-stage-outer {
  padding-top: 40px;
}
.owl-btn-top-center .owl-nav {
  text-align: center;
}
.owl-btn-top-left .owl-nav {
  text-align: left;
}
.owl-btn-top-right .owl-nav {
  text-align: right;
}
.owl-btn-bottom-center .owl-nav {
  text-align: center;
}
.owl-btn-bottom-left .owl-nav {
  text-align: left;
}
.owl-btn-bottom-right .owl-nav {
  text-align: right;
}
.owl-btn-vertical-center .owl-nav {
  margin: 0px;
}
.owl-btn-vertical-center .owl-nav .owl-prev,
.owl-btn-vertical-center .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  margin: -15px 0;
}
.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 0;
}
.owl-btn-vertical-center .owl-nav .owl-next {
  right: 0;
}
.owl-btn-hover .owl-nav {
  opacity: 0;
}
.owl-btn-hover:hover .owl-nav {
  opacity: 1;
}
.owl-carousel .owl-item img {
  transform-style: inherit;
}
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  color: #fff !important;
  padding: 2px 10px !important;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  background-color: #00173c !important;
  line-height: 35px;
}
.owl-carousel .owl-nav .owl-prev {
  margin-right: 5px;
}
.owl-carousel .owl-nav .owl-next {
  margin-left: 5px;
}
.owl-prev:hover,
.owl-prev:active,
.owl-prev:focus,
.owl-next:hover,
.owl-next:active,
.owl-next:focus {
  background-color: dodgerblue;
  border-color: dodgerblue;
  color: #ffffff;
  opacity: 0.9;
}
.dark-next-prev.owl-carousel .owl-next,
.dark-next-prev.owl-carousel .owl-prev {
  border: none;
  width: auto;
  height: auto;
}
.dark-next-prev.owl-carousel .owl-nav i {
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
.dark-next-prev.owl-carousel .owl-next,
.dark-next-prev.owl-carousel .owl-prev {
  position: relative;
  z-index: 1;
  background: none;
}
.dark-next-prev.owl-carousel .owl-next:hover,
.dark-next-prev.owl-carousel .owl-prev:hover {
  background: none;
}
.dark-next-prev.owl-carousel .owl-next:hover i,
.dark-next-prev.owl-carousel .owl-prev:hover i {
  color: #00173c;
}
.light-next-prev.owl-carousel .owl-next,
.light-next-prev.owl-carousel .owl-prev {
  border: none;
  width: auto;
  height: auto;
}
.light-next-prev.owl-carousel .owl-nav i {
  color: #1d2132;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
.light-next-prev.owl-carousel .owl-next,
.light-next-prev.owl-carousel .owl-prev {
  position: relative;
  z-index: 1;
  background: none;
}
.light-next-prev.owl-carousel .owl-next:hover,
.light-next-prev.owl-carousel .owl-prev:hover {
  background: none;
}
.light-next-prev.owl-carousel .owl-next:hover i,
.light-next-prev.owl-carousel .owl-prev:hover i {
  color: #00173c;
}
.owl-dots-bottom-left .owl-dots,
.owl-dots-bottom-right .owl-dots,
.owl-dots-bottom-center .owl-dots {
  bottom: -50px;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
}
.owl-dots-bottom-left .owl-dots {
  text-align: left;
}
.owl-dots-bottom-right .owl-dots {
  text-align: right;
}
.pagination-bx .pagination,
.cvf-universal-pagination .pagination {
  margin: 0;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination > li > a,
.pagination > li > span {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #767676;
  font-weight: 600;
  font-size: 12px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #0f1221;
  border-color: transparent;
  color: #fff;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #0f1221;
  border-color: transparent;
}
.pagination > .previous > a,
.pagination > .next > a {
  font-size: 12px;
}
.footer-large .footer-bottom {
  padding: 20px 0px;
  color: dodgerblue;
  font-size: 13px;
}
.footer-fixed .site-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  border: none;
  z-index: 0;
}
.footer-fixed .page-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media only screen and (max-width:1200px) {
  .footer-fixed .site-footer {
    position: static;
  }
  .footer-fixed .page-wraper {
    padding-bottom: 0 !important;
  }
}
.header-fixed.site-header {
  position: fixed;
  width: 100%;
  border: none;
  z-index: 990;
}
.header-fixed .page-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.site-footer p,
.site-footer li {
  line-height: 26px;
}
.site-footer {
  background-position: center;
  background-size: cover;
}
.site-footer p {
  line-height: 26px;
}
.site-footer .widget ul {
  list-style: none;
  margin-top: 0px;
}
.site-footer .widget_address {
  padding-top: 5px;
}
.footer-dark .footer-bottom .copyrights-text {
  color: #fff;
  font-size: 14px;
}
.footer-dark .footer-bottom .copyrights-nav {
  list-style: none;
  display: block;
  margin-bottom: 0px;
}
.footer-dark .footer-bottom .copyrights-nav li {
  color: white;
  display: inline-block;
  margin-right: 8px;
}
.footer-dark .footer-bottom .copyrights-nav li:first-child {
  margin-left: 0;
}
.footer-dark .footer-bottom .copyrights-nav li:last-child {
  margin-right: 0;
}
.footer-dark .footer-bottom .copyrights-nav li:last-child:after {
  display: none;
}
.footer-dark .footer-bottom .copyrights-nav li:after {
  content: "/";
  position: relative;
  right: -8px;
  color: white;
}
.footer-dark .footer-bottom .copyrights-nav li a {
  color: white;
}
.footer-dark .footer-bottom .copyrights-nav li a:hover,
.footer-dark .footer-bottom .copyrights-nav li a:active,
.footer-dark .footer-bottom .copyrights-nav li a:focus,
.footer-dark .footer-bottom .copyrights-nav li.active a {
  color: #fff;
}
.footer-dark .widget_services ul li a {
  color: #fff;
  font-size: 19px;
}
.footer-bottom {
  padding: 100px 0px;
  color: dodgerblue;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.footer-bottom .copyrights-text {
  color: #fff;
  font-size: 14px;
}
.footer-light .footer-bottom .copyrights-text {
  color: #111;
}
.footer-bottom .copyrights-nav {
  list-style: none;
  display: block;
}
.footer-bottom .copyrights-nav li {
  display: inline-block;
  margin-right: 8px;
}
.footer-bottom .copyrights-nav li:first-child {
  margin-left: 0;
}
.footer-bottom .copyrights-nav li:last-child {
  margin-right: 0;
}
.footer-bottom .copyrights-nav li:last-child:after {
  display: none;
}
.footer-bottom .copyrights-nav li:after {
  content: "/";
  position: relative;
  right: -8px;
}
.footer-bottom .copyrights-nav li a {
  color: #9d9d9d;
  padding-left: 6px;
}
.footer-bottom .copyrights-nav li:first-child a {
  padding-left: 0px;
}
.footer-light .footer-bottom .copyrights-nav li a {
  color: #111;
}
.footer-bottom .copyrights-nav li a:hover,
.footer-bottom .copyrights-nav li a:active,
.footer-bottom .copyrights-nav li a:focus,
.footer-bottom .copyrights-nav li.active a {
  color: white;
}
.footer-light .footer-bottom .copyrights-nav li a:hover,
.footer-light .footer-bottom .copyrights-nav li a:active,
.footer-light .footer-bottom .copyrights-nav li a:focus,
.footer-light .footer-bottom .copyrights-nav li.active a {
  color: white;
}
@media only screen and (max-width:991px) {
  .site-footer {
    padding: 0px;
  }
  .copyright-block {
    padding-top: 5px;
  }
}
@media only screen and (max-width:1025px) {
  .footer-dark .widget_services ul li a {
    color: #fff;
    font-size: 15px;
  }
}
.footer-bottom .container {
  width: 100%;
}
.footer-dark.site-footer {
  border-top: 0px solid #212121;
}
.footer-dark .footer-top {
  background-color: #242424;
  overflow: hidden;
}
.footer-dark .footer-top h1,
.footer-dark .footer-top h2,
.footer-dark .footer-top h3,
.footer-dark .footer-top h4,
.footer-dark .footer-top h5,
.footer-dark .footer-top h6,
.footer-dark .footer-top h1 a,
.footer-dark .footer-top h2 a,
.footer-dark .footer-top h3 a,
.footer-dark .footer-top h4 a,
.footer-dark .footer-top h5 a,
.footer-dark .footer-top h6 a {
  color: dodgerblue;
}
.footer-dark .footer-top .widget-title::before {
  border-color: #fff;
}
.footer-dark .footer-top p,
.footer-dark .footer-top strong,
.footer-dark .footer-top b,
.footer-dark .footer-top {
  color: #fff;
  background-color: #00173c;
  background-size: cover;
}
.footer-dark .site-button {
  background-color: #0f1221;
}
.footer-dark .footer-bottom {
  background-color: #111111;
  border-top: 1px solid #232323;
}
.footer-dark .social-icons li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0px;
  color: #fff;
  background-color: dodgerblue;
  font-size: 16px;
}
.footer-dark .social-icons li a:hover {
  background-color: #fff;
  color: #0f1221;
}
.footer-dark .widget_address li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 14px;
}
.footer-dark .widget_address li i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 18px;
  color: dodgerblue;
}
.footer-light .social-icons li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0px;
  color: #0f1221;
  border: 1px solid #0f1221;
}
.footer-light .social-icons li a:hover {
  background-color: #0f1221;
  color: #fff;
}
.footer-dark .footer-top a:active,
.footer-dark .footer-top a:focus,
.footer-dark .footer-top a:hover {
  color: #0f1221;
}
.footer-dark .footer-top p a {
  color: #fff;
}
.footer-dark .footer-top .widget_newsletter .form-control {
  background-color: #0e0e0e;
  border-color: #2d2d2d;
  color: #fff;
}
.site-footer {
  overflow: hidden;
}
.footer-dark.site-footer {
  border-top: 0px solid #212121;
  overflow: hidden;
}
.footer-light .footer-top {
  background-color: #0f1221;
}
.footer-light .footer-top h1,
.footer-light .footer-top h2,
.footer-light .footer-top h3,
.footer-light .footer-top h4,
.footer-light .footer-top h5,
.footer-light .footer-top h6,
.footer-light .footer-top h1 a,
.footer-light .footer-top h2 a,
.footer-light .footer-top h3 a,
.footer-light .footer-top h4 a,
.footer-light .footer-top h5 a,
.footer-light .footer-top h6 a {
  color: #000;
}
.footer-light .footer-top .widget-title::before {
  border-color: #000;
}
.footer-light .footer-top p,
.footer-light .footer-top strong,
.footer-light .footer-top b,
.footer-light .footer-top {
  color: #000;
}
.footer-light .footer-top {
  background-color: #fff6ef;
}
.footer-light .footer-bottom {
  background-color: #dfba9f;
}
.footer-light .widget_address li {
  margin-bottom: 12px;
  color: #000;
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.footer-light .widget_address li:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.footer-light .widget_address li i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 18px;
}
.footer-light .widget_address_outer .social-icons li {
  padding-right: 10px;
}
.footer-top {
  padding: 0px;
}
.footer-h-left {
  padding: 50px 40px 40px 0px;
  position: relative;
  z-index: 1;
}
.footer-h-left:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  width: 6000px;
  height: 150%;
}
.footer-h-right {
  padding-top: 80px;
}
.footer-wide .container-fluid {
  width: 100%;
}
@media only screen and (max-width:1800px) {
  .footer-wide .container-fluid {
    width: 100%;
  }
  .footer-h-right {
    padding-top: 80px;
    margin-left: 350px;
    width: 1000px;
  }
  .widget_about span {
    font-size: 20px;
  }
}
@media only screen and (max-width:1025px) {
  .footer-h-left:before {
    display: none;
  }
  .footer-h-left {
    padding: 50px 0px 0px 0px;
  }
  .footer-h-right {
    padding-top: 80px;
    margin-left: 120px;
    width: 1000px;
  }
  .widget_about span {
    font-size: 16px;
  }
}
@media only screen and (max-width:800px) {
  .footer-wide .container-fluid {
    padding: 0px 15px;
  }
  .widget {
    width: 204px;
  }
  .footer-h-right {
    padding-top: 76px;
    margin-left: -90px;
    margin-bottom: 60px;
    width: 525px;
  }
  @keyframes fadeInUpWelcome {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  #fadeInUpWelcome {
    visibility: visible;
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
    animation-duration: 2s;
    animation-name: fadeInUpWelcome;
  }
}
@media only screen and (max-width: 430px) {
  .footer-h-right {
    padding-top: 80px;
    margin-left: 25px;
    margin-top: -40px;
    margin-bottom: 10px;
  }
  .footer-h-left {
    margin-left: 15px;
    width: 100%;
  }
  .widget {
    width: 240px;
  }
  .site-footer {
    height: 1000px;
  }
  .widget.widget_services {
    margin-left: 50px;
  }
  .widget-title {
    text-align: start;
  }
  .widget_about {
    margin-left: 52px;
  }
}
@media only screen and (max-width: 380px) {
  .site-footer {
    max-height: 1100px;
  }
}
.footer-payments li {
  display: inline-block;
  padding-top: 5px;
}
.footer-payments li:last-child a {
  margin-right: 0px;
}
.footer-payments li a {
  font-size: 36px;
  margin-right: 10px;
}
.footer-payments li a:hover {
  color: #00173c;
}
.footer-bottom ul {
  margin: 0;
}
@media only screen and (max-width:991px) {
  footer .container {
    width: 100%;
  }
  .col-md-3.col-sm-6.footer-col-4:nth-child(3) {
    clear: both;
  }
  .wt-footer-bot-left,
  .wt-footer-bot-right {
    float: none;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .wt-footer-bot-right .copyrights-nav {
    float: none !important;
  }
  .footer-bottom .d-flex {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .footer-clear {
    display: block !important;
    clear: both;
  }
  #footer .footer-4-col {
    width: 100%;
  }
  .footer-bottom [class*=clo-] {
    width: 100%;
  }
}
.widget_address li {
  margin-bottom: 20px;
  color: #d7d7d7;
  position: relative;
  padding-left: 20px;
}
.widget.widget_about p {
  line-height: inherit;
  margin-bottom: 15px;
  font-size: 14px;
}
.footer-dark.footer-style2 .footer-top {
  background-color: #00173c;
}
.footer-dark.footer-style2 .footer-h-left::before {
  display: none;
}
.footer-dark.footer-style2 .footer-bottom {
  background-color: #001029;
  border-top: 1px solid #001029;
}
.footer-dark.footer-style2 .footer-bottom .copyrights-nav li a {
  color: #fff;
}
.footer-dark.footer-style2 .footer-bottom .copyrights-nav li a:hover {
  color: dodgerblue;
}
.footer-dark.footer-style2 .footer-bottom .copyrights-nav li::after {
  color: #fff;
}
.footer-dark.footer-style2 .footer-top .widget_newsletter .form-control {
  background-color: #fff;
  border-color: #fff;
}
button.scroltop {
  height: 40px;
  width: 40px;
  background: #1d1b18;
  border: none;
  position: fixed;
  right: 15px;
  bottom: 15px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index: 999;
  color: #fff;
}
button.scroltop span {
  display: block;
  font-size: 24px;
  line-height: 24px;
}
.string {
  position: relative;
}
#btn-vibrate {
  animation: vibrate 2s linear 0s infinite;
  -moz-animation: vibrate 2s linear 0s infinite;
  -webkit-animation: vibrate 2s linear 0s infinite;
  -o-animation: vibrate 2s linear 0s infinite;
}
@keyframes vibrate {
  0% {
    top: 0px;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 0px;
  }
  75% {
    top: 3px;
  }
  100% {
    top: 0px;
  }
}
@-moz-keyframes vibrate {
  0% {
    top: 0px;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 0px;
  }
  75% {
    top: 3px;
  }
  100% {
    top: 0px;
  }
}
@-webkit-keyframes vibrate {
  0% {
    top: 0px;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 0px;
  }
  75% {
    top: 3px;
  }
  100% {
    top: 0px;
  }
}
@-o-keyframes vibrate {
  0% {
    top: 0px;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 0px;
  }
  75% {
    top: 3px;
  }
  100% {
    top: 0px;
  }
}
@media only screen and (max-width:480px) {
  button.scroltop {
    font-size: 7px;
    height: 30px;
    width: 30px;
    line-height: 16px;
  }
  button.scroltop span {
    font-size: 10px;
    line-height: 10px;
  }
}
#bg {
  background-attachment: fixed;
  background-size: cover;
}
.page-wraper {
  background: #fff;
}
#page-boxed {
  margin-left: auto;
  margin-right: auto;
  max-width: 1760px;
  width: 100%;
}
.page-content {
  position: relative;
}
.section-full {
  position: relative;
}
.section-head {
  margin-bottom: 60px;
}
.section-head h1.left,
.section-head h2.left,
.section-head h3.left,
.section-head h4.left,
.section-head h5.left,
.section-head h6.left {
  width: auto;
}
.section-head h1.right,
.section-head h2.right,
.section-head h3.right,
.section-head h4.right,
.section-head h5.right,
.section-head h6.right {
  width: auto;
}
.section-head h1.center,
.section-head h2.center,
.section-head h3.center,
.section-head h4.center,
.section-head h5.center,
.section-head h6.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head.no-margin {
  margin-bottom: 0;
}
.section-head h1,
.section-head h2,
.section-head h3 {
  margin-top: 0;
}
.title-small {
  display: block;
  color: #7a959d;
  margin-bottom: 15px;
}
.section-head p {
  padding-top: 20px;
}
.section-head p:last-child {
  margin-bottom: 0;
}
.text-center.section-head p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.text-white {
  color: #FFF;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
  color: #FFF;
}
@media only screen and (max-width:1024px) {
  .section-full {
    background-attachment: scroll !important;
  }
}
@media only screen and (max-width:540px) {
  .section-head h1,
  .section-head h2,
  .section-head h3,
  h1,
  h2,
  h3 {
    font-size: 32px;
    text-align: center;
  }
}
ul.contact-info li {
  padding: 0 0 15px 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  line-height: 20px;
}
ul.contact-info li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
ul.contact-info li h4 ul.contact-info li h5,
ul.contact-info li h6 {
  margin: 0 0 10px;
}
ul.contact-info li p {
  line-height: 20px;
  margin: 0;
}
ul.contact-info li .fa {
  position: absolute;
  left: 0;
  top: 2px;
  color: #3396d1;
  font-size: 16px;
}
.sticky {
  clear: both;
}
.gallery-caption {
  clear: both;
}
.bypostauthor {
  clear: both;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.max-w100 {
  max-width: 100px;
}
.max-w200 {
  max-width: 200px;
}
.max-w300 {
  max-width: 300px;
}
.max-w400 {
  max-width: 400px;
}
.max-w500 {
  max-width: 500px;
}
.max-w600 {
  max-width: 600px;
}
.max-w700 {
  max-width: 700px;
}
.max-w800 {
  max-width: 800px;
}
.max-w900 {
  max-width: 900px;
}
.max-w1000 {
  max-width: 1000px;
}
.wt-product-box .price {
  margin-bottom: 10px;
}
.wt-product-box .price del {
  font-size: 16px;
  color: #999999;
  margin: 4px 4px;
  font-weight: 600;
}
.wt-product-box .price ins {
  font-size: 16px;
  color: #111111;
  text-decoration: none;
  margin: 4px 4px;
  font-weight: 600;
}
.wt-product-box .rating-bx {
  padding-top: 10px;
  color: #ffa000;
}
.comment-reply-title {
  margin-top: 0;
}
.comment-form [class*=comment-form] {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .comment-form [class*=comment-form] {
    width: 100%;
  }
}
.comment-form [class*=-form-author],
.comment-form [class*=-form-email] {
  float: left;
}
.comment-form [class*=-form-comment] {
  width: 100%;
}
.comment-form label {
  display: block;
}
.star-Rating-input i {
  font-size: 18px;
}
.comment-form [class*=comment-form] input,
.comment-form [class*=comment-form] textarea {
  border: 1px solid #CCC;
  padding: 8px 10px;
  width: 100%;
}
.comment-form {
  margin: 0px -15px;
}
.comment-form [class*=comment-form] {
  margin-bottom: 20px;
  padding: 0px 15px;
}
.comment-form .form-submit {
  padding: 0px 15px;
}
.comment-form .form-submit input:active,
.comment-form .form-submit input:focus,
.comment-form .form-submit input:hover {
  background: #037a85;
}
@media only screen and (max-width:768px) {
  .wt-media > img,
  .wt-media a > img {
    width: 100%;
  }
}
.btn,
.panel,
.form-control,
.img-thumbnail,
.panel-head ing,
.dropdown-menu,
.panel-group .panel,
.nav-tabs > li > a,
.modal-content,
.navbar-toggler,
.nav-pills > li > a,
.pager li > a,
.pager li > span,
.well,
.alert,
.list-group-item:first-child,
.list-group-item:last-child,
.input-group-addon,
.btn-group-divides > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
.btn-group-divides > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child),
.wt-booking-form .wt-extra-services li .wt-icon-box-lg,
.wt-booking-form .wt-extra-services li.active .wt-icon-box-lg:after,
.searchform input[type=text],
.searchform input[type=submit],
ol.comment-list li.comment .comment-body {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
a,
.btn,
.form-control,
.overlay-bx,
.overlay-icon li a i,
.wt-icon-box-xld,
.wt-icon-box-xl,
.wt-icon-box-lg,
.wt-icon-box-md,
.wt-icon-box-sm,
.wt-icon-box-xs,
.share-social-bx li,
.indicator,
.profile-menu ul li,
.staff-member .member-done,
.how-wt-work .wt-box .shadow-bx img,
.how-wt-work .wt-box .step-no-bx,
.wt-info-has,
.wt-we-find .wt-box,
.navbar-toggler,
.logo-header,
.header-nav .nav > li > a,
.extra-nav,
.acod-head .indicator .fa {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.animate-slow {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.animate-mid {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.animate-fast {
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.clearfix::after,
.filter-wrap::after,
.filter-wrap::after,
.wt-icon-box-wraper::after,
ol.commentlist li::after {
  content: "";
  display: table;
  clear: both;
}
.product-block p {
  margin-bottom: 0px;
}
.bg-center {
  background-position: center;
}
.bg-top-left {
  background-position: top left;
}
.bg-top-right {
  background-position: top right;
}
.bg-top-center {
  background-position: top center;
}
.bg-bottom-left {
  background-position: bottom left;
}
.bg-bottom-right {
  background-position: bottom right;
}
.bg-bottom-center {
  background-position: bottom center;
}
.bg-left-center {
  background-position: left;
}
.bg-right-center {
  background-position: left;
}
.bg-auto {
  background-size: auto;
}
.bg-contain {
  background-size: contain;
}
.bg-cover {
  background-size: cover;
}
.bg-full-width {
  background-size: 100% auto;
}
.bg-full-height {
  background-size: auto 100%;
}
.bg-repeat {
  background-repeat: repeat;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.bg-repeat-x {
  background-repeat: repeat-x;
}
.bg-repeat-y {
  background-repeat: repeat-y;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-scroll {
  background-attachment: scroll;
}
@media only screen and (max-width:991px) {
  .v-text {
    position: inherit;
    right: auto;
    bottom: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media only screen and (max-width:991px) {
  .section-full.p-tb90 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width:767px) {
  .section-full.p-tb80 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.overlay-bx-2 {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.overlay-bx-2:hover {
  opacity: 0.9;
  bottom: 0px;
}
.home-client-carousel.owl-btn-center-v.owl-carousel .owl-nav {
  position: absolute;
  margin-top: 0px;
  top: -10px;
  left: -80px;
}
.home-client-carousel.owl-btn-center-v.owl-carousel .owl-nav .owl-prev {
  left: 40px;
  position: relative;
  background-color: #1a1a1a;
  margin: 0px;
}
.home-client-carousel.owl-btn-center-v.owl-carousel .owl-nav .owl-next {
  left: 5px;
  position: relative;
  top: 40px;
  background-color: #1a1a1a;
  margin: 0px;
}
@media only screen and (max-width:800px) {
  .home-client-carousel.owl-btn-center-v.owl-carousel .owl-nav {
    left: auto;
    right: 5px;
    top: auto;
    bottom: -47px;
  }
  .home-client-carousel.owl-btn-center-v.owl-carousel .owl-nav .owl-prev {
    left: 0px;
  }
  .home-client-carousel.owl-btn-center-v.owl-carousel .owl-nav .owl-next {
    left: 5px;
    top: 0px;
  }
}
.home-contact-section {
  margin-left: 15px;
}
.contact-one {
  position: relative;
}
.home-contact-section .form-control::-webkit-input-placeholder,
.contact-one .form-control::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
}
.home-contact-section .form-control::-moz-placeholder,
.contact-one .form-control::-moz-placeholder {
  color: #000;
  font-size: 14px;
}
.home-contact-section .form-control:-ms-input-placeholder,
.contact-one .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 14px;
}
.home-contact-section .form-control:-moz-placeholder .contact-one .form-control:-moz-placeholder {
  color: #000;
  font-size: 14px;
}
.contact-right-section {
  position: relative;
  z-index: 1;
  margin-left: 40px;
  margin-bottom: 70px;
}
.contact-right-section:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: -40px;
  bottom: -40px;
  width: 100%;
  height: 90%;
  border: 12px solid #00173c;
}
@media only screen and (max-width:991px) {
  .home-contact-section {
    margin-left: 0px;
  }
}
@media only screen and (max-width:767px) {
  .contact-right-section {
    margin-bottom: 40px;
  }
}
.contact-info {
  position: relative;
  z-index: 1;
}
.contact-info .icon-content p {
  word-break: normal;
  margin-bottom: 5px;
}
.contact-info-section {
  padding: 30px;
  background-color: #00173c;
  border: 8px solid #fff;
  color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width:576px) {
  .contact-one {
    padding: 0px;
    border-radius: 0px;
    box-shadow: none !important;
  }
  .contact-info-section h3 {
    font-size: 28px;
  }
}
.button-model button {
  min-width: 200px;
  text-align: center !important;
  text-transform: uppercase;
}
.modal-footer button {
  min-width: inherit;
}
.button-model button.close {
  min-width: inherit;
}
@media only screen and (max-width:640px) {
  h2.font-45 {
    font-size: 32px;
    line-height: 38px;
  }
  h2 a.font-45 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media only screen and (max-width:360px) {
  h2.font-45 {
    font-size: 22px;
    line-height: 28px;
  }
  h2 a.font-45 {
    font-size: 22px;
    line-height: 28px;
  }
  .tp-caption {
    margin-top: 10px;
  }
}
@media only screen and (max-width:540px) {
  .is-fixed .navbar-toggler {
    margin-bottom: 0px;
  }
}
#welcome_wrapper .metis.tparrows {
  background-color: dodgerblue;
}
#welcome_wrapper .metis.tparrows::before {
  color: #fff;
}
.rev-title-left-border {
  border-left: 8px solid dodgerblue;
}
@media only screen and (max-width:480px) {
  #welcome_two .tp-bgimg {
    background-position: center right -480px !important;
  }
}
.light-number {
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.slider-block {
  border: 16px solid #fff;
}
.slider-block-2 {
  border: 16px solid #00173c;
}
.slider-outer {
  height: 512px;
  padding-top: 65px;
  position: relative;
}
.slider-social-info {
  width: 40px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.slider-social-info ul {
  margin-bottom: 0px;
}
.slider-social-info ul {
  position: relative;
}
.slider-social-info ul:after,
.slider-social-info ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background-color: #00173c;
  left: 20px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.slider-social-info ul:before {
  top: -60px;
}
.slider-social-info ul li {
  display: block;
}
.slider-social-info ul li a {
  color: #111;
  display: block;
  text-align: center;
  height: 30px;
  line-height: 30px;
}
.slider-social-info ul li a:hover {
  color: #00173c;
}
.social-mobile-show {
  display: none;
}
.social-mobile-show .slider-social-info {
  width: auto;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  top: auto;
}
.social-mobile-show .slider-social-info ul li {
  display: inline-block;
}
.social-mobile-show .slider-social-info ul:after,
.social-mobile-show .slider-social-info ul:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #00173c;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.social-mobile-show .slider-social-info ul:before {
  left: -60px;
}
.social-mobile-show .slider-social-info ul:after {
  right: -60px;
  left: auto;
  top: 15px;
}
.social-mobile-show .slider-social-info ul:before {
  top: 15px;
}
.social-mobile-show .slider-social-info ul li a {
  width: 24px;
}
@media only screen and (max-width:777px) {
  .social-mobile-hide {
    display: none;
  }
  .social-mobile-show {
    display: block;
  }
}
.slider-appointment-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
}
.slider-appointment-btn a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100vh;
  text-align: center;
  -webkit-transform: rotate(90deg) translateX(-50%) translateY(-50%);
  -ms-transform: rotate(90deg) translateX(-50%) translateY(-50%);
  transform: rotate(90deg) translateX(-50%) translateY(-50%);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
.slider-appointment-btn a span {
  position: relative;
  display: inline-block;
}
.slider-appointment-btn a span:after,
.slider-appointment-btn a span:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #00173c;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.slider-appointment-btn a span:before {
  top: 0px;
  left: 0px;
}
.slider-appointment-btn a span:after {
  bottom: 0px;
  right: 0px;
}
.slider-appointment-btn a:hover span:before {
  width: 100%;
}
.slider-appointment-btn a:hover span:after {
  width: 100%;
}
@media only screen and (max-width:777px) {
  .slider-appointment-btn {
    width: 100%;
  }
  .slider-appointment-btn a {
    top: auto;
    bottom: 15px;
    left: 15px;
    transform: none;
    text-align: left;
    min-width: auto;
  }
}
.spin-circle {
  -webkit-animation: fa-spin 25s infinite linear;
  animation: fa-spin 25s infinite linear;
}
@-webkit-keyframes spin-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.play-now .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background-color: dodgerblue;
  color: #fff;
  z-index: 1;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}
.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 65px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgb(255, 94, 21);
  -moz-box-shadow: 0 0 0 0 rgb(255, 94, 21);
  -ms-box-shadow: 0 0 0 0 rgb(255, 94, 21);
  -o-box-shadow: 0 0 0 0 rgb(255, 94, 21);
  box-shadow: 0 0 0 0 rgb(255, 94, 21);
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}
.play-now .ripple:before {
  -webkit-animation-delay: .9s;
  -moz-animation-delay: .9s;
  -ms-animation-delay: .9s;
  -o-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
}
.play-now .ripple:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  -ms-animation-delay: .6s;
  -o-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute;
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.slider-play-icon .play-now {
  right: 30%;
  left: auto;
  top: 45%;
}
@media only screen and (max-width:640px) {
  .play-now .ripple,
  .play-now .ripple:before,
  .play-now .ripple:after {
    width: 30px !important;
    height: 30px !important;
  }
  @-webkit-keyframes ripple {
    70% {
      box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  @keyframes ripple {
    70% {
      box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
}
.video-counter-section {
  position: relative;
  margin-bottom: 40px;
}
.video-counter2-section {
  padding-top: 40px;
}
.video-section-outer {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
.video-section2-outer {
  padding-top: 50px;
  padding-bottom: 70px;
}
.video-section {
  position: relative;
  z-index: 1;
  display: flex;
}
.video-icon-left span a {
  padding: 10px;
  border: 2px solid #fff;
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  position: relative;
}
.video-icon-left span a i {
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.video-icon-title {
  align-content: center;
  flex-wrap: wrap;
  display: flex;
  border-left: 6px solid #fff;
  padding-left: 20px;
  margin-left: 30px;
}
.how-it-work {
  position: relative;
}
.video-btn-position {
  height: 130px;
  background-color: #00173c;
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 15px;
  left: 15px;
}
.video-section img {
  width: 100%;
}
.want-to-talk-top {
  padding: 80px 0px 260px;
}
.video-section-dark {
  margin-bottom: 30px;
}
.video-section-dark img {
  width: 100%;
}
@media only screen and (max-width:991px) {
  .video-section-dark {
    margin-bottom: 0px;
  }
  .video-section-outer {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width:767px) {
  .video-btn-position {
    right: 15px;
    bottom: 15px;
  }
  .video-section-outer {
    margin-top: 60px;
  }
}
@media only screen and (max-width:480px) {
  .video-btn-position {
    width: 100px;
    height: 100px;
  }
}
.video-section-info {
  padding: 30px;
  position: relative;
  bottom: -70px;
  margin-top: -70px;
  border-radius: 16px;
}
.video-section-blockquote {
  border-left: 4px solid dodgerblue;
  position: relative;
  padding-left: 80px;
}
.video-section-blockquote .fa-quote-left {
  position: absolute;
  left: 10px;
  top: 0px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 60px;
}
.video-section-blockquote .q-author-detail {
  font-size: 30px;
  line-height: normal;
}
.video-section-blockquote .q-author-name {
  font-size: 24px;
}
.video-section-blockquote2 {
  border-left: 4px solid dodgerblue;
  position: relative;
  padding-left: 80px;
}
.video-section-blockquote2 .fa-quote-left {
  position: absolute;
  left: 10px;
  top: 0px;
  color: dodgerblue;
  font-size: 60px;
}
.video-section-blockquote2 .q-author-detail {
  font-size: 30px;
  line-height: normal;
}
.video-section-blockquote2 .q-author-name {
  font-size: 24px;
}
@media only screen and (max-width:991px) {
  .video-section-info {
    padding: 30px;
    position: relative;
    bottom: 0px;
    margin-top: 0px;
  }
  .counter-section-outer-bottom {
    padding-bottom: 30px;
  }
  .video-counter-section {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:540px) {
  .video-section-blockquote .q-author-detail {
    font-size: 26px;
  }
  .video-section-blockquote {
    padding-left: 20px;
  }
  .video-section-blockquote .fa-quote-left {
    position: relative;
    left: auto;
    top: auto;
    display: block;
  }
}
.video3-section-blockquote {
  border-left: 4px solid dodgerblue;
  position: relative;
  padding-left: 80px;
}
.video3-section-blockquote .fa-quote-left {
  position: absolute;
  left: 10px;
  top: 0px;
  color: dodgerblue;
  font-size: 60px;
  opacity: 0.3;
}
.video3-section-blockquote .q-author-detail {
  font-size: 30px;
  line-height: 30px;
}
.video3-section-blockquote .q-author-name {
  font-size: 24px;
}
.video2-section-info {
  padding: 54px 30px;
  position: relative;
  bottom: -70px;
  margin-top: -70px;
}
.site-btn-effect {
  color: rgba(0, 0, 0, 0) !important;
  transition: all .3s ease !important;
}
.site-btn-effect {
  text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
}
.site-btn-effect:hover {
  text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}
.filter-options {
  position: relative;
}
.filter-option-more {
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.filter-option-title i.fa {
  transition: .2s;
  transform: rotate(0deg);
  padding-left: 10px;
}
.filter-options.active .filter-option-more {
  display: block;
}
.filter-options.active .filter-option-title i.fa {
  transform: rotate(180deg);
  padding-left: 0px;
  padding-right: 10px;
}
.site-button-link {
  position: relative;
}
.site-button-link:before {
  position: absolute;
  content: "\f178";
  font-family: "FontAwesome";
  left: 50%;
  top: 0px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
}
.site-button-link:hover:before {
  left: 110%;
  opacity: 1;
}
.banner-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f1221;
}
.banner-wrap {
  position: relative;
}
.banner-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.banner-content-area {
  padding: 250px 0 200px;
}
.banner-wrap .banner-textrow {
  color: #fff;
  text-align: center;
  padding: 0 0 50px;
}
.banner-wrap .banner-textrow strong {
  font-size: 50px;
  color: #fff;
  display: block;
  font-weight: 600;
  padding-bottom: 15px;
}
.banner-wrap .banner-textrow span {
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (max-width:768px) {
  .banner-wrap .banner-textrow strong {
    font-size: 22px;
  }
  .banner-wrap .banner-textrow span {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .banner-content-area {
    padding: 130px 0px 60px;
  }
  .banner-wrap .banner-textrow {
    padding: 0 0 0px;
  }
}
.shadow-line {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 10px;
}
.map-container-home-2 {
  position: relative;
}
.map-container-home-2 #map-container {
  height: 600px;
}
.map-apsolute-search .site-button-secondry {
  width: 100%;
}
.map-apsolute-search {
  position: relative;
  bottom: 130px;
  z-index: 991;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgb(15, 18, 33);
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: -65px;
}
.map-apsolute-search .form-group {
  margin-bottom: 0px;
}
@media only screen and (max-width:991px) {
  .map-apsolute-search {
    position: inherit;
    left: inherit;
    bottom: auto;
    transform: none;
    margin-top: 80px;
    margin-bottom: 0px;
  }
  .map-apsolute-search .form-group {
    margin-bottom: 10px;
  }
  .map-apsolute-search [class*=col-]:last-child .form-group {
    margin-bottom: 0px;
  }
  .map-apsolute-search [class*=col-]:nth-child(3) .form-group {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:767px) {
  .map-apsolute-search [class*=col-]:nth-child(3) .form-group {
    margin-bottom: 10px;
  }
}
.main-categories-box-outer {
  display: block;
}
.main-categories-box .main-categories-icon {
  display: block;
  border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.main-categories-box .main-categories-icon img {
  height: 45px;
  width: auto;
  display: inline;
}
.main-categories-slider-outer {
  position: relative;
  margin-bottom: 60px;
}
.main-categories-slider {
  max-width: 720px;
  margin: auto;
  padding: 20px 25px;
  width: 100%;
  text-align: center;
  background-color: #fff;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -60px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.main-categories-slider ul {
  padding: 0px;
  margin: 0px;
}
.main-categories-slider ul li {
  display: inline-block;
}
.main-categories-slider .owl-prev {
  left: -20px !important;
}
.main-categories-slider .owl-next {
  right: -20px !important;
}
.main-categories-slider .owl-prev,
.main-categories-slider .owl-next {
  width: 30px;
  height: 30px;
  border: none;
  line-height: 28px;
}
.main-categories-box-outer span {
  display: block;
  margin-top: 5px;
}
@media only screen and (max-width:991px) {
  .main-categories-slider-outer {
    margin-top: 80px;
    margin-bottom: 0px;
  }
  .main-categories-slider {
    position: inherit;
    z-index: 1;
    left: inherit;
    bottom: inherit;
    transform: none;
  }
}
@media only screen and (max-width:767px) {
  .main-categories-slider-outer {
    margin-top: 30px;
  }
  .map-apsolute-search {
    margin: 30px auto 0px;
  }
}
.slider-serach-bar {
  padding-top: 80px;
}
.slider-apsolute-search .site-button-secondry {
  width: 100%;
}
.slider-apsolute-search {
  background-color: rgb(15, 18, 33);
  padding: 10px;
  border-radius: 6px;
}
.slider-apsolute-search .form-group {
  margin-bottom: 0px;
}
@media only screen and (max-width:991px) {
  .slider-apsolute-search {
    position: inherit;
    left: inherit;
    bottom: auto;
    transform: none;
    margin-bottom: 0px;
  }
  .slider-apsolute-search .form-group {
    margin-bottom: 10px;
  }
  .slider-apsolute-search [class*=col-]:last-child .form-group {
    margin-bottom: 0px;
  }
  .slider-apsolute-search [class*=col-]:nth-child(3) .form-group {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:767px) {
  .slider-apsolute-search [class*=col-]:nth-child(3) .form-group {
    margin-bottom: 10px;
  }
  .slider-serach-bar {
    padding-top: 0px;
  }
  .slider-apsolute-search {
    margin: 30px auto 0px;
  }
}
.dropdown-menu {
  font-size: 13px;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select .dropdown-toggle {
  background-color: #fff;
  height: 50px;
  font-size: 13px;
  color: #999;
}
@media only screen and (max-width:991px) {
  .bootstrap-select .dropdown-toggle {
    height: 40px;
  }
}
.selectpicker + .dropdown-toggle {
  position: relative;
}
.selectpicker + .dropdown-toggle:after {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 8px;
  width: 0px;
  height: 0px;
  content: "";
  border-top: 6px solid #b6b6b6;
  border-right: 6px solid transparent;
  border-bottom: 0;
  border-left: 6px solid transparent;
}
.bootstrap-select .dropdown-toggle:active,
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select .dropdown-toggle:hover {
  background-color: #fff !important;
  border: 1px solid #e1e6eb !important;
  box-shadow: none !important;
  outline: 0px !important;
}
.bootstrap-select:active,
.bootstrap-select:focus {
  border: 0px !important;
  box-shadow: none !important;
  outline: 0px !important;
}
.bootstrap-select.open {
  box-shadow: none !important;
  outline: 0px !important;
}
.bootstrap-select.open .dropdown-toggle {
  box-shadow: none !important;
  outline: 0px !important;
  background: #fff;
  border: 1px solid #e1e6eb;
}
.bootstrap-select div.dropdown-menu {
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  box-shadow: none;
  margin-top: -1px;
  padding: 0;
  font-size: 13px;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.1);
}
.bootstrap-select div.dropdown-menu ul li {
  padding: 0;
}
.bootstrap-select div.dropdown-menu ul li a {
  padding: 10px 15px;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #00173c;
}
.bootstrap-select div.dropdown-menu ul li a:hover {
  background-color: #ededed;
}
.bootstrap-select div.dropdown-menu ul li a img {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  margin-right: 5px;
}
.bootstrap-select .bs-searchbox .form-control {
  padding: 5px 10px;
  height: 30px;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  width: 12px;
  height: 12px;
  border: none;
  margin-top: -6px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bootstrap-select.btn-group.open .dropdown-toggle .caret {
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.bootstrap-select.btn-group .dropdown-toggle .caret:after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  height: 12px;
  line-height: 12px;
}
.featured-cat-box {
  height: 300px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.cat-large {
  height: 630px;
}
.cat-large:after,
.cat-large:before {
  clear: both;
  content: "";
  position: absolute;
}
@media only screen and (max-width:991px) {
  .cat-large {
    height: 300px;
  }
}
.featured-cat-text {
  position: absolute;
  color: #fff;
  padding: 0px 30px 30px;
  z-index: 1;
  bottom: 0px;
  width: 100%;
}
.featured-cat-text .f-cat-icon {
  font-size: 50px;
  line-height: 56px;
  text-align: left;
  display: block;
}
.featured-cat-name-outer {
  padding-top: 20px;
}
.featured-cat-name {
  color: #fff;
}
.featured-cat-user i {
  margin-right: 5px;
}
.featured-cat-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: red;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.74) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#bd000000", GradientType=0);
}
.featured-cat-linking {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.featured_cat_box2_outer {
  list-style: none;
}
.featured-cat-box2 {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  display: table;
  width: 100%;
}
.featured-cat-box2,
.featured-cat-name2,
.featured-cat-text2 i,
.featured-cat-text2 i.fade-icon-right,
.featured-cat-overlay2 {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.featured-cat-text2 {
  display: table-cell;
  padding: 20px 30px;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.featured-cat-name2 {
  display: block;
}
.featured-cat-text2 i {
  font-size: 60px;
  line-height: 60px;
  color: #0f1221;
}
.featured-cat-text2 i.fade-icon-right {
  font-size: 120px;
  color: rgba(241, 241, 241, 0.5);
  position: absolute;
  right: -10%;
  top: 5%;
}
.featured-cat-overlay2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 255);
}
.featured-cat-box2:hover .featured-cat-overlay2 {
  background-color: rgba(0, 0, 0, 0.5);
}
.featured-cat-box2:hover .featured-cat-name2,
.featured-cat-box2:hover i,
.featured-cat-box2:hover p {
  color: #fff;
}
.featured-cat-box2:hover i.fade-icon-right {
  color: rgba(255, 255, 255, 0.2);
}
.featured-cat-box2 .featured-cat-user {
  margin: 0px;
  margin-top: 10px;
  padding: 2px 40px;
  display: inline-block;
  border-radius: 40px;
  -webkit-border-radius: 40px;
}
.color-lebel {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 2px 10px;
}
.clr-orange {
  background-color: #00173c;
}
.clr-pink {
  background-color: #fd4a60;
}
.clr-green {
  background-color: #38cf64;
}
.clr-blue {
  background-color: #397eff;
}
.clr-cyan {
  background-color: #00abad;
}
.clr-voilet {
  background-color: #9102ff;
}
.clr-red {
  background-color: #ff0000;
}
.listing-cat-box {
  position: relative;
}
@media only screen and (max-width:767px) {
  .p-b80 {
    padding-bottom: 30px;
  }
}
.listing-cat-text {
  color: #000;
  padding: 30px;
  background-color: #fff;
  border: 1px solid#d8d8d8;
  border-radius: 6px;
  -webkit-border-radius: 8px;
  margin-top: -8px;
  position: relative;
}
.listing-category-name {
  position: absolute;
  left: 30px;
  top: 30px;
}
.listing-category-name a {
  color: #fff;
}
.listing-place-name {
  margin-top: 15px;
}
.listing-place-name a {
  color: #0f1221;
}
.listing-cat-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.56) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#8f000000", GradientType=0);
}
.visited-cat-linking {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.wt-rating-section.float-left {
  float: left;
}
.wt-rating-section.float-none {
  float: none;
}
.wt-listing-view-section {
  position: absolute;
  right: 30px;
  top: 30px;
}
.wt-listing-view-section ul {
  list-style: none;
  margin: 0px;
}
.wt-listing-view-section ul li {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.wt-listing-view-section ul li a {
  color: #000;
  display: block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
  background-color: #fff;
}
.listing-cat-preview {
  position: relative;
}
.listing-cat-preview.active .fa-heart-o:before {
  content: "\f004" !important;
}
.listing-cat-preview .preview-tooltip {
  padding: 0px 15px;
  position: absolute;
  right: 150%;
  top: 0px;
  background-color: #0f1221;
  color: #fff;
  display: none;
  width: auto;
  text-align: right;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
  white-space: nowrap;
}
.listing-cat-preview:hover .preview-tooltip {
  display: block;
}
.listing-cat-preview .preview-tooltip:before {
  right: -12px;
  bottom: -6px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}
.listing-cat-preview .preview-tooltip:before {
  border-left-color: #0f1221;
  border-width: 6px;
  margin-bottom: 10px;
}
.wt-listing-view-section ul li:last-child {
  margin-right: 0px;
}
.wt-listing-view-section ul li:hover {
  background: none;
}
.listing-cat-address {
  display: block;
  font-weight: 600;
}
.listing-cat-address i {
  margin-right: 10px;
}
.wt-rating-section .wt-rating,
.wt-rating-section .wt-rating-conting {
  display: inline-block;
}
.wt-rating-section .wt-rating {
  display: inline-block;
  color: #F90;
}
.corner-radius {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.listing-cat-preview.active .fill-add-to-fav {
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.listing-logo-outer {
  margin-bottom: 20px;
}
.listing-place-logo {
  width: 80px;
  height: 80px;
  padding: 5px;
  background-color: #fff;
  -webkit-box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: -70px;
}
.listing-place-logo img {
  width: 100%;
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.listing-place-timing {
  margin-top: -42px;
}
.cities-slide-box {
  height: 350px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.cities-slide-text {
  position: absolute;
  bottom: 0px;
  color: #fff;
  padding: 0px 30px 30px;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.cities-slide-user {
  position: absolute;
  left: 30px;
  top: 30px;
}
.cities-location-sign {
  font-size: 28px;
  line-height: 28px;
}
.cities-slide-name {
  position: relative;
  margin: 0px;
  padding: 15px 10px 0px 10px;
}
.cities-slide-name:after,
.cities-slide-name:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  bottom: 0px;
  background: transparent;
}
.cities-slide-name:before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  left: 0px;
}
.cities-slide-name:after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: 0px;
}
.cities-slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: red;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.74) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#bd000000", GradientType=0);
}
.cities-slide-linking {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.city-home-2 .cities-slide-box {
  height: 250px;
}
.client-rating {
  display: block;
  color: #F90;
}
.newsletter-title {
  padding-right: 100px;
}
.newsletter-title span {
  font-size: 16px;
}
.newsletter-input {
  position: relative;
  z-index: 1;
}
.newsletter-input .input-group-text {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
}
.newsletter-input input::-webkit-input-placeholder {
  color: #484848;
  font-size: 14px;
}
.newsletter-input input::-moz-placeholder {
  color: #484848;
  font-size: 14px;
  text-transform: uppercase;
}
.newsletter-input input:-ms-input-placeholder {
  color: #484848;
  font-size: 14px;
  text-transform: uppercase;
}
.newsletter-input input:-moz-placeholder {
  color: #484848;
  font-size: 14px;
  text-transform: uppercase;
}
.nl-search-btn {
  border: none;
  outline: none;
  border-radius: 0px;
  padding: 0px 30px;
}
.nl-search-btn:hover {
  background-color: #00173c;
  color: #fff;
}
@media only screen and (max-width:991px) {
  .newsletter-title span {
    margin-bottom: 20px;
    display: block;
  }
}
.error-input {
  width: 100%;
  margin: 30px auto;
}
.error-input .form-control {
  background-color: #efefef;
}
.error-input span:first-child {
  padding: 0px;
}
.error-input span:last-child {
  overflow: hidden;
  padding: 0px;
}
.error-input .input-group-addon {
  border: 0px;
  border-radius: 0px;
}
.error-input input {
  border: 0px;
}
.error-search-btn {
  background: #111111;
  border: none;
  color: #fff;
  height: 50px;
  padding: 0px 20px;
}
.mobile-map-animation-padding {
  padding-top: 130px;
}
.map-animation-section {
  position: relative;
  z-index: 2;
}
.map-animation-left {
  width: 100%;
  position: relative;
}
.map-animation-block {
  position: relative;
}
.map-marker-block {
  position: absolute;
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.map-marker-position {
  position: absolute;
}
.map-marker {
  position: relative;
}
.user-hand img {
  position: absolute;
  left: 50%;
  margin-left: -58px;
  bottom: -120px;
  width: 116px;
  transform-origin: bottom center;
  -webkit-transform-origin: bottom center;
  -webkit-animation: moveIt 3.5s ease-in-out forwards infinite;
  animation: moveIt 3.5s ease-in-out forwards infinite;
}
@media only screen and (max-width:768px) {
  .user-hand img {
    bottom: -70px;
    width: 100px;
    margin-left: -50px;
  }
}
@keyframes moveIt {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
.map-animation-right {
  width: 40%;
  margin-left: 15px;
  float: right;
}
.map-marker-block .map-bg {
  width: 100%;
}
.scale-75 {
  -ms-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.scale-50 {
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.position-1 {
  z-index: 10;
  left: 50%;
  top: 15%;
}
.position-2 {
  z-index: 9;
  left: 25%;
  top: 30%;
}
.position-3 {
  z-index: 8;
  right: 25%;
  top: 30%;
}
.position-4 {
  z-index: 7;
  left: 40%;
  top: 6%;
}
.position-5 {
  z-index: 6;
  left: 10%;
  top: 20%;
}
.position-6 {
  z-index: 5;
  right: 40%;
  top: -5%;
}
.position-7 {
  z-index: 4;
  right: 20%;
  top: -10%;
}
@media only screen and (max-width:991px) {
  .position-4,
  .position-6 {
    top: 8%;
  }
  .position-5,
  .position-7 {
    top: 10%;
  }
}
.map-animation-ipad .map-marker-block {
  position: relative;
  margin: 0px auto;
  z-index: 1;
  top: 0px;
}
.map-animation-ipad .map-animation-right {
  width: 100%;
  float: none;
  margin-bottom: 50px;
  text-align: center;
}
.map-animation-ipad .map-animation-right .wt-icon-box-wraper {
  display: inline-block;
}
.map-animation-ipad .map-animation-left {
  width: 100%;
  float: none;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .map-animation-ipad .map-animation-left {
    padding-bottom: 0px;
  }
}
.map-animation-ipad .position-1 {
  z-index: 10;
  left: 50%;
  top: 35%;
}
.map-animation-ipad .position-2 {
  z-index: 9;
  left: 42%;
  top: 66%;
}
.map-animation-ipad .position-3 {
  z-index: 8;
  right: 25%;
  top: 32%;
}
.map-animation-ipad .position-4 {
  z-index: 7;
  left: 35%;
  top: 38%;
}
.map-animation-ipad .position-5 {
  z-index: 6;
  left: 15%;
  top: 44%;
}
.map-animation-ipad .position-6 {
  z-index: 5;
  right: 55%;
  top: 15%;
}
.map-animation-ipad .position-7 {
  z-index: 4;
  right: 34%;
  top: 15%;
}
@media only screen and (max-width:600px) {
  .map-animation-ipad .map-animation-right {
    text-align: left;
  }
}
.vert-move1 {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.vert-move2 {
  -webkit-animation: mover2 1s infinite alternate;
  animation: mover2 1s infinite alternate;
}
@-webkit-keyframes mover2 {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes mover2 {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.page-notfound {
  padding: 50px;
  background-color: #fff;
}
.page-notfound strong {
  font-size: 150px;
  line-height: 150px;
  font-weight: 900;
  font-family: "Teko", sans-serif;
}
.page-notfound h4 {
  font-size: 50px;
  color: #111111;
}
.error-403 .row {
  align-items: center;
}
.page-notfound.error-405 {
  background-color: transparent;
}
@media only screen and (max-width:640px) {
  .page-notfound strong {
    font-size: 80px;
    line-height: 80px;
  }
  .page-notfound h4 {
    font-size: 40px;
  }
  .page-notfound {
    padding: 20px;
    background-color: #fff;
  }
}
.error-full-page {
  display: table;
  width: 100%;
  height: 100vh;
}
.error-full-page-inner {
  display: table-cell;
  width: 100%;
  text-align: center;
  padding: 50px 50px;
  max-width: 700px;
  margin: auto;
  vertical-align: middle;
  position: relative;
}
.error-full-page-inner-info {
  background-color: #fff;
  padding: 50px;
  max-width: 800px;
  margin: 0px auto;
}
.error-full-page-inner-info strong {
  font-size: 150px;
  line-height: 150px;
  font-weight: 900;
  color: #111111;
  font-family: "Teko", sans-serif;
}
.error-full-page-inner-info h4 {
  font-size: 50px;
  color: #111111;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:991px) {
  .error-full-page-inner-info h4 {
    font-size: 36px;
  }
}
@media only screen and (max-width:640px) {
  .e-left-img,
  .e-right-img {
    display: none;
  }
  .error-full-page-inner-info strong {
    font-size: 90px;
    line-height: 90px;
  }
}
.wt-filter-features-wrap {
  margin-top: 0px;
}
.wt-filter-features-wrap {
  margin-top: 0px;
}
.wt-radio-checkbox {
  margin-top: 0px;
  margin-bottom: 20px;
}
.wt-radio-checkbox.radio-inline,
.wt-radio-checkbox.checkbox-inline {
  padding-left: 0 !important;
}
.wt-radio-checkbox label {
  font-weight: normal !important;
}
.wt-radio-checkbox input[type=checkbox],
.wt-radio-checkbox input[type=radio] {
  display: none;
  opacity: 0;
  margin-left: 1px !important;
}
.wt-radio-checkbox input[type=checkbox] + label,
.wt-radio-checkbox input[type=radio] + label {
  display: block;
  padding-left: 35px !important;
  min-height: 24px;
  padding: 0px 0px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
}
.wt-radio-checkbox input[type=radio] + label:hover:before {
  border-color: #fff;
  background: #3396d1;
  box-shadow: 0 0 1px 2px #3396d1;
  -webkit-box-shadow: 0 0 1px 2px #3396d1;
}
.wt-radio-checkbox input[type=checkbox] + label:hover:before {
  border-color: #00173c;
}
.wt-radio-checkbox input[type=radio] + label:before {
  background-color: #fff;
  border: 5px solid #fff;
  content: "";
  display: inline-block;
  height: 24px;
  line-height: 1;
  margin-left: -33px;
  position: absolute;
  top: 2px;
  transition: all linear 0.1s;
  width: 24px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  box-shadow: 0 0 1px 2px #CCCCCC;
  -webkit-box-shadow: 0 0 1px 2px #CCCCCC;
}
.wt-radio-checkbox input[type=checkbox] + label:before {
  background-color: #fff;
  border: 2px solid #CCCCCC;
  content: "";
  display: inline-block;
  line-height: 1;
  margin-left: -35px;
  position: absolute;
  top: 0px;
  transition: all linear 0.1s;
  width: 20px;
  height: 20px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.wt-radio-checkbox input[type=checkbox] + label:after {
  color: #00173c;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 0px;
  -webkit-font-smoothing: antialiased;
  left: 6px;
  position: absolute;
  top: 7px;
  transition: all linear 0.1s;
}
.wt-radio-checkbox input[type=checkbox]:checked + label:before {
  border-width: 2px;
  border-color: #00173c;
}
.wt-radio-checkbox input[type=checkbox]:checked + label:after {
  font-size: 12px;
  left: 5px;
  top: 2px;
}
.wt-radio-checkbox input[type=radio] + label:before {
  border-radius: 50%;
  content: "";
}
.wt-radio-checkbox input[type=radio]:checked + label:before {
  border-color: #fff;
  border-width: 5px;
  background: #3396d1;
  box-shadow: 0 0 1px 2px #f11749;
  -webkit-box-shadow: 0 0 1px 2px #3396d1;
}
.wt-input-icon .input-group-addon {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 4;
  border: none;
  padding: 0;
  -webkit-border-radius: 0px;
  border-radius: 6px;
  background: none;
}
.wt-input-icon .input-group {
  position: relative;
}
.wt-input-icon .form-control {
  -webkit-border-radius: 6px !important;
  border-radius: 6px !important;
  padding-left: 40px !important;
  border: 1px solid #e1e6eb !important;
}
.wt-input-icon .star-Rating-input {
  font-size: 20px;
  display: inline-block;
}
.comment-form-rating label {
  display: inline-block;
}
.comment-form-rating .star-Rating-input {
  display: inline-block;
  color: #ffc100 !important;
  font-size: 14px;
  margin-right: 10px;
}
.wt-input-icon .form-control::-webkit-input-placeholder {
  color: #707070;
  font-size: 12px;
}
.wt-input-icon .form-control::-moz-placeholder {
  color: #707070;
  font-size: 12px;
  text-transform: uppercase;
}
.wt-input-icon .form-control:-ms-input-placeholder {
  color: #707070;
  font-size: 12px;
  text-transform: uppercase;
}
.wt-input-icon .form-control:-moz-placeholder {
  color: #707070;
  font-size: 12px;
  text-transform: uppercase;
}
.review-overview {
  padding: 0px 0px 30px 0px;
}
.review-rate-box {
  margin-bottom: 20px;
  text-align: center;
  border-radius: 0;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
}
.rating-rate-box-total {
  font-size: 62px;
  font-weight: 700;
  line-height: 1em;
  display: block;
  color: #0f1221;
}
.rating-rate-box-percent {
  font-size: 15px;
  margin-bottom: 0;
  color: #888;
  display: block;
}
.review-rate-box .star-Rating-input {
  display: inline-block;
  color: #ffc100 !important;
  font-size: 14px;
  margin-right: 10px;
}
.rating-bars {
  overflow: hidden;
}
.rate-bar-category {
  margin-bottom: 10px;
}
.rate-bars-name {
  font-weight: 600;
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 22px;
  position: relative;
}
.rate-bars-line .wt-probar-2 {
  height: 10px;
}
.rate-bars-name .rate-count {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 0px;
  top: 0px;
}
@media only screen and (max-width:540px) {
  .review-rate-box {
    float: none;
    width: 100%;
    margin: 0px 0px 30px 0px;
    padding: 0px;
  }
}
.add-review-overview {
  margin-bottom: 30px;
  padding: 30px 30px 20px 30px;
  background-color: #fff9f7;
}
.add-rate-bar-category {
  margin-bottom: 10px;
  display: inline-block;
  width: 49%;
  padding-right: 2%;
}
.add-rate-bars-name {
  font-weight: 600;
  color: #000;
  display: block;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}
.add-star-Rating-input {
  display: inline-block;
  color: #ffc100 !important;
  font-size: 14px;
  margin-right: 10px;
}
@media only screen and (max-width:540px) {
  .add-rate-bar-category {
    display: block;
    margin-right: 0px;
  }
}
.site-button-small {
  color: #000;
  display: inline-block;
  white-space: nowrap;
  line-height: 20px;
  padding: 3px 15px;
  font-weight: 600;
  border: none;
  font-size: 14px;
  margin: 0 5px 5px 0px;
}
.site-button-small:hover {
  opacity: 0.8;
}
button {
  outline: none !important;
}
.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}
.bootstrap-touchspin .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 10px 10px 9px;
  margin-left: -1px;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  background: #FFF;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  border-top-right-radius: 0;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-touchspin .input-group-btn-vertical i {
  position: absolute;
  top: 4px;
  left: 5px;
  font-size: 9px;
  font-weight: normal;
  color: #9fa0a1;
}
.v-icon {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.v-icon:before {
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
}
.v-icon-effect:hover .v-icon:before {
  -webkit-animation: toTopFromBottom 0.3s forwards;
  -moz-animation: toTopFromBottom 0.3s forwards;
  animation: toTopFromBottom 0.3s forwards;
}
.v-icon-effect:hover img.v-icon {
  -webkit-animation: toTopFromBottom 0.3s forwards;
  -moz-animation: toTopFromBottom 0.3s forwards;
  animation: toTopFromBottom 0.3s forwards;
}
@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.btn-quantity .form-control {
  height: 40px;
  border: 1px solid #ddd;
}
.filter-destination-slider .slider .tooltip {
  z-index: 1;
}
canvas {
  display: block;
}
#myList li {
  display: none;
}
.ripple-background {
  position: relative;
  left: 50%;
  bottom: -25px;
  opacity: 0.2;
}
.pricingtable-inner:hover .ripple-background {
  opacity: 0.4;
}
.ls-circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple-1 5s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
}
.ls-small {
  width: 80px;
  height: 80px;
  left: -40px;
  top: -40px;
}
.ls-medium {
  width: 160px;
  height: 160px;
  left: -80px;
  top: -80px;
}
.ls-large {
  width: 240px;
  height: 240px;
  left: -120px;
  top: -120px;
}
.ls-xlarge {
  width: 320px;
  height: 320px;
  left: -160px;
  top: -160px;
}
.ls-xxlarge {
  width: 400px;
  height: 400px;
  left: -200px;
  top: -200px;
}
.ls-shade1 {
  opacity: 0.1;
}
.ls-shade2 {
  opacity: 0.2;
}
.ls-shade3 {
  opacity: 0.3;
}
.ls-shade4 {
  opacity: 0.4;
}
.ls-shade5 {
  opacity: 0.5;
}
@keyframes ripple-1 {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}
h4.headline {
  font-size: 22px;
  line-height: 32px;
  margin: -5px 0 30px;
}
.im-icon-outer {
  font-size: 14px;
  width: 33%;
  display: inline-block;
  transition: .3s;
  text-align: center;
  border: 1px solid #ddd;
  margin-bottom: 5px;
  background-color: #fff5f2;
}
.im-icon-outer span {
  display: block;
}
.im-icon-outer span:first-child {
  font-size: 34px;
}
.im-icon-outer .mls {
  font-family: "Poppins", sans-serif;
}
.sl-icons-demo i {
  font-size: 32px;
  padding-right: 10px;
}
.fontawesome-icons .text-muted {
  display: none;
}
@media only screen and (max-width:991px) {
  .im-icon-outer {
    width: 49%;
  }
}
@media only screen and (max-width:767px) {
  .im-icon-outer {
    width: 49%;
  }
  h4.headline {
    font-size: 14px;
  }
}
@media only screen and (max-width:767px) {
  .im-icon-outer {
    width: 100%;
  }
  .section-full.p-b80 {
    padding-bottom: 30px;
  }
  .section-full.p-b50 {
    padding-bottom: 30px;
  }
  .section-full.p-b40 {
    padding-bottom: 30px;
  }
  .section-full.p-t80 {
    padding-top: 30px;
  }
  .section-full.p-tb80 {
    padding-top: 30px;
  }
  .section-full.p-b70 {
    padding-bottom: 20px;
  }
  .section-full.p-t50 {
    padding-top: 30px;
  }
  .section-head {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width:640px) {
  .section-full.p-t80 {
    padding-top: 30px;
  }
  .section-full.p-b70 {
    padding-bottom: 20px;
  }
  .section-full.p-t50 {
    padding-top: 30px;
  }
  .section-full.p-b80 {
    padding-bottom: 30px;
  }
  .section-full.p-b50 {
    padding-bottom: 30px;
  }
}
.icon-circle-box {
  position: relative;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-circle-box .wt-icon-box-wraper {
  padding: 30px 20px 30px 20px;
}
.icon-circle-box .icon-content {
  overflow: inherit;
  z-index: 1;
  position: relative;
}
.icon-circle-box .icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.icon-circle-box .icon-circle:before {
  content: "";
  left: -20px;
  top: -10px;
  position: absolute;
  z-index: -1;
  width: 140px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon-circle-box span.icon-cell {
  line-height: 100px;
}
.icon-count-number {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  font-size: 100px;
  line-height: 100px;
  font-weight: 900;
  opacity: 0.1;
  color: #0f1221;
  z-index: -1;
}
.icon-circle-box {
  text-align: center;
  position: relative;
}
@media only screen and (max-width:767px) {
  .row.d-flex [class*=col-]:last-child .icon-circle-box .wt-icon-box-wraper {
    margin-bottom: 0px;
  }
}
.icon-circle-box.active {
  position: relative;
  border: 0px;
}
.icon-circle-box.active {
  background-color: #0f1221;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.icon-circle-box.active .icon-circle {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3) inset;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3) inset;
}
.icon-circle-box.active .icon-circle:before {
  border: 10px solid #00173c;
}
.icon-circle-box.active .wt-tilte,
.icon-circle-box.active p {
  color: #fff;
}
.icon-circle-box.active .icon-count-number {
  color: #00173c;
  opacity: 0.3;
}
.form-group {
  margin-bottom: 25px;
}
.form-control {
  height: 50px;
  font-size: 13px;
  line-height: 20px;
  padding: 10px 12px;
  border-radius: 0px;
  border: none;
}
.form-control:focus {
  border-color: #d7dce1;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .06);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .06);
  background-color: #F8F8F8;
}
.form-control2 {
  border: none;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
  height: 44px;
  font-size: 13px;
  line-height: 20px;
  padding: 10px 12px 10px 20px;
}
.form-control2:focus {
  border-bottom-color: #f11749;
}
.wt-input-icon .input-group-addon2 {
  position: absolute;
  left: 0px;
  top: 12px;
  z-index: 4;
  border: none;
  padding: 0;
  color: #222;
  -webkit-border-radius: 0px;
  border-radius: 6px;
  background: none;
}
textarea.form-control2 {
  height: auto;
}
.form-control.kv-fileinput-caption {
  height: 39px;
}
.form-group.form-inline .radio,
.form-group.form-inline .checkbox {
  margin-right: 15px;
}
.overlay-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: red;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.74) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.74) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#bd000000", GradientType=0);
}
@media only screen and (max-width:991px) {
  .how-it-right {
    margin-bottom: 30px;
  }
}
.video-banner-outer {
  position: relative;
  z-index: 1;
}
.video-banner-outer .banner-wrap {
  position: absolute;
  width: 1140px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width:1200px) {
  .video-banner-outer .banner-wrap {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
  .video-banner-outer .banner-content-area {
    padding: 150px 0px 60px;
  }
}
.Call-btn {
  font-size: 26px;
  font-family: "Teko", sans-serif;
}
@media only screen and (max-width:480px) {
  .Call-btn {
    font-size: 14px;
  }
}
.welcome-section-outer {
  position: relative;
  z-index: 1;
}
.video-counter-bg-white {
  position: relative;
}
.welcom-to-section {
  padding-right: 0px;
}
.welcom-sign-info {
  text-align: left;
}
.welcom-sign-info span,
.welcom-sign-info strong {
  display: block;
  color: #00173c;
}
@media only screen and (max-width:1199px) {
  .welcom-sign-pic {
    max-width: 110px;
  }
}
@media only screen and (max-width:991px) {
  .welcom-to-section {
    padding-right: 0px;
  }
}
@media only screen and (max-width:767px) {
  .welcome-section-top {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width:480px) {
  .welcom-to-section-bottom {
    display: inherit !important;
  }
  .welcom-btn-position {
    display: inline-block;
  }
  .welcom-sign-pic {
    max-width: 150px;
  }
  .welcom-to-section-bottom img {
    padding-top: 20px;
  }
}
.since-year-outer {
  position: relative;
}
.since-year {
  position: absolute;
  right: 0px;
  top: -30px;
  z-index: 1;
}
.since-year span {
  color: #00173c;
  font-size: 106px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  display: inline-block;
  line-height: 0px;
  position: relative;
  bottom: -16px;
  padding-right: 10px;
}
.since-year strong {
  color: #fff;
  font-size: 120px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  display: inline-block;
  background-color: dodgerblue;
  line-height: 50px;
  padding: 40px 10px 20px 12px;
}
.site-list-style-one {
  list-style: none;
  margin-bottom: 30px;
}
.site-list-style-one li {
  font-family: "Teko", sans-serif;
  color: #00173c;
  font-size: 24px;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}
.site-list-style-one li:after {
  position: absolute;
  content: "";
  left: 0px;
  top: 17px;
  width: 20px;
  height: 2px;
  background-color: dodgerblue;
}
@media only screen and (max-width:991px) {
  .since-year-outer {
    text-align: right;
  }
  .since-year {
    position: inherit;
    top: -30px;
  }
}
@media only screen and (max-width:767px) {
  .since-year {
    position: inherit;
    top: -45px;
  }
}
@media only screen and (max-width:480px) {
  .since-year span {
    font-size: 36px;
  }
  .since-year strong {
    font-size: 60px;
    padding: 15px 10px 5px 12px;
  }
}
.hilite-large-title {
  position: relative;
}
.hilite-large-title span {
  font-size: 120px;
  line-height: 100px;
  color: #00173c;
  opacity: 0.1;
  font-family: "Teko", sans-serif;
  display: inline-block;
}
@media only screen and (max-width:991px) {
  .hilite-large-title span {
    font-size: 72px;
    line-height: 76px;
  }
}
@media only screen and (max-width:480px) {
  .hilite-large-title span {
    font-size: 40px;
    line-height: 46px;
  }
}
.img-colarge {
  position: relative;
  height: 100%;
  margin-bottom: 80px;
}
.colarge-1 {
  position: relative;
  margin: 40px 30px 0px 40px;
  z-index: 1;
}
.colarge-1:before,
.colarge-1:after {
  position: absolute;
  border: 15px solid dodgerblue;
  content: "";
  width: 80%;
  height: 80%;
  z-index: -1;
}
.colarge-1:before {
  left: -40px;
  top: -40px;
}
.colarge-1:after {
  right: -30px;
  bottom: 0px;
}
.img-colarge2 {
  position: relative;
  height: 100%;
  margin-bottom: 110px;
}
.colarge-2 {
  position: relative;
  margin-right: 180px;
  z-index: 1;
  border: 10px solid dodgerblue;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.colarge-2-1 {
  position: absolute;
  left: 160px;
  bottom: 0px;
  max-width: 370px;
}
.since-year-outer2 {
  position: relative;
}
.since-year2 {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.since-year2 span {
  color: #00173c;
  font-size: 60px;
  font-weight: 300;
  font-family: "Teko", sans-serif;
  display: block;
  line-height: 60px;
  position: relative;
}
.since-year2 strong {
  color: dodgerblue;
  font-size: 100px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  display: block;
  line-height: 50px;
}
@media only screen and (max-width:991px) {
  .colarge-2 {
    margin-right: 0px;
    max-width: 420px;
  }
  .colarge-2 img {
    width: 100%;
  }
  .colarge-2-1 {
    left: auto;
    right: 0px;
  }
}
@media only screen and (max-width:767px) {
  .colarge-2 {
    max-width: 100%;
    width: 50%;
  }
  .colarge-2 img {
    width: 100%;
  }
  .colarge-2-1 {
    width: 54%;
    top: 0px;
    max-width: 100%;
  }
}
.counter2-section-outer-bottom {
  padding-bottom: 0px;
}
.counter2-section-outer-top {
  padding-bottom: 50px;
}
.counter-section-outer-top {
  padding-top: 50px;
  padding-bottom: 20px;
}
.counter-outer .counter {
  font-size: 70px;
  position: relative;
  display: inline-block;
  margin-left: -30px;
}
.counter-outer .counter:after {
  font-size: 70px;
  position: absolute;
  content: "+";
  right: -30px;
}
.counter-outer span {
  font-size: 28px;
  display: block;
  font-weight: 600;
}
@media only screen and (max-width:991px) {
  .img-colarge {
    padding-top: 30px;
    margin: -10px;
  }
  .colarge-1 {
    position: relative;
    z-index: 1;
  }
  .colarge-1 img {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .img-colarge {
    margin: 0px;
    padding-top: 0px;
  }
  .colarge-1 {
    max-height: inherit;
    margin-bottom: 30px;
    padding: 0px;
  }
}
.services-main-section {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.services-section-content-left {
  max-width: 470px;
  margin-right: 70px;
  float: right;
}
.services-section-content {
  padding: 0px 15px;
}
.services-section-content-right {
  padding: 120px 0px;
  background-color: dodgerblue;
  background-image: url("./media/bg-map-white.png");
  background-repeat: repeat;
  position: relative;
  margin-top: -24px;
  right: -50px;
  border-radius: 15px;
}
.services-section-content-right .services-slider {
  margin-left: 50px;
}
@media (min-width: 992px) {
  .col-lg-3.col-md-12.rightSidebar {
    margin-top: -55px;
  }
}
@media only screen and (max-width:1199px) {
  .services-section-content-left {
    max-width: 960px;
    padding: 0px 15px;
    margin-right: 0px;
    float: none;
    margin: 0px auto 70px;
    display: block;
  }
  .services-section-content-right .services-slider {
    max-width: 960px;
    padding: 0px 15px;
    margin: 0px auto;
  }
  .row.col-xl-11.col-lg-12.col-md-12.services-section-content-right {
    margin-left: 4px;
  }
  .services-section-content-right {
    padding: 80px 0px;
    bottom: 0px;
    margin-top: 28px;
    right: 0px;
  }
}
@media only screen and (max-width:991px) {
  .services-section-content-left {
    max-width: 720px;
  }
  .services-section-content-right {
    padding: 75px 0px;
  }
  .services-section-content-right .services-slider {
    max-width: 720px;
  }
  .services-main-section {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:767px) {
  .services-section-content-left {
    max-width: 540px;
    margin: 0px auto 12px;
  }
  .services-section-content-right .services-slider {
    max-width: 540px;
  }
  .services-section-content-right {
    bottom: 0px;
    margin-top: 16px;
    padding: 10px 0px;
    background: none;
  }
  .services-main-section {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width:575px) {
  .services-section-content-right .services-slider {
    max-width: 100%;
    padding: 0px;
  }
  .services-section-content-left {
    max-width: 100%;
    margin: 0px auto 12px;
    padding: 0px;
  }
}
.service-box-1 {
  border-radius: 15px;
  position: relative;
  padding: 20px;
}
.service-box-2 {
  padding: 0px;
}
.service-box-2-media img {
  width: 100%;
}
.service-border-box {
  position: relative;
  z-index: 1;
  margin: 0px 10px;
}
.service-border-box:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  background-color: rgb(238, 238, 238);
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.service-border-box:hover:before {
  background-color: dodgerblue;
}
.service-box-title {
  border-left: 5px solid dodgerblue;
  padding-left: 20px;
  margin-left: 0px;
  margin-bottom: 25px;
}
.service-box-title span {
  font-size: 30px;
  display: block;
  text-align: left;
  line-height: 36px;
}
.services-slider.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
}
.services-slider.owl-btn-vertical-center .owl-nav .owl-next,
.services-slider.owl-btn-vertical-center .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.services-slider:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
}
.services-slider:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
}
.services-slider .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.services-slider:hover .owl-nav {
  opacity: 1;
}
.wt-icon-number {
  position: absolute;
  right: 0px;
  top: 0px;
}
.wt-icon-number span {
  font-size: 120px;
  line-height: 100px;
  color: rgba(0, 0, 0, 0.1);
  font-weight: 500;
  opacity: 0.5;
  display: block;
  font-family: "Teko", sans-serif;
}
.service-box-content {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.service-image-box .service-box-content {
  margin-bottom: 0;
  border-bottom: 0px;
  padding-bottom: 0;
}
.pricing-list-block ul {
  list-style: none;
  margin-bottom: 0px;
}
.pricing-list-block ul li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px dashed #00173c;
  margin-bottom: 15px;
}
.pricing-list-block ul li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px;
}
.pricing-list-block ul li p {
  margin-bottom: 0px;
}
.discount-section-outer {
  position: relative;
  z-index: 1;
}
.discount-add-info {
  position: relative;
}
.discount-add-info .hilite-large-title {
  position: absolute;
}
.discount-add-info .hilite-large-title span {
  position: absolute;
  left: -70px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform-origin: left bottom;
}
.discount-add-info {
  padding: 80px 50px;
}
.discount-add-pic {
  position: relative;
}
@media only screen and (max-width:991px) {
  .discount-add-pic {
    min-height: 280px;
  }
  .discount-add-info {
    padding: 30px;
  }
}
.discount-section-outer:after {
  position: absolute;
  content: "";
  background-color: #fff6ef;
  width: 100%;
  height: 50%;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}
@media only screen and (max-width:1340px) {
  .discount-add-info .hilite-large-title span {
    display: none;
  }
}
.team-bg-section-outer {
  position: relative;
  z-index: 1;
}
.team-bg-map {
  position: absolute;
  width: 100%;
  height: 40%;
  z-index: -1;
  left: 0px;
  bottom: 0px;
}
@media only screen and (max-width:991px) {
  .team-bg-map {
    height: 60%;
  }
}
@media only screen and (max-width:767px) {
  .team-bg-map {
    height: 80%;
  }
}
.wt-team-1 .team-name a:hover {
  color: dodgerblue;
}
.wt-team-1 .team-position {
  font-size: 24px;
  line-height: 20px;
  display: block;
}
.wt-team-1 .wt-media {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.wt-team-1 .wt-media img {
  width: 100%;
}
.wt-team-1 .team-social-center {
  position: absolute;
  top: 100%;
  right: 0px;
  bottom: 0px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  border: 7px solid dodgerblue;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
}
.wt-team-1 .team-social-center ul {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  text-align: left;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.wt-team-1 .team-social-center ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.wt-team-1 .team-social-center ul li a:hover {
  color: dodgerblue;
}
.wt-team-1 .team-social-center ul li a {
  color: #fff;
  font-size: 20px;
  padding: 5px 5px;
  display: inline-block;
}
.wt-team-1 .wt-info {
  position: relative;
}
.wt-team-1:hover .team-social-center {
  top: 0px;
}
@media only screen and (max-width:540px) {
  .wt-team-1 .team-position {
    font-size: 22px;
  }
}
.instagram-follows-section {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding-right: 200px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.instagram-pics-slide .owl-carousel .owl-nav {
  margin-top: 10px;
}
.instagram-box-1 {
  position: relative;
}
.instagram-box-media img {
  width: 100%;
}
.instagram-pics-slide {
  margin-top: 40px;
  margin-left: -200px;
}
.instagram-box-info {
  background-color: rgba(84, 31, 92, 0.8);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.instagram-box-1:hover .instagram-box-info {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
.instagram-box-info a {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.instagram-box-info a i,
.instagram-box-info a span {
  display: block;
  font-size: 28px;
}
@media only screen and (max-width:1400px) {
  .instagram-pics-slide {
    margin-top: 40px;
    margin-left: -140px;
  }
}
@media only screen and (max-width:1024px) {
  .instagram-pics-slide {
    margin-left: 0px;
    margin-top: 0px;
  }
  .instagram-follows-section {
    padding-right: 15px;
    background: transparent !important;
    box-shadow: none;
  }
  .instagram-follows-section .p-a30 {
    padding: 0px;
  }
}
.icon-font-block {
  display: grid;
  width: 100%;
  text-align: center;
  vertical-align: top;
  background: #00173C;
  padding: 10px;
  min-height: 170px;
  color: #fff;
}
.icon-font-block .flat-icon {
  padding: 10px;
  display: block;
  font-size: 64px;
  line-height: 1;
  color: #fff;
}
.service-detail-video .video-section-2 {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 250px 0px;
}
.wt-team-1-single-info {
  padding: 30px;
  margin-bottom: 0px;
}
.wt-team-1-single-list li {
  margin-bottom: 5px;
  font-weight: 600;
  position: relative;
  list-style: none;
  padding-left: 35px;
}
.wt-team-1-single-info li {
  list-style: none;
  clear: both;
}
.wt-team-1-single-info li span:first-child {
  font-weight: 500;
  padding-right: 30px;
  letter-spacing: 1px;
  color: #00173c;
  width: 140px;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  float: left;
}
.wt-team-1-single-info li span:last-child {
  overflow: hidden;
}
@media only screen and (max-width:640px) {
  .wt-team-1-single-info li span:first-child {
    display: block;
  }
}
@media only screen and (max-width: 540px) {
  .wt-team-1-single-info li span:first-child {
    float: none;
  }
}
.project-img-effect-1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: dodgerblue;
  line-height: 1.5em;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.project-img-effect-1 img {
  width: 100%;
}
.project-img-effect-1 .wt-info {
  padding: 20px 20px;
  opacity: 1;
  background-color: #fff;
  position: relative;
  bottom: 0%;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.project-img-effect-1 a.mfp-link {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  bottom: 0px;
  right: 0%;
  color: #fff;
  text-align: center;
  background-color: #00173c;
  font-size: 24px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.project-img-effect-1:hover .wt-info {
  position: relative;
  bottom: 60px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
}
.project-img-effect-1:hover img {
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  opacity: 0.3;
}
.project-detail-right p:last-child {
  margin-bottom: 0px;
}
.contact-slide-hide {
  position: fixed;
  right: -100%;
  top: 0px;
  height: 100%;
  min-width: 100%;
  max-width: 100%;
  background: #fff;
  color: #000;
  z-index: 999;
  overflow-x: hidden;
  border-left: 1px solid #ddd;
}
.contact-nav {
  max-width: 1000px;
  margin: 0px auto;
  display: table;
  width: 100%;
  height: 100%;
}
.contact-nav .contact-nav-form {
  padding-top: 60px;
  display: table-cell;
  vertical-align: middle;
}
.contact-nav .contact-nav-form .form-control {
  border: 1px solid #e5e5e5;
}
.contact-nav .contact_close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 100%;
  border: none;
  text-align: right;
  font-size: 36px;
}
.contact-nav-media-section {
  position: relative;
  height: 100%;
}
.contact-nav-media {
  position: absolute;
  left: 0px;
  bottom: -30px;
}
.contact-nav-inner {
  background-color: #f5f5f5;
  padding: 30px;
}
.contact-nav-inner p {
  margin: 0px;
}
@media only screen and (max-width:991px) {
  .contact-nav-inner .row [class*=col-] {
    margin-bottom: 30px;
  }
  .contact-nav-inner .row [class*=col-]:last-child {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width:767px) {
  .contact-nav-media-section {
    display: none;
  }
}
.about-section-outer {
  position: relative;
}
@media only screen and (max-width:991px) {
  .about-section-outer {
    padding-top: 30px;
  }
}
.bg-brush-img {
  position: relative;
  z-index: 1;
}
.bg-brush-img:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left top;
}
@media only screen and (max-width:991px) {
  .bg-brush-img:before {
    background-size: 50%;
  }
}
@media only screen and (max-width:767px) {
  .row.justify-content-center [class*=col-]:last-child.m-b30 {
    margin-bottom: 0px;
  }
  .row.justify-content-center [class*=col-]:last-child.m-b40 {
    margin-bottom: 0px;
  }
  .row.justify-content-center [class*=col-]:last-child.m-b50 {
    margin-bottom: 10px;
  }
  .wt-team-1-single p:last-child {
    margin-bottom: 0px;
  }
  .home-contact-section {
    margin-bottom: 0px;
    margin-left: 0px;
  }
}
.slide-right {
  -webkit-animation: slide-right 1.5s ease-in-out infinite alternate both;
  animation: slide-right 1.5s ease-in-out infinite alternate both;
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.pre-info-box {
  position: relative;
}
.pre-info-box .wt-info {
  padding: 30px;
  padding-bottom: 0px;
}
.pre-info-bg-box h2,
.pre-info-bg-box p {
  color: #fff;
}
.pre-info-bg-box {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 20px;
}
@media only screen and (max-width:767px) {
  .pre-info-bg-box {
    padding: 80px 15px;
    margin-bottom: 30px;
  }
}
.makeover-section p {
  max-width: 700px;
  padding-bottom: 20px;
}
.makeover-section h1 {
  max-width: 600px;
}
.makeover-section-outer {
  position: relative;
  z-index: 1;
}
.makeover-section-outer:after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 60%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width:991px) {
  .makeover-section {
    padding-top: 0px;
  }
}
@media only screen and (max-width:767px) {
  .makeover-section-outer:after {
    background-size: 75%;
  }
  .makeover-section {
    padding-top: 0px;
  }
}
.gallery-center-slider {
  position: relative;
}
.gallery-center-slider .owl-item.active.center {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  z-index: 1;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.gallery-center-slider.owl-carousel .owl-stage-outer {
  padding: 100px 0px;
}
.gallery-center-slider.owl-carousel .owl-stage-outer .item {
  padding: 0px 30px;
}
.gallery-center-slider.owl-carousel .owl-item img {
  width: 80%;
}
.gallery-center-slider.owl-carousel .project-img-effect-1:hover img {
  -webkit-transform: translateX(0px) scale(1.3);
  transform: translateX(0px) scale(1.3);
}
.project-1-outer-section {
  margin-bottom: 30px;
}
.project-1-outer {
  position: relative;
}
.project-1-left {
  position: absolute;
  z-index: 3;
  bottom: -40px;
}
.crane-image-section {
  position: relative;
}
.crane-image-section img {
  max-width: 555px;
}
@media only screen and (max-width:1199px) {
  .crane-image-section img {
    max-width: 400px;
  }
}
@media only screen and (max-width:991px) {
  .crane-image-section img {
    display: none;
  }
  .project-1-outer-section {
    margin-bottom: 0px;
  }
}
.project-1-right {
  max-width: 700px;
  float: right;
  margin-bottom: -30px;
  z-index: 2;
  position: relative;
}
.project-1-right .project-1-slider.owl-carousel .owl-stage-outer {
  padding-bottom: 30px;
  padding-top: 0px;
}
.project-1-inner-media {
  max-width: 370px;
  float: left;
  position: relative;
  z-index: 1;
  margin-right: 30px;
}
.project-1-inner-pic:after {
  position: absolute;
  content: "";
  border: 6px solid dodgerblue;
  right: -30px;
  bottom: -30px;
  left: 30px;
  top: 30px;
  width: 100%;
  z-index: -1;
}
.project-1-inner-info {
  overflow: hidden;
  padding: 100px 0px 20px 30px;
}
@media only screen and (max-width:991px) {
  .project-1-inner-media {
    margin: 80px 30px 110px 0px;
  }
}
@media only screen and (max-width:767px) {
  .project-1-right {
    float: none;
    max-width: inherit;
    margin-bottom: 30px;
  }
  .project-1-inner-media {
    max-width: 100%;
    float: none;
    position: relative;
    z-index: 1;
    margin: 0px auto;
    margin-right: 30px;
    margin-top: 80px;
  }
  .project-1-slider.long-arrow-next-prev.owl-btn-top-right .owl-nav {
    top: 15px;
  }
  .project-1-inner-info {
    padding: 60px 0px 0px 0px;
  }
  .project-1-right .project-1-slider.owl-carousel .owl-stage-outer {
    padding-bottom: 0px;
    padding-top: 0px;
  }
}
.long-arrow-next-prev.owl-btn-top-right .owl-nav {
  position: absolute;
}
.long-arrow-next-prev.owl-carousel .owl-nav .owl-prev,
.long-arrow-next-prev.owl-carousel .owl-nav .owl-next {
  color: #00173c !important;
  padding: 0px;
  width: auto;
  height: auto;
  text-align: center;
  font-size: 38px;
  display: inline-block;
  background-color: transparent !important;
  line-height: inherit;
}
.long-arrow-next-prev.owl-carousel .owl-nav .owl-prev:hover,
.long-arrow-next-prev.owl-carousel .owl-nav .owl-prev:active,
.long-arrow-next-prev.owl-carousel .owl-nav .owl-prev:focus,
.long-arrow-next-prev.owl-carousel .owl-nav .owl-next:hover,
.long-arrow-next-prev.owl-carousel .owl-nav .owl-next:active,
.long-arrow-next-prev.owl-carousel .owl-nav .owl-next:focus {
  background-color: transparent !important;
  border-color: inherit !important;
  color: dodgerblue !important;
  opacity: 1;
}
.what-we-do-section {
  position: relative;
  top: -60px;
  padding-top: 140px;
}
.what-we-do-section .hilite-large-title {
  position: absolute;
  right: -2px;
  bottom: -20px;
  z-index: 1;
}
.what-we-do-section .hilite-large-title span {
  font-size: 44px;
  line-height: 100px;
  color: #fff;
  opacity: 1;
  font-family: "Teko", sans-serif;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -2px;
}
.what-we-do-content {
  position: relative;
  bottom: -130px;
  margin-top: -130px;
  z-index: 3;
}
.whatWedo-media-section {
  position: relative;
  margin-left: 30px;
  margin-right: 0px;
}
.whatWedo-media-section img {
  width: 100%;
}
.whatWedo-media-content {
  position: absolute;
  bottom: 60px;
  left: -30px;
  right: 82px;
}
@media only screen and (max-width:1199px) {
  .what-we-do-content {
    position: relative;
    bottom: 0px;
    margin-top: 0px;
    z-index: 3;
    margin-bottom: 30px;
  }
  .what-we-do-section .whatWedo-info-section .wt-icon-card {
    margin-right: 0px;
  }
  .what-we-do-section {
    top: -60px;
    padding-top: 80px;
  }
}
@media only screen and (max-width:991px) {
  .what-we-do-section {
    position: relative;
    top: 0px;
    padding-top: 80px;
  }
  .what-we-do-content .whatWedo-info-section {
    margin-left: 0px;
    margin-top: 30px;
  }
}
@media only screen and (max-width:767px) {
  .whatWedo-media-content {
    right: 30px;
  }
  .what-we-do-section .hilite-large-title {
    display: none;
  }
}
@media only screen and (max-width:400px) {
  .whatWedo-media-section {
    margin-left: 0px;
  }
  .whatWedo-media-content {
    position: relative;
    right: auto;
    top: auto;
    left: auto;
    bottom: auto;
  }
  .whatWedo-media-content:before {
    display: none;
  }
  .whatWedo-media-content:after {
    display: none;
  }
}
.whatWedo-media-inner {
  position: relative;
  z-index: 1;
  padding: 20px 30px;
  background: rgb(252, 93, 22);
  background: -moz-linear-gradient(left, rgba(252, 93, 22, 1) 0%, rgba(2, 23, 60, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(252, 93, 22, 1) 0%, rgba(2, 23, 60, 1) 100%);
  background:
    linear-gradient(
      to right,
      rgba(252, 93, 22, 1) 0%,
      rgba(2, 23, 60, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fc5d16", endColorstr="#02173c", GradientType=1);
}
.whatWedo-media-content h3 {
  margin-bottom: 2px;
}
.whatWedo-media-content p {
  margin-bottom: 0px;
}
.whatWedo-media-content:before {
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: 15px;
  left: 15px;
  content: "";
  background-color: #f1f1f1;
  z-index: 0;
}
.whatWedo-media-content:after {
  position: absolute;
  left: 0px;
  bottom: -60px;
  content: "";
  z-index: 0;
  width: 0;
  height: 0;
  border-top: 60px solid #c34d1f;
  border-left: 30px solid transparent;
}
.whatWedo-info-section {
  margin-left: 30px;
}
@media only screen and (max-width:991px) {
  .whatWedo-info-section {
    margin-left: 0px;
  }
}
.wt-icon-card-outer {
  padding-top: 15px;
}
.wt-icon-card {
  padding: 20px;
}
.wt-icon-card .wt-card-header {
  padding-bottom: 10px;
}
.wt-icon-card .wt-card-header i {
  font-size: 48px;
  padding-right: 10px;
  line-height: 48px;
  display: inline-block;
}
.wt-icon-card .wt-card-header span {
  font-size: 30px;
}
.wt-icon-card .wt-card-content p {
  margin-bottom: 0px;
}
.whatWedo-info-section .wt-icon-card {
  margin-right: 130px;
  margin-bottom: 30px;
}
.whatWedo-info-section .wt-icon-card:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width:1199px) {
  .what-we-do-section2 .whatWedo-info-section .wt-icon-card {
    margin-right: 0px;
  }
}
@media only screen and (max-width:991px) {
  .what-we-do-section2 .whatWedo-info-section {
    margin-left: 0px;
  }
}
.what-we-do-section2 {
  position: relative;
}
.what-we-do-section2 .hilite-large-title {
  position: absolute;
  right: -2px;
  bottom: -20px;
  z-index: 1;
}
.what-we-do-section2 .hilite-large-title span {
  font-size: 120px;
  line-height: 100px;
  color: #fff;
  opacity: 1;
  font-family: "Teko", sans-serif;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -2px;
}
.what-we-do-section2 .what-we-do-content {
  position: relative;
  bottom: 0px;
  margin-top: 0px;
  z-index: 1;
}
@media only screen and (max-width:767px) {
  .what-we-do-section2 .hilite-large-title {
    display: none;
  }
}
.top-half-section {
  margin-top: -100px;
}
@media only screen and (max-width:1024px) {
  .top-half-section {
    margin-top: 90px;
  }
}
@media only screen and (max-width:767px) {
  .top-half-section {
    margin-top: 40px;
  }
}
.project-stamp .stamp {
  position: absolute;
  left: 0px;
  top: 0px;
}
.project-stamp .project-stamp-list .masonry-filter {
  display: block;
}
.project-stamp .project-stamp-list {
  border: 2px solid dodgerblue;
  padding: 10px 10px;
}
.project-stamp .project-stamp-list li {
  display: block;
  margin-bottom: 16px;
  border-bottom: 1px solid #e4e4e4;
}
.project-stamp .project-stamp-list li:last-child {
  margin-bottom: 0px;
  border-bottom: 0px;
}
.project-stamp .project-stamp-list li a {
  font-family: "Teko", sans-serif;
  font-size: 20px;
}
.project-stamp .project-stamp-list li a i {
  color: dodgerblue;
  font-size: 24px;
  padding-right: 10px;
}
.project-2-block .wt-title {
  border-left: 4px solid dodgerblue;
  padding: 3px 0px 3px 10px;
}
.project-2-block .wt-title a:hover {
  color: dodgerblue;
}
.self-intro-section-outer {
  position: relative;
}
.self-intro-top {
  position: relative;
  z-index: 1;
}
.self-intro-pic-block {
  position: absolute;
  left: 15px;
  bottom: 0px;
  z-index: 1;
  padding: 50px 50px 0px 50px;
  background-color: #eff3f6;
  max-width: 460px;
  background-image: url("./media/self-info-bg.png");
  background-position: top center;
  background-repeat: no-repeat;
}
.self-info-detail .icon-content p {
  margin-bottom: 0px;
}
.self-intro-pic-block2 {
  position: absolute;
  left: 15px;
  bottom: 0px;
  z-index: 1;
  padding: 50px 50px 0px 50px;
  background-color: #fff;
  max-width: 460px;
  background-image: url("./media/self-info-bg.png");
  background-position: top center;
  background-repeat: no-repeat;
}
@media only screen and (max-width:991px) {
  .self-intro-pic-block {
    max-width: 320px;
  }
  .self-intro-pic-block2 {
    max-width: 320px;
  }
}
@media only screen and (max-width:767px) {
  .self-intro-pic-block {
    display: none;
  }
  .self-intro-pic-block2 {
    display: none;
  }
  .self-intro-top {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .self-intro-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.wt-product-box .price {
  margin-bottom: 10px;
}
.wt-product-box .price del {
  font-size: 16px;
  color: #999999;
  margin: 4px 4px;
  font-weight: 600;
}
.wt-product-box .price ins {
  font-size: 18px;
  color: dodgerblue;
  text-decoration: none;
  margin: 4px 4px;
  font-weight: 600;
}
.wt-product-box .rating-bx {
  padding-top: 10px;
  color: #ffa000;
}
.btn-quantity {
  width: 150px;
}
.product-description.dex-tabs.border-top .nav-tabs > li.active > a {
  border-top: 2px solid #efbb20;
}
.product-description.dex-tabs .nav-tabs > li > a i {
  color: #efbb20;
}
.dex-tabs.bg-tabs .nav-tabs > li > a {
  background-color: #fcfcfc;
}
ol.commentlist {
  list-style: none;
  margin: 0;
}
ol.commentlist li {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
  background: #F7F8FA;
  padding: 20px;
  border: 1px dashed #EEEEEE;
}
ol.commentlist li img {
  float: left;
  border: 5px solid #FFF;
  width: 80px;
  height: auto;
}
ol.commentlist li .comment-text {
  padding-left: 100px;
}
ol.commentlist li .meta {
  margin-bottom: 5px;
}
ol.commentlist li .meta strong {
  font-size: 16px;
  padding-right: 7px;
}
ol.commentlist li .meta .time {
  color: #999;
  display: block;
  font-size: 14px;
}
ol.commentlist li .description p {
  margin: 0;
}
ol.commentlist li .star-rating {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media only screen and (max-width: 767px) {
  ol.commentlist li .star-rating {
    position: inherit;
  }
}
.comment-reply-title {
  margin-top: 0;
}
.comment-form [class*=comment-form] {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .comment-form [class*=comment-form] {
    width: 100%;
  }
}
.comment-form [class*=-form-author],
.comment-form [class*=-form-email] {
  float: left;
}
.comment-form [class*=-form-comment] {
  width: 100%;
}
.comment-form label {
  display: block;
}
.star-Rating-input i {
  font-size: 18px;
  padding-right: 7px;
}
.star-Rating-input .fa-star {
  color: #FFBC13;
}
.star-Rating-input i:hover {
  color: #FFBC13;
}
.comment-form [class*=comment-form] input,
.comment-form [class*=comment-form] textarea {
  border: 1px solid #CCC;
  padding: 8px 10px;
  width: 100%;
}
.comment-form {
  margin: 0 -15px;
}
.comment-form [class*=comment-form],
.comment-form .form-submit {
  padding: 0 15px;
}
.comment-form .form-submit input:active,
.comment-form .form-submit input:focus,
.comment-form .form-submit input:hover {
  background: #037a85;
}
.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}
.bootstrap-touchspin .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 10px 10px 9px;
  margin-left: -1px;
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  background: #FFF;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  border-top-right-radius: 0;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-touchspin .input-group-btn-vertical i {
  position: absolute;
  top: 4px;
  left: 5px;
  font-size: 9px;
  font-weight: normal;
  color: #9fa0a1;
}
.input-rating input[type=radio] {
  display: none;
}
.input-rating input[type=radio] + label {
  display: inline-block;
  margin-left: -4px;
  padding-left: 0px !important;
  padding-right: 0px;
  width: 24px;
}
.input-rating input[type=radio] + label:first-of-type {
  margin-left: 0px;
}
.input-rating input[type=radio] + label:before {
  background-color: transparent;
  border: none;
  color: #ffd925;
  content: "\f006";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  height: 14px;
  line-height: 1;
  margin-left: 0px;
  position: static;
  text-align: center;
  top: 2px;
  transition: none;
  width: 14px;
}
.input-rating input[type=radio]:checked + label:before,
.input-rating input[type=radio] + label.marked:before,
.input-rating input[type=radio] + label.filled:before,
.input-rating input[type=radio] + label.hovered.filled:before {
  content: "\f005";
}
.input-rating input[type=radio] + label.hovered:before {
  content: "\f006";
}
.rating-bx {
  color: #ffd925;
  font-size: 14px;
}
.rating-bx i {
  margin: 0 2px;
}
.rating-container .rating-stars::before {
  text-shadow: none;
}
.rating-container {
  color: #c8c8c8;
}
.rating-container .rating-stars {
  color: #3396d1;
}
.has-feedback label ~ .form-control-feedback {
  top: 31px;
}
.site-list-style-two {
  list-style: none;
}
.site-list-style-two li {
  font-family: "Teko", sans-serif;
  color: #00173c;
  font-size: 24px;
  position: relative;
  left: 30px;
  font-weight: 500;
}
.site-list-style-two li:after {
  position: absolute;
  content: "";
  left: -30px;
  top: 17px;
  width: 20px;
  height: 2px;
  background-color: dodgerblue;
}
.shopping-table .cf th {
  padding: 5px 10px !important;
  color: #060000;
}
.your-order-list ul {
  list-style: none;
  margin-bottom: 0px;
}
.your-order-list ul li {
  padding: 15px 10px;
  clear: both;
  border-bottom: 1px solid #eee;
  color: #fff;
}
.your-order-list ul li:last-child {
  background-color: dodgerblue;
  border-bottom: none;
  text-transform: uppercase;
  color: #000;
}
.header-style-1 #search-toggle-block {
  display: none;
}
.header-style-1 #search {
  position: relative;
  background-color: rgba(255, 255, 255);
}
.header-style-1 #search form {
  max-width: 440px;
  color: #262423;
  text-align: center;
  outline: none;
  padding: 12px;
  margin: 0px auto;
}
.header-style-1 #search input[type=search] {
  background: none;
  border: none;
  padding: 0px;
  font-size: 20px;
  height: auto;
}
.header-style-1 #search .search-btn {
  border: none;
  background: none;
  padding: 0px 30px;
}
.header-style-1 #search .search-btn i {
  font-size: 18px;
}
.header-style-1 .header-search-icon.close {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 0px;
  color: #fff;
  width: 48px;
  bottom: 0px;
  opacity: 1 !important;
}
.header-style-1 .header-search-icon.close:after,
.header-style-1 .header-search-icon.close:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background-color: #262423;
  right: 24px;
  top: 12px;
}
.header-style-1 .header-search-icon.close:after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-style-1 .header-search-icon.close:before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-style-1 .header-search-icon.close:hover:after,
#search .close:hover:before {
  cursor: pointer;
}
@media only screen and (max-width:1200px) {
  .header-style-1 .header-search-icon {
    right: 50px;
  }
  .header-style-1 .header-search-icon.close {
    right: 50px;
  }
}
@media only screen and (max-width:777px) {
  .header-style-1 .header-search-icon {
    right: 0px;
  }
  .header-style-1 .header-search-icon.close {
    right: 0px;
  }
}
.faq-accorfion {
  position: relative;
}
@media only screen and (max-width:767px) {
  .faq-accorfion {
    margin-bottom: 30px;
  }
}
.hover-effect-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.hover-effect-1 .hover-effect-content {
  position: absolute;
  padding: 20px 20px 20px 50px;
  overflow: hidden;
  bottom: 0px;
}
.hover-effect-1 .hover-effect-content p {
  padding-top: 50px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  opacity: 0;
}
.h-category {
  top: 0px;
  left: 35px;
  width: 200%;
  position: absolute;
  white-space: nowrap;
  margin-left: 0px;
  background-color: dodgerblue;
  padding: 5px 20px 5px 37px;
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -ms-transform-origin: left top 0;
  -moz-transform-origin: left top 0;
  -webkit-transform-origin: left top 0;
  transform-origin: left top 0;
  text-transform: uppercase;
  text-transform: 1px 1px 0px rgba(0, 0, 0, 0.5);
}
.line-filter-media {
  position: relative;
}
.line-filter .filter-content {
  border-left: 4px solid dodgerblue;
  padding-left: 20px;
}
.line-filter-outer:hover .hover-effect-1 {
  top: 0px;
  opacity: 1;
}
.line-filter-outer:hover .hover-effect-1 .hover-effect-content p {
  padding-top: 0px;
  opacity: 1;
}
.hover-effect-content .mfp-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  background-color: #fff;
  text-align: center;
}
.hover-effect-content .mfp-link:hover {
  background-color: dodgerblue;
}
.hover-effect-content .mfp-link:focus {
  color: #000;
}
.bold-title {
  position: relative;
  z-index: 1;
  overflow: inherit;
}
.bold-title h1:after,
.bold-title h2:after,
.bold-title h3:after,
.bold-title h4:after {
  position: absolute;
  content: attr(data-title);
  color: rgba(210, 210, 210, 0.4);
  font-weight: 500;
  font-size: 114px;
  text-transform: uppercase;
  top: -40px;
  left: 0%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width:480px) {
  .bold-title h1:after,
  .bold-title h2:after,
  .bold-title h3:after {
    display: none;
  }
}
.animate_line {
  position: relative;
  z-index: 0;
  padding: 15px 15px;
}
.animate_line:after,
.animate_line:before {
  content: "";
  height: 4px;
  width: 0px;
  position: absolute;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: -1;
}
.animate_line:after {
  left: 5px;
  bottom: 5px;
}
.animate_line:before {
  right: 5px;
  top: 5px;
}
.animate_line:hover:after,
.animate_line:hover:before {
  width: 50%;
  height: 50%;
  background: dodgerblue;
}
@media only screen and (max-width:768px) {
  .animate_line:after {
    bottom: 5px;
  }
  .animate_line:before {
    top: 5px;
  }
}
.full-container-margin .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (max-width:767px) {
  .full-container-margin .container-fluid {
    max-width: 540px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
.img-top-bottom-aanimation {
  -webkit-animation: img-animation 5s ease-in-out infinite alternate-reverse both;
  animation: img-animation 5s ease-in-out infinite alternate-reverse both;
}
@-webkit-keyframes img-animation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes img-animation {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.how-we-work-box {
  position: relative;
  z-index: 1;
  margin: 0px 10px;
}
.how-we-work-box:hover:before {
  background-color: dodgerblue;
}
.how-we-work-box-1 {
  position: relative;
  padding: 50px 20px;
  text-align: center;
}
.how-we-work-title {
  margin-left: 0px;
  margin-bottom: 20px;
}
.how-we-work-title span {
  font-size: 30px;
  display: block;
  line-height: 36px;
}
.how-we-work.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
}
.how-we-work.owl-btn-vertical-center .owl-nav .owl-next,
.how-we-work.owl-btn-vertical-center .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.how-we-work:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
}
.how-we-work:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
}
.how-we-work .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.how-we-work:hover .owl-nav {
  opacity: 1;
}
.how-we-work .box-icon-number {
  position: inherit;
}
.how-we-work .box-icon-number span {
  font-size: 120px;
  line-height: 100px;
  font-weight: 500;
  display: block;
  font-family: "Teko", sans-serif;
}
@media only screen and (max-width:767px) {
  .how-we-work-box {
    position: relative;
    z-index: 1;
    margin: 0px;
  }
}
.box-style1-outer {
  padding: 32px;
}
@media only screen and (max-width:1440px) {
  .box-style1-outer {
    margin-top: -8px;
  }
  .services-nav {
    margin-top: -28px;
  }
}
@media only screen and (max-width:1024px) {
  .box-style1-outer {
    margin-top: -100px;
  }
}
@media only screen and (max-width:800px) {
  .box-style1-outer {
    margin-top: -30px;
  }
}
@media only screen and (max-width:500px) {
  .box-style1-outer {
    margin-top: 50px;
  }
}
@media only screen and (max-width:330px) {
  .box-style1-outer {
    margin-top: -30px;
  }
}
.box-style1 {
  padding: 20px;
  margin: 8px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  background: rgb(252, 252, 252);
  background: -moz-linear-gradient(left, rgba(252, 252, 252, 1) 0%, rgba(244, 244, 244, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(252, 252, 252, 1) 0%, rgba(244, 244, 244, 1) 100%);
  background:
    linear-gradient(
      to right,
      rgba(252, 252, 252, 1) 0%,
      rgba(244, 244, 244, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fcfcfc", endColorstr="#f4f4f4", GradientType=1);
}
.box-style1-title span {
  font-size: 30px;
  display: block;
  text-align: left;
  line-height: 36px;
  color: #00173c;
}
.box-style1-title {
  border-left: 5px solid dodgerblue;
  padding-left: 20px;
  margin-left: 0px;
  margin-bottom: 25px;
}
.box-style1 .box-style1-content {
  padding-bottom: 30px;
}
.box-style1 .wt-icon-number span {
  font-size: 72px;
  line-height: 100px;
  color: dodgerblue;
  font-weight: 500;
  opacity: 1;
  display: block;
  font-family: "Teko", sans-serif;
}
.box-style1:hover .wt-icon-number span {
  color: #fff;
}
.box-style1:hover .box-style1-title span {
  color: #fff;
}
.box-style1:hover .box-style1-content p {
  color: #fff;
}
.box-style1:hover .box-style1-content a {
  color: #fff;
}
.box-style1 .wt-icon-number {
  position: absolute;
  right: 0px;
  top: 0px;
}
.box-style1:after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0px;
  top: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  background: #00173c;
  background:
    linear-gradient(
      0deg,
      rgba(255, 94, 21, 1) 0%,
      rgba(0, 23, 60, 1) 100%);
}
.box-style1:hover:after {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: -1;
}
.arc-home-about-right .row [class*=col-] {
  padding-left: 20px;
  padding-right: 0px;
}
.arc-home-about-right span.title-small {
  font-weight: 600;
  display: block;
}
.arc-about-year-pic {
  position: relative;
  background-color: #fff;
}
.arc-about-year-pic img {
  width: 100%;
}
@media only screen and (max-width:991px) {
  .arc-home-about-right {
    margin: 30px -10px -20px -10px;
  }
  .arc-home-about-right .row [class*=col-] {
    padding: 0px 10px;
  }
}
@media only screen and (max-width:768px) {
  .arc-home-about-left:before {
    left: 0px;
    bottom: -50px;
  }
  .arc-home-about-left:after {
    right: 0px;
    top: -50px;
  }
  .arc-about-year {
    text-align: right;
  }
  .arc-home-about-right .row [class*=col-].masonry-item {
    width: 80%;
  }
  .arc-home-about-right .row [class*=col-] {
    padding: 0px 10px;
  }
}
@media only screen and (max-width:480px) {
  .arc-home-about-right .row [class*=col-].masonry-item {
    width: 100%;
  }
  .arc-home-left-content {
    margin: 30px 15px;
  }
  .arc-home-about-left:after {
    right: -3px;
    top: -25px;
  }
  .arc-home-about-left:before {
    bottom: -25px;
    left: -3px;
  }
  .arc-home-about-left:before,
  .arc-home-about-left:after {
    height: 79%;
  }
}
.bg-gray-light {
  background-color: #f1f1f1;
}
.img-colarge-new {
  position: relative;
  height: 100%;
  margin-bottom: 80px;
}
.colarge-1-new {
  position: relative;
  margin: 40px 30px 0px 40px;
  z-index: 1;
}
.colarge-1-new:before {
  position: absolute;
  border: 10px solid dodgerblue;
  content: "";
  width: 60%;
  z-index: -1;
  left: -40px;
  top: -40px;
  bottom: -40px;
}
.welcom-to-section-new {
  padding-top: 40px;
}
.welcom-to-section-new p {
  margin-bottom: 50px;
  line-height: 28px;
}
@media only screen and (max-width:991px) {
  .img-colarge-new .colarge-1-new img {
    width: 100%;
  }
  .welcom-to-section-new {
    padding-top: 0px;
  }
  .welcom-to-section-new p {
    margin-bottom: 20px;
  }
}
.site-list-style-one-new {
  list-style: none;
  margin-bottom: 30px;
  margin-left: 0;
  margin-top: 20px;
  float: left;
  width: 100%;
}
.site-list-style-one-new li {
  font-family: "Poppins", sans-serif;
  color: #00173c;
  font-size: 16px;
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.site-list-style-one-new li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 20px;
  height: 2px;
  background-color: dodgerblue;
}
.icon-xl {
  line-height: 80px;
}
.icon-xl i {
  font-size: 80px;
  line-height: 80px;
}
.service-box-1-new {
  border-radius: 15px;
  position: relative;
  padding: 30px;
}
.service-box-1-new:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -32px;
  left: 50%;
  background-color: dodgerblue;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}
.service-box-1-new:hover:before {
  -webkit-transform: scale(50);
  transform: scale(50);
}
.service-box-title-new {
  margin-left: 0px;
  margin-bottom: 20px;
  font-size: 30px;
}
.services-style-new.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
}
.services-style-new.owl-btn-vertical-center .owl-nav .owl-next,
.services-style-new.owl-btn-vertical-center .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.services-style-new:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
}
.services-style-new:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
}
.services-style-new .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.services-style-new:hover .owl-nav {
  opacity: 1;
}
.wt-icon-box-wraper-new {
  position: relative;
  margin-bottom: 40px;
}
.wt-icon-number-new {
  position: absolute;
  right: 0px;
  top: 0px;
}
.wt-icon-number-new span {
  font-size: 120px;
  line-height: 100px;
  color: rgba(0, 0, 0, 0.1);
  font-weight: 500;
  opacity: 0.5;
  display: block;
  font-family: "Teko", sans-serif;
}
.service-box-content-new {
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}
.service-box-content-new p {
  margin-bottom: 0px;
}
.what-we-do-section2-new {
  position: relative;
}
.whatWedo-media-section-new {
  position: relative;
  margin-right: 30px;
}
@media only screen and (max-width:991px) {
  .whatWedo-media-section-new {
    margin-right: 0px;
  }
}
.whatWedo-media-section-new img {
  width: 100%;
}
.whatWedo-media-content-new {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 355px;
}
.whatWedo-media-inner-new {
  position: relative;
  z-index: 1;
  padding: 30px;
}
.whatWedo-media-inner-new p {
  margin-bottom: 0px;
}
.whatWedo-info-section-new {
  margin-left: 0px;
}
.wt-icon-card-outer-new {
  padding-top: 15px;
}
.wt-icon-card-new {
  padding: 20px;
}
.wt-icon-card-new .wt-card-header-new {
  padding-bottom: 10px;
}
.wt-icon-card-new .wt-card-header-new i {
  font-size: 48px;
  padding-right: 10px;
  line-height: 48px;
  display: inline-block;
}
.wt-icon-card-new .wt-card-header-new span {
  font-size: 30px;
}
.wt-icon-card-new .wt-card-content-new p {
  margin-bottom: 0px;
}
.whatWedo-info-section-new .wt-icon-card-new {
  margin-bottom: 30px;
}
.whatWedo-info-section-new .wt-icon-card-new:last-child {
  margin-bottom: 0px;
}
.date-style-3 .wt-post-info {
  position: relative;
  padding: 30px;
}
.date-style-3.blog-post {
  margin-bottom: 0px;
}
.date-style-3 .wt-post-meta ul li {
  margin-right: 30px;
}
.date-style-3 .wt-post-meta ul li:last-child {
  margin-right: 0px;
}
.date-style-3 .wt-post-meta ul li.post-category {
  position: absolute;
  right: 0px;
  top: -40px;
  z-index: 1;
  margin-right: 0px;
}
.date-style-3 .wt-post-meta ul li.post-category span {
  color: #fff;
  text-align: center;
  background-color: dodgerblue;
  font-size: 16px;
  display: block;
  padding: 8px 15px;
}
.date-style-3 .wt-post-meta ul li.post-author,
.date-style-3 .wt-post-meta ul li.post-date,
.date-style-3 .wt-post-meta ul li.post-comment {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: dodgerblue;
  position: relative;
  padding-top: 0px;
}
.date-style-3 .wt-post-readmore {
  padding-top: 10px;
}
.date-style-3 .wt-post-readmore a {
  color: dodgerblue;
}
.date-style-3 .wt-post-meta {
  margin-bottom: 10px;
}
.date-style-3 .wt-post-meta ul li:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #00173c;
  top: 12px;
  right: -30px;
}
.date-style-3 .wt-post-meta ul li.post-category:after {
  display: none;
}
.client-logo {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ececec;
  padding: 20px 20px;
}
.testimonial-4-outer {
  position: relative;
}
.testimonial-4-content-outer {
  z-index: 1;
  top: 0px;
  position: inherit;
}
.testimonial-4-content .owl-nav .owl-prev {
  left: 15px;
}
.testimonial-4-content .owl-nav .owl-next {
  right: 15px;
}
.testimonial-4 {
  position: relative;
  text-align: center;
}
.testimonial-4 .testimonial-content {
  padding: 40px 55px;
  text-align: center;
}
.testimonial-4 .testimonial-pic {
  width: 114px;
  height: 114px;
  border: 3px solid #ececec;
}
.testimonial-4 .testimonial-info {
  padding: 0px;
}
.testimonial-4 .testimonial-text {
  padding: 0px;
  position: relative;
  z-index: 1;
}
.testimonial-4 .testimonial-text .fa-quote-left {
  font-size: 58px;
  color: dodgerblue;
  opacity: 0.2;
  margin: 20px 0px;
}
.testimonial-4 .testimonial-name {
  padding-right: 0px;
  display: block;
  font-size: 30px;
  font-weight: 500;
}
.testimonial-4 .testimonial-name::after {
  display: none;
}
.testimonial-4 .testimonial-position {
  display: block;
  font-size: 24px;
  position: relative;
  line-height: 24px;
}
.testimonial-4-content.owl-carousel.owl-btn-top-right.long-arrow-next-prev .owl-stage-outer {
  padding-top: 0px;
}
.testimonial-4-content.owl-carousel.owl-btn-top-right.long-arrow-next-prev .owl-nav {
  position: absolute;
  right: 30px;
  top: 170px;
  width: auto;
}
.btn-filter-wrap {
  list-style: none;
  margin: 90px 0 0;
}
.btn-filter-wrap li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #000;
  padding: 0 20px;
  cursor: pointer;
}
.btn-filter-wrap li:last-child {
  padding-right: 0;
}
.btn-filter-wrap li.btn-active {
  color: dodgerblue;
}
.btn-filter-wrap li:after {
  content: "/";
  position: absolute;
  left: -2px;
  top: 4px;
  font-size: 14px;
  opacity: 0.2;
  color: #000;
}
.btn-filter-wrap li:first-child:after {
  display: none;
}
.owl-carousel-filter .owl-item {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.owl-carousel-filter .owl-item.active {
  opacity: 1;
}
.owl-carousel-filter .owl-item > .owl-item {
  opacity: 1;
}
.project-new-content {
  padding: 20px 0px 0px 0px;
}
.project-new-content span {
  display: block;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: dodgerblue;
  letter-spacing: 1px;
}
.project-new-content .wt-title {
  margin-bottom: 0px;
}
@media only screen and (max-width:1199px) {
  .btn-filter-wrap {
    text-align: left;
    margin-top: 10px;
  }
  .btn-filter-wrap li:first-child {
    padding-left: 0px;
  }
}
.video-section-new-outer {
  padding-top: 0px;
  position: relative;
}
.video-new-info {
  padding: 30px;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  max-width: 315px;
}
.video-new-info span {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}
.video-new-info .wt-tilte {
  color: #fff;
  margin-bottom: 0px;
}
.video3-left-section {
  position: relative;
  height: 100%;
}
.video3-left-section .wt-media {
  position: absolute;
  bottom: 0px;
  width: auto;
}
.video3-left-section .wt-media img {
  width: 100%;
}
@media only screen and (max-width:991px) {
  .video3-left-section .wt-media {
    position: inherit;
  }
}
@media only screen and (max-width:767px) {
  .video-new-info {
    position: inherit;
  }
}
.counter3-outer {
  margin-top: 30px;
  margin-bottom: 50px;
}
.counter3-outer .counter:after {
  font-size: 70px;
  position: absolute;
  content: "+";
  right: -30px;
}
.counter3-outer span {
  font-size: 30px;
  display: block;
}
.counter3-outer .counter {
  font-size: 70px;
  position: relative;
  display: inline-block;
  margin-left: -30px;
}
.counter3-outer .counter::after {
  font-size: 70px;
  position: absolute;
  content: "+";
  right: -30px;
}
@media only screen and (max-width:1199px) {
  .counter3-outer .counter {
    font-size: 40px;
    line-height: 40px;
  }
  .counter3-outer .counter::after {
    font-size: 30px;
    right: -15px;
  }
  .counter3-outer span {
    font-size: 24px;
  }
  .video-new-info {
    padding: 15px;
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .counter3-outer {
    margin-bottom: 20px;
  }
}
.footer-style3 p {
  font-size: 14px;
}
.footer-style3 .footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
}
.footer-style3 .footer-bottom {
  border-top: 0px;
}
.footer-style3 .widget-title {
  margin-bottom: 42px;
}
.footer-style3 .logo-footer {
  margin-bottom: 25px;
}
.footer-style3.site-footer .widget_address {
  padding-top: 0px;
}
.footer-style3.footer-dark .footer-top .widget_newsletter .form-control {
  background-color: #fff;
  color: #000;
  margin-bottom: 10px;
}
.footer-style3 .nl-search-btn {
  color: #fff;
  display: block;
  width: 100%;
  font-size: 26px;
  padding: 3px 10px;
  margin-bottom: 28px;
}
.footer-style3 .newsletter-input input::-webkit-input-placeholder {
  color: #484848;
  font-size: 14px;
}
.footer-style3 .newsletter-input input::-moz-placeholder {
  color: #484848;
  font-size: 14px;
  text-transform: uppercase;
}
.footer-style3 .newsletter-input input:-ms-input-placeholder {
  color: #484848;
  font-size: 14px;
  text-transform: uppercase;
}
.footer-style3 .newsletter-input input:-moz-placeholder {
  color: #484848;
  font-size: 14px;
  text-transform: uppercase;
}
@media only screen and (max-width:767px) {
  .footer-style3 .footer-top {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}
.new_blink {
  margin: 0 auto;
  text-align: center;
  color: red;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  -webkit-animation: colorchange 2s infinite alternate;
  animation: colorchange 2s infinite alternate;
  right: 15px;
}
@keyframes colorchange {
  0% {
    color: red;
  }
  10% {
    color: #8e44ad;
  }
  20% {
    color: #1abc9c;
  }
  30% {
    color: #d35400;
  }
  40% {
    color: blue;
  }
  50% {
    color: #34495e;
  }
  60% {
    color: red;
  }
  70% {
    color: #2980b9;
  }
  80% {
    color: #f1c40f;
  }
  90% {
    color: #2980b9;
  }
  100% {
    color: red;
  }
}
@-webkit-keyframes colorchange {
  0% {
    color: red;
  }
  10% {
    color: #8e44ad;
  }
  20% {
    color: #1abc9c;
  }
  30% {
    color: #d35400;
  }
  40% {
    color: blue;
  }
  50% {
    color: #34495e;
  }
  60% {
    color: red;
  }
  70% {
    color: #2980b9;
  }
  80% {
    color: #f1c40f;
  }
  90% {
    color: #2980b9;
  }
  100% {
    color: red;
  }
}
.slider-block-3 {
  border: 40px solid #ea130e;
  position: relative;
  margin: 0px !important;
}
#webmax-two .rev-btn .site-button {
  padding: 8px 30px !important;
}
.wide-navigation .container {
  max-width: 100%;
  padding: 0px 50px;
}
@media only screen and (max-width:991px) {
  .wide-navigation .container {
    padding: 0px 15px;
  }
}
.about-max-two {
  position: relative;
  z-index: 1;
  padding-right: 50px;
}
@media (max-width: 420px) {
  .about-max-two {
    padding-right: 0px;
  }
}
.about-max-two:after {
  content: "";
  background-color: #ea130e;
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0;
  bottom: 50%;
  width: 75%;
}
.about-max-two:before {
  background-image: url("./media/bg-dott2.png");
  content: "";
  position: absolute;
  z-index: -1;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 45%;
}
.about-max-two .about-max-two-media {
  padding: 40px 0px 40px 40px;
}
.about-max-two .about-max-two-media img {
  width: 100%;
}
.about-section-two-right .section-head {
  margin-bottom: 40px;
}
.about-section-two-right .ab-two-info p {
  margin-bottom: 30px;
}
.about-two .about-year {
  padding: 0px;
}
.about-two .about-year .about-year-info {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  right: 0px;
  bottom: 60px;
  z-index: 1;
  display: flex;
  align-items: center;
  left: 60px;
}
.about-two .about-year .about-year-info span {
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  border-right: 4px solid #ea130e;
  margin-right: 14px;
  padding-right: 10px;
}
.about-two .about-year .about-year-info p {
  font-size: 16px;
  margin-bottom: 0px;
  color: #b9b9b9;
  letter-spacing: 1px;
}
@media (max-width: 420px) {
  .about-two .about-year .about-year-info {
    position: inherit;
    width: 100%;
    max-width: 100%;
  }
}
.card1 {
  z-index: 1;
  overflow: hidden;
  place-items: center;
}
.card1 .site-text-primary,
.card1 .s-title-one,
.card1 .d-icon-box-content p,
.card1 .wt-icon-number-new span {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.card1:hover .site-text-primary,
.card1:hover .s-title-one,
.card1:hover .service-box-content-new p {
  color: #fff;
}
.card1:hover .site-button-link,
.card1:hover .site-button-link:before {
  color: #fff;
}
.card1:hover .wt-icon-number-new span {
  color: rgba(255, 255, 255, 0.5);
}
.quality-section-outer {
  position: relative;
}
.quality-section-content {
  margin-top: 220px;
  position: relative;
  top: -150px;
  margin-bottom: -150px;
}
.quality-video-section {
  padding-bottom: 35px;
  padding-top: 50px;
}
.quality-video-section span {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
  margin: 0px auto;
}
.quality-video {
  position: relative;
  padding: 80px 0px;
}
@media only screen and (max-width:540px) {
  .quality-section-content {
    margin-top: 130px;
    top: -100px;
    margin-bottom: -100px;
  }
  .quality-video {
    padding: 100px 0px 0px 0px;
    margin-top: 40px;
  }
}
.project-gallery-style1-wrapper {
  overflow: hidden;
}
.project-gallery-block-outer {
  position: relative;
}
.project-gallery-style1 .owl-carousel .owl-stage-outer {
  display: table;
}
.project-box-style1 {
  position: relative;
  overflow: hidden;
}
.project-box-style1:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  background-color: #fff;
  transform-origin: 0 0;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
}
.project-box-style1:hover:after {
  opacity: 0.6;
  transform: scaleX(1);
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
}
.project-box-style1 .project-content {
  padding: 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
}
.project-box-style1 .project-content .project-title {
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  background-color: #000;
  padding: 8px 16px;
  color: #fff;
  opacity: 0;
  transform: translate3d(0%, -100%, 0);
  transition: transform .4s, opacity .2s;
}
.project-box-style1 .project-content .project-title-large {
  margin-bottom: 0px;
  position: relative;
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  transition: transform .4s, opacity .2s;
}
.project-box-style1 .project-content .project-title-large a {
  color: #000;
  transition: 0.5s all ease;
}
.project-box-style1 .project-content .project-title-large a:hover {
  color: #ea130e;
}
.project-box-style1 .project-view {
  position: absolute;
  top: 20px;
  left: 50%;
  opacity: 0;
  transform-origin: 0 0;
  transform: scaleY(0) translateX(-50%);
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
}
.project-box-style1 .project-view .project-view-btn {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
}
.project-box-style1 .project-view .project-view-btn i {
  width: 80px;
  height: 80px;
  display: block;
  background-color: #ea130e;
  position: relative;
}
.project-box-style1 .project-view .project-view-btn i:after,
.project-box-style1 .project-view .project-view-btn i:before {
  content: "";
  background-color: #fff;
  position: absolute;
}
.project-box-style1 .project-view .project-view-btn i:after {
  width: 1px;
  height: 24px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.project-box-style1 .project-view .project-view-btn i:before {
  width: 24px;
  height: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.project-box-style1:hover .project-view {
  opacity: 1;
  z-index: 3;
  transform: scaleY(1) translateX(-50%);
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
}
.project-box-style1:hover .project-title {
  opacity: 1;
  transform: translate3d(0, 0%, 0);
  transition: transform 1s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
}
.project-box-style1:hover .project-title-large {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
}
.project-box-style1 .project-media img {
  width: 100%;
}
.project-gallery-one.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
}
.project-gallery-one.owl-btn-vertical-center .owl-nav .owl-next,
.project-gallery-one.owl-btn-vertical-center .owl-nav .owl-prev {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.project-gallery-one:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
}
.project-gallery-one:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
}
.project-gallery-one .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.project-gallery-one:hover .owl-nav {
  opacity: 1;
}
.wt-team-10 {
  margin-left: 30px;
  position: relative;
}
.wt-team-10 .team-name a:hover {
  color: #ea130e;
}
.wt-team-10 .team-position {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  left: -50%;
  top: -8px;
  margin-left: -15px;
  width: 100%;
  white-space: nowrap;
  letter-spacing: 1px;
  transform: rotate(-90deg) translateX(-50%);
  -webkit-transform: rotate(-90deg) translateX(-50%);
  -moz-transform: rotate(-90deg) translateX(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.wt-team-10 .wt-media img {
  width: 100%;
}
.wt-team-10 .team-social-center {
  position: relative;
}
.wt-team-10 .team-social-center ul {
  list-style: none;
  margin-bottom: 0px;
}
.wt-team-10 .team-social-center ul li {
  display: inline-block;
  padding-right: 16px;
}
.wt-team-10 .team-social-center ul li:last-child {
  padding-right: 0px;
}
.wt-team-10 .team-social-center ul li a {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: #777;
}
.wt-team-10 .team-social-center ul li a:after {
  position: absolute;
  right: -14px;
  content: "";
  width: 8px;
  height: 1px;
  background-color: #777;
  top: 10px;
}
.wt-team-10 .team-social-center ul li:last-child a:after {
  display: none;
}
.wt-team-10 .wt-info {
  position: static;
  text-align: center;
}
.wt-team-10:hover .team-social-center {
  top: 0px;
}
.wt-team-10 .team-social-center ul li a:hover {
  color: #ea130e;
}
.latest-blog-3-pattern {
  position: relative;
  z-index: 1;
}
.latest-blog-3.post-overlay .wt-post-info {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: table;
}
.latest-blog-3.post-overlay {
  height: 520px;
}
.latest-blog-3.post-overlay .wt-post-info .post-overlay-position {
  display: table-cell;
  vertical-align: bottom;
}
.latest-blog-3.post-overlay .wt-post-meta a {
  color: #fff;
}
.latest-blog-3.post-overlay .wt-post-meta i {
  color: #fff;
}
.latest-blog-3.large-date .post-date {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #f00;
  padding: 20px;
  text-align: center;
}
.latest-blog-3.large-date .post-date strong {
  font-size: 50px;
  line-height: 50px;
  display: block;
  font-weight: 900;
  opacity: 1;
  color: #fff;
}
.latest-blog-3.large-date .post-date span {
  font-size: 14px;
  display: block;
}
.latest-blog-3 .wt-post-meta li:after {
  display: none;
}
.latest-blog-3 .wt-post-readmore a {
  color: #ff0000;
}
@media only screen and (max-width:767px) {
  .icon-circle-box-outer.m-b30 {
    margin-bottom: 0px;
  }
}
.icon-circle-box {
  position: relative;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-circle-box .wt-icon-box-wraper {
  padding: 30px 0px 20px 0px;
}
.icon-circle-box .icon-content {
  overflow: inherit;
  z-index: 1;
  position: relative;
}
.icon-circle-box .icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}
.icon-circle-box .icon-circle:before {
  content: "";
  left: -10px;
  top: -10px;
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 10px solid #ff0000;
}
.icon-circle-box .icon-circle:after {
  content: "";
  left: -20px;
  top: -20px;
  right: -20px;
  position: absolute;
  z-index: -1;
  border: 1px dashed #f00;
  bottom: -20px;
  border-radius: 50%;
}
.icon-circle-box span.icon-cell {
  line-height: 100px;
}
.icon-count-number {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  font-family: "Teko", sans-serif;
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  opacity: 0.1;
  color: #0f1221;
  z-index: -1;
}
.icon-circle-box {
  text-align: center;
  position: relative;
}
.icon-circle-box .icon-content p span {
  display: block;
}
.about-max-three {
  position: relative;
  z-index: 1;
  padding-right: 50px;
}
@media (max-width: 420px) {
  .about-max-three {
    padding-right: 0px;
  }
}
.about-max-three:before {
  background-image: url("./media/bg-dott2.png");
  content: "";
  position: absolute;
  z-index: -1;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 45%;
}
.about-max-three .about-max-three-media {
  padding: 40px 0px 40px 0px;
}
.about-max-three .about-max-three-media img {
  width: 100%;
}
.about-section-three-right .section-head {
  margin-bottom: 40px;
}
.about-section-three-right .ab-three-info p {
  margin-bottom: 30px;
}
.about-three .about-year {
  padding: 0px;
}
.about-three .about-year .about-year-info {
  padding: 30px;
  background-color: rgba(255, 0, 0, 0.8);
  position: absolute;
  right: 70px;
  bottom: 60px;
  z-index: 1;
  display: block;
  max-width: 250px;
}
.about-three .about-year .about-year-info span {
  display: block;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  border-bottom: 4px solid #fff;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.about-three .about-year .about-year-info .wt-tilte {
  margin-bottom: 0px;
  color: #fff;
}
@media (max-width: 460px) {
  .ab-three-info {
    display: block;
  }
  .ab-three-info img {
    max-width: 110px;
    float: right;
    padding-top: 20px;
  }
}
@media (max-width: 420px) {
  .about-three .about-year .about-year-info {
    position: inherit;
    width: 100%;
    max-width: 100%;
  }
}
.projects-two-info {
  border: 6px solid #e6e6e6;
  padding: 0px 30px 30px 30px;
  margin-left: 70px;
  position: relative;
  z-index: 1;
}
.projects-two-info:after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0px;
  top: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  background-color: #000;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.projects-two-info:hover:after {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: -1;
}
.projects-two-info.bg-white:hover .wt-tilte a,
.projects-two-info.bg-white:hover p {
  color: #fff;
}
.projects-two-info.bg-white:hover .wt-tilte a:hover {
  color: #ff0000;
}
.projects-two-info .wt-media {
  margin-top: 30px;
  margin-left: -100px;
}
.projects-two-info .wt-tilte {
  position: relative;
  z-index: 1;
  margin-bottom: 0px;
  padding-top: 80px;
  padding-right: 26px;
}
.projects-two-info .wt-tilte:after {
  font-family: "Teko", sans-serif;
  position: absolute;
  letter-spacing: 2px;
  content: attr(data-title);
  opacity: 0.5;
  color: #000;
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  top: 20px;
  left: 0px;
  z-index: -1;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -ms-text-fill-color: rgba(0, 0, 0, 0);
  -moz-text-fill-color: rgba(0, 0, 0, 0);
  -o-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-width: 1px;
  -ms-text-stroke-width: 1px;
  -moz-text-stroke-width: 1px;
  -o-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  -ms-text-stroke-color: #fff;
  -moz-text-stroke-color: #fff;
  -o-text-stroke-color: #fff;
}
.projects-two-info.bg-white .wt-tilte:after {
  -webkit-text-stroke-color: #000;
  -ms-text-stroke-color: #000;
  -moz-text-stroke-color: #000;
  -o-text-stroke-color: #000;
}
.projects-two-info.bg-white:hover .wt-tilte:after {
  -webkit-text-stroke-color: #fff;
  -ms-text-stroke-color: #fff;
  -moz-text-stroke-color: #fff;
  -o-text-stroke-color: #fff;
}
.cardbg {
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.cardbg-pic {
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.cardbg:hover {
  background-color: #000 !important;
  border: 1px solid transparent;
  color: #fff;
}
.cardbg:hover .s-title-one,
.cardbg:hover .site-button-link {
  color: #fff;
}
.cardbg:hover .cardbg-pic {
  opacity: 0.2;
}
.latest-blog-2 .wt-post-text {
  margin-bottom: 20px;
}
.latest-blog-2 .wt-post-meta {
  margin-bottom: 15px;
}
@media only screen and (max-width:767px) {
  .latest-blog-2-wraper {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width:767px) {
  .arc2-team-wrapper {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width:575px) {
  .arc2-team-wrapper {
    padding-bottom: 30px !important;
  }
}
.wt-team-arc2 {
  padding: 20px;
  position: relative;
  z-index: 1;
}
.wt-team-arc2:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border: 3px solid #2f3b42;
  z-index: -1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.wt-team-arc2:hover:after {
  width: 50%;
  border: 3px solid #d5dd02;
}
.wt-team-arc2 .wt-media {
  position: relative;
  overflow: hidden;
}
.wt-team-arc2 .team-social-center {
  position: absolute;
  left: -100%;
  top: 0px;
  z-index: 2;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  height: 100%;
}
.wt-team-arc2:hover .team-social-center {
  left: 0%;
}
.wt-team-arc2 .team-social-icon {
  list-style: none;
  margin-bottom: 0px;
  position: relative;
  left: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wt-team-arc2 .team-social-icon li {
  display: block;
  margin: 0px 10px;
  background-color: #000;
}
.wt-team-arc2 .team-social-icon li a {
  color: #fff;
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.wt-team-arc2 .team-social-icon li a:hover {
  color: #ff0000;
}
.wt-team-arc2 .wt-info {
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}
.wt-team-arc2 .wt-info p {
  font-weight: 400;
  margin-bottom: 0px;
}
.wt-team-arc2.team-style2 {
  margin-top: 100px;
}
.wt-team-arc2:hover.team-style2 .team-social-center {
  bottom: -40px;
}
.wt-team-arc2.team-style2 .wt-media:after {
  display: none;
}
.wt-team-arc2.team-style2 .wt-media {
  padding: 0px;
}
.wt-team-arc2.wt-team-arc2-no-border {
  padding: 0px;
}
.wt-team-arc2.wt-team-arc2-no-border .wt-info {
  box-shadow: none;
}
.wt-team-arc2.wt-team-arc2-no-border:after {
  display: none;
}
.testimonial-slider-5 {
  margin-top: 50px;
}
.testimonial-5 {
  padding: 0px 2px;
  margin-bottom: -30px;
}
.testimonial-5 .testimonial-text {
  background-color: #191919;
  padding: 50px;
  position: relative;
}
.testimonial-5 .testimonial-text p {
  margin-bottom: 20px;
  color: #d4d4d4;
  font-style: normal;
}
.testimonial-5 .testimonial-pic-block {
  position: relative;
  width: 100%;
  left: 50px;
  bottom: 35px;
  right: 0px;
}
.testimonial-5 .testimonial-pic {
  border: 12px solid #fff;
  width: 100px;
  height: 100px;
}
.testimonial-5 .testimonial-paragraph {
  position: relative;
  padding-top: 50px;
}
.testimonial-5 .testimonial-detail .testimonial-name {
  padding: 0px;
  font-size: 30px;
  color: #fff;
  margin-bottom: 0px;
}
.testimonial-5 .testimonial-detail .testimonial-name:after {
  display: none;
}
.testimonial-5 .testimonial-detail .testimonial-position {
  font-size: 14px;
  color: #fff;
  padding: 0px 0px 15px 0px;
}
.testimonial-5 .testimonial-detail {
  padding-top: 0px;
}
.testimonial-5 .quote-left::before,
.testimonial-5 .quote-right::after {
  font-family: "FontAwesome";
  position: absolute;
  z-index: 10;
  font-size: 36px;
  opacity: 1;
}
.testimonial-5 .quote-left::before {
  content: "\f10d";
  left: 0px;
  top: -60px;
  color: #f00;
}
.quality-video2 {
  position: relative;
}
.cart-dropdown-item-wraper {
  top: 110%;
  right: 0px;
  position: absolute;
  z-index: 999;
  background-color: #f9f9f9;
  padding: 2px;
  border: 3px solid #eaeaea;
  width: 280px;
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .cart-dropdown-item-wraper {
    right: -50px;
  }
}
.nav-cart-items {
  position: relative;
}
.nav-cart-items:before {
  border-bottom: 8px solid #efefef;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: -12px;
  width: 0;
}
@media only screen and (max-width: 480px) {
  .nav-cart-items:before {
    right: 65px;
  }
}
.nav-cart-title {
  border-bottom: 1px solid #eee;
}
.nav-cart-title h4 {
  font-size: 24px;
  font-weight: 400;
  margin: 0px;
  margin-right: 5px;
}
.nav-cart-title h5 {
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}
.nav-cart-item {
  border-top: 1px solid #f5f5f5;
  padding: 10px;
  background-color: #fff;
}
.nav-cart-item-image {
  float: left;
  height: 48px;
  margin-right: 15px;
  transition: border-color 0.2s linear 0s;
  width: 48px;
}
.nav-cart-item-image a {
  display: block;
  height: 44px;
  width: 44px;
}
.nav-cart-item-image img {
  display: block;
  height: 44px;
  width: 44px;
}
.nav-cart-item-image:hover {
  border-color: #243447;
}
.nav-cart-item-desc {
  position: relative;
  padding-right: 15px;
}
.nav-cart-item-desc a {
  font-size: 13px;
  font-weight: 600;
  height: auto;
  text-align: left;
  width: auto;
}
.nav-cart-item-desc span.nav-cart-item-price {
  color: #000;
  display: block;
  font-size: 12px;
  line-height: 20px;
}
.nav-cart-item-desc a.nav-cart-item-quantity {
  color: #000;
  display: block;
  font-size: 12px;
  position: absolute;
  right: -5px;
  top: 2px;
  padding: 0px 6px 2px 6px;
}
.nav-cart-action {
  border-top: 1px solid #eee;
}
.nav-cart-action button {
  padding: 8px 10px;
  font-size: 12px;
}
.mid-slider {
  text-align: center !important;
}
.mid-slider .rev_slider_wrapper {
  max-width: 1460px !important;
  margin: 0px auto !important;
  left: auto !important;
  position: relative !important;
}
.mid-slider .tp-fullwidth-forcer {
  height: auto !important;
}
#search-two {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  display: none;
}
#search-two.open {
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  z-index: 999;
  display: block;
}
#search-two form {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -51px;
  width: 50%;
  margin-left: 25%;
  color: #fff;
  border: 1px solid #e7e7e7;
  font-size: 30px;
  font-weight: 300;
  text-align: left;
  outline: none;
  padding: 10px;
  border-radius: 0px;
}
@media only screen and (max-width: 640px) {
  #search-two form {
    width: 90%;
    margin-left: 5%;
  }
}
#search-two input[type=search] {
  background: none;
  border: none;
  padding: 0px 12px;
  outline: none;
  color: #000;
  font-size: 24px;
}
@media only screen and (max-width: 575px) {
  #search-two input[type=search] {
    font-size: 14px;
  }
}
#search-two input[type=search]:focus {
  box-shadow: none;
}
#search-two input[type=search]::placeholder {
  color: #000;
}
#search-two .search-btn {
  border: none;
  background: none;
  padding: 0px 30px;
  outline: none;
}
#search-two .search-btn i {
  font-size: 36px;
  color: dodgerblue;
}
#search-two .close {
  position: fixed;
  top: 30px;
  right: 30px;
  opacity: 1;
  font-size: 27px;
  color: #fff;
  width: 60px;
  height: 60px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  background-color: dodgerblue;
}
#search-two .close:after,
#search-two .close:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 32px;
  background-color: #fff;
  right: 28px;
  top: 16px;
}
#search-two .close:after {
  transform: rotate(45deg);
}
#search-two .close:before {
  transform: rotate(-45deg);
}
#search-two .close:hover:after,
#search-two .close:hover:before {
  cursor: pointer;
}
.description-list {
  margin: 30px 0px;
}
.description-list li {
  padding-left: 40px;
  font-weight: 600;
  color: #000;
  list-style: none;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.description-list li:last-child {
  margin-bottom: 0px;
}
.description-list li i {
  width: 26px;
  color: #fff;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  background-color: dodgerblue;
  font-size: 10px;
}
.play-now-video .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background-color: #fff;
  color: dodgerblue;
  z-index: 1;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}
.play-now-video .ripple,
.play-now-video .ripple:before,
.play-now-video .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 65px;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255, 94, 21);
  animation: ripple-video 3s infinite;
  z-index: 1;
}
.play-now-video .ripple:before {
  animation-delay: .9s;
  content: "";
  position: absolute;
}
.play-now-video .ripple:after {
  animation-delay: .6s;
  content: "";
  position: absolute;
}
@keyframes ripple-video {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.half-wide-bg-outer {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .half-wide-bg-outer {
    padding: 38px 30px;
  }
  .half-wide-bg-outer .service-box-style2 .service-content {
    padding: 20px;
  }
}
.half-wide-bg {
  background-color: dodgerblue;
  position: absolute;
  height: 100%;
  width: 4000px;
  right: 65%;
  top: 0px;
}
@media only screen and (max-width:991px) {
  .half-wide-bg {
    background-color: dodgerblue;
    position: absolute;
    height: 100%;
    width: auto;
    right: 15px;
    left: 15px;
    top: 0px;
  }
}
.service-gallery-style1-wrapper {
  overflow: hidden;
}
.services-gallery-style2 {
  padding-left: 50px;
  position: relative;
}
.services-gallery-style2 .owl-carousel .owl-stage-outer {
  display: table;
}
.services-gallery-style2 .services-gallery-two.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
  transition: all 0.2s linear;
}
.services-gallery-style2 .services-gallery-two.owl-btn-vertical-center .owl-nav .owl-prev {
  transition: all 0.2s linear;
}
.services-gallery-style2 .services-gallery-two:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
}
.services-gallery-style2 .services-gallery-two:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
}
.services-gallery-style2 .services-gallery-two .owl-nav {
  opacity: 0;
  transition: all 0.2s linear;
}
.services-gallery-style2 .services-gallery-two:hover .owl-nav {
  opacity: 1;
}
.service-box-style2 {
  position: relative;
  background-color: #000;
  transition: 0.5s all ease;
}
.service-box-style2 .service-content {
  padding: 20px 0px 0px 0px;
  background-color: #fff;
}
.service-box-style2 .service-content p {
  color: #000;
  margin-bottom: 20px;
}
.service-box-style2 .site-button-2 {
  display: inline-block;
  color: #000;
  border: 1px solid #000;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 15px;
}
.service-box-style2 .service-title-large {
  margin-bottom: 15px;
  position: relative;
}
.service-box-style2 .service-title-large a {
  color: #000;
  transition: 0.5s all ease;
}
.service-box-style2 .service-title-large a:hover {
  color: dodgerblue;
}
.service-box-style2 .service-media img {
  width: 100%;
}
.site-button-2 {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 15px;
}
@media only screen and (max-width:991px) {
  .services-gallery-style2 {
    padding-left: 0px;
  }
  .services-gallery-style2 .owl-carousel .owl-stage-outer {
    display: block;
  }
}
.site-button-2:hover {
  color: dodgerblue;
}
.home-client-carousel2 .client-logo {
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
}
.home-client-carousel2 .client-logo img {
  width: auto;
}
.team-carousel-wraper {
  margin-left: 60px;
}
@media only screen and (max-width: 480px) {
  .team-carousel-wraper {
    margin-left: 0px;
  }
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background: green;
  width: 0px;
  margin: 0px;
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev,
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next {
  color: #000;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 500;
  margin: 0px;
  margin-bottom: 0px;
  min-width: 100px;
  text-align: center;
  padding: 8px;
  border: 1px solid #000;
  line-height: normal;
  background-color: transparent;
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev {
  position: absolute;
  left: -90px;
  top: 33px;
  transform: rotate(-90deg);
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next {
  position: absolute;
  left: -90px;
  bottom: 30px;
  transform: rotate(-90deg);
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev i,
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next i {
  font-style: normal;
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev:hover,
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev:active,
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next:active {
  border: 1px solid transparent;
  background-color: #000;
  color: #fff;
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev:focus,
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next:focus {
  border: 1px solid transparent;
  color: #fff;
}
.team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next {
  margin-bottom: 0px;
}
@media only screen and (max-width: 480px) {
  .team-carousel-wraper .owl-btn-bottom-left .owl-nav {
    position: relative;
    margin: 20px 0px 30px 0px;
    bottom: auto;
    display: flex;
    text-align: inherit;
    justify-content: space-between;
    max-width: inherit;
    align-items: baseline;
    background-color: transparent;
    width: 100%;
  }
}
@media only screen and (max-width:480px) {
  .team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-prev {
    position: inherit;
    left: auto;
    top: auto;
    transform: none;
  }
  .team-carousel-wraper .owl-btn-bottom-left .owl-nav .owl-next {
    position: inherit;
    left: auto;
    right: 0px;
    bottom: auto;
    transform: none;
  }
}
.wt-team-2 {
  margin: 90px 0px 0px 0px;
  background-color: #eff3f6;
}
.wt-team-2 .wt-media {
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.wt-team-2 .wt-media img {
  margin-top: -110px;
  position: relative;
  z-index: 2;
  transition: all 0.3s linear;
}
.wt-team-2 .team-social-center {
  padding-top: 0px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 50px;
  z-index: 1;
  transition: all 0.3s linear;
}
.wt-team-2 .team-detail {
  padding-bottom: 20px;
}
.wt-team-2 .team-detail a:hover {
  color: dodgerblue;
}
.wt-team-2 .team-detail p {
  margin-bottom: 0px;
  color: dodgerblue;
}
.wt-team-2 .team-social-icon {
  text-align: center;
  list-style: none;
  margin-bottom: 0px;
}
.wt-team-2 .team-social-icon li {
  display: inline-block;
  margin: 0px 5px;
}
.wt-team-2 .team-social-icon li a {
  color: #fff;
  display: block;
  font-size: 14px;
  background-color: dodgerblue;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid transparent;
}
.wt-team-2 .team-social-icon li a:hover {
  background-color: #f9f9f9;
  color: #000;
  border: 1px solid #e7e7e7;
}
.wt-team-2:hover .wt-media img {
  transform: translateX(0px) translateY(-30px);
}
.wt-team-2:hover .team-social-center {
  bottom: 10px;
}
.get-in-touch-wraper {
  position: relative;
  z-index: 1;
}
.get-in-touch-wraper .get-in-touch {
  position: relative;
  margin-bottom: 30px;
}
.get-in-touch-wraper .get-in-touch-pic {
  position: relative;
  overflow: hidden;
}
.get-in-touch-wraper .get-in-touch-pic:before {
  content: "";
  background-image: url("./media/bg-dott2.png");
  background-color: #f9f9f9;
  left: 0px;
  top: 40px;
  bottom: 0px;
  width: 180px;
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}
.get-in-touch-wraper .get-in-touch .get-in-touch-info {
  margin-left: 30px;
  padding-right: 20px;
}
.get-in-touch-wraper .get-in-touch .get-in-touch-info .wt-title {
  margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .get-in-touch-wraper .get-in-touch .get-in-touch-info .wt-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .get-in-touch-wraper .get-in-touch .get-in-touch-info .wt-title {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .get-in-touch-wraper .get-in-touch-pic {
    margin-bottom: 30px;
  }
  .get-in-touch-wraper .get-in-touch .get-in-touch-info {
    margin-left: 0px;
  }
}
.get-in-touch-wraper .get-in-touch .get-in-touch-pic img {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .get-in-touch-wraper .get-in-touch .get-in-touch-pic img {
    position: relative;
    right: auto;
    bottom: auto;
    padding-top: 30px;
  }
}
.service-icon-box-three {
  position: relative;
  padding: 40px 40px 40px 40px;
  background-color: #fff;
  transition: all 0.3s linear;
  z-index: 0;
}
@media only screen and (max-width:1199px) {
  .service-icon-box-three {
    padding: 30px 20px 30px 20px;
  }
}
.service-icon-box-three .wt-icon-box-wraper {
  margin-bottom: 60px;
}
.service-icon-box-three .wt-icon-box-wraper.circle-bg {
  position: relative;
  z-index: 1;
}
.service-icon-box-three .wt-icon-box-wraper.circle-bg:before {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #ffecd1;
  z-index: -1;
  top: 5px;
  left: 50%;
  margin-left: -42px;
}
.service-icon-box-three .service-icon-box-title .wt-title {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .service-icon-box-three .service-icon-box-title .wt-title {
    padding-right: 0px;
  }
}
.service-icon-box-three .service-icon-box-content p {
  margin-bottom: 15px;
}
.service-icon-box-three.site-bg-black .service-icon-box-title .wt-title a {
  color: #fff;
}
.service-icon-box-three.site-bg-black .service-icon-box-content p {
  color: #fff;
}
.service-icon-box-three:hover {
  background-color: dodgerblue;
}
.service-icon-box-three:hover .wt-title a {
  color: #fff;
}
.service-icon-box-three:hover .service-icon-box-content .site-text-primary {
  color: #fff;
}
.service-icon-box-three:hover .service-icon-box-content p {
  color: #fff;
}
.service-icon-box-three .wt-icon-box-wraper.circle-bg .icon-cell {
  color: #000;
}
.service-icon-box-three:hover .wt-icon-box-wraper.circle-bg .icon-cell {
  color: #fff;
}
.service-icon-box-three:hover .wt-icon-box-wraper.circle-bg:before {
  background-color: rgba(0, 0, 0, 0.1);
}
.project-carousel .owl-stage-outer {
  padding-bottom: 30px;
}
.project-new-2 {
  position: relative;
}
.project-new-2 .wt-img-effect {
  position: relative;
}
.project-new-2 .project-new-content2 {
  position: relative;
  background-color: #fff;
  padding: 0px;
}
.project-new-2 .project-new-content2 span {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background-color: dodgerblue;
  padding: 5px 15px;
  margin-bottom: 20px;
}
.project-new-2 .project-new-content2 .wt-title {
  margin-bottom: 10px;
}
.project-new-2 .project-view {
  opacity: 1;
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
  position: absolute;
  right: 0px;
  top: 0px;
}
.project-new-2 .project-view .project-view-btn {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
}
.project-new-2 .project-view .project-view-btn i {
  width: 60px;
  height: 60px;
  font-size: 28px;
  line-height: 60px;
  display: block;
  text-align: center;
  background-color: dodgerblue;
  position: relative;
  color: #fff;
}
.project-new-2:hover .project-view {
  opacity: 1;
  z-index: 3;
  transform: scaleY(1);
}
.number-block-content .number-block-count {
  margin-bottom: 30px;
}
.number-block-content .number-block-count span {
  font-size: 72px;
  line-height: 72px;
  font-weight: 900;
  color: dodgerblue;
  display: inline-block;
  position: relative;
  padding: 20px 0px 20px 20px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .number-block-content .number-block-count span {
    font-size: 30px;
    line-height: 30px;
    padding: 20px;
  }
}
.number-block-content .number-block-count span:after {
  content: "";
  position: absolute;
  border: 3px solid #fff;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 60px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .number-block-content .number-block-count span:after {
    width: 100%;
  }
}
.number-block-content .number-block-count span.hide-line-block {
  padding-left: 0px;
  padding-bottom: 0px;
}
.number-block-content .number-block-count span.hide-line-block:after {
  display: none;
}
.number-block-content.white {
  color: #acacac;
}
.number-block-content.white .wt-tilte {
  color: #fff;
  margin-bottom: 15px;
}
.number-block-content .number-block-info p {
  margin-bottom: 0px;
}
.testimonial11-outer {
  padding: 50px;
}
@media only screen and (max-width: 575px) {
  .testimonial11-outer {
    padding: 30px;
  }
}
.testimonial-11-content {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .testimonial-11-content {
    padding-top: 20px;
  }
}
.testimonial-11-content .testimonial-11 {
  position: relative;
  padding: 20px;
  border: 1px solid #e8e8e8;
}
.testimonial-11-content .testimonial-11 .testimonial-pic-block {
  margin-right: 30px;
}
.testimonial-11-content .testimonial-11 .testimonial-pic {
  background: #fff;
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  padding: 5px;
}
@media only screen and (max-width: 640px) {
  .testimonial-11-content .testimonial-11 .testimonial-pic {
    margin-bottom: 20px;
  }
}
.testimonial-11-content .testimonial-11 .testimonial-pic.radius {
  border-radius: 100%;
}
.testimonial-11-content .testimonial-11 .testimonial-pic img {
  width: 100%;
  border-radius: 100%;
}
.testimonial-11-content .testimonial-11 .testimonial-info {
  padding: 0px;
}
.testimonial-11-content .testimonial-11 .testimonial-info .testimonial-name {
  display: block;
  margin-bottom: 10px;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
}
.testimonial-11-content .testimonial-11 .testimonial-info .testimonial-name:after {
  display: none;
}
.testimonial-11-content .testimonial-11 .testimonial-info .testimonial-position {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: dodgerblue;
}
.testimonial-11-content .testimonial-11 .testimonial-text {
  padding: 0px 0px 0px 0px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .testimonial-11-content .testimonial-11 .testimonial-text {
    padding: 0px 0px 0px 0px;
  }
}
.testimonial-11-content .testimonial-11 .testimonial-text p {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  padding-left: 100px;
}
.testimonial-11-content .testimonial-11 .testimonial-text i {
  color: dodgerblue;
  font-size: 60px;
  line-height: 60px;
  opacity: 0.2;
  position: absolute;
  left: 0px;
  top: 0px;
}
@media only screen and (max-width: 991px) {
  .testimonial-11-content .testimonial-11 .testimonial-text i {
    font-size: 48px;
    transform: none;
    line-height: 40px;
    top: 0px;
  }
  .testimonial-11-content .testimonial-11 .testimonial-text p {
    padding-left: 65px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-11-content .testimonial-11 .testimonial-text {
    padding: 0px;
  }
  .testimonial-11-content .testimonial-11 .testimonial-text p {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial-11-content .testimonial-11 .testimonial-text i {
    position: relative;
  }
}
.testimonial-11-content .testimonial-11 .testimonial-detail {
  padding: 0px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .testimonial-11-content .testimonial-11 .testimonial-detail {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .counter-outer-one [class*=icon-xl] {
    width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-outer-one [class*=icon-xl] i {
    font-size: 50px;
    line-height: 50px;
  }
}
.counter-outer-one.icon-circle {
  position: relative;
  z-index: 1;
}
.counter-outer-one.icon-circle:before {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #ffecd1;
  z-index: -1;
  top: 5px;
  left: 0%;
}
@media only screen and (max-width: 767px) {
  .counter-outer-one.icon-circle:before {
    width: 60px;
    height: 60px;
  }
}
.counter-outer-one .counter {
  font-size: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .counter-outer-one .counter {
    font-size: 24px;
  }
}
.counter-outer-one .icon-content-info {
  font-weight: 600;
  color: #000;
}
.counter-outer-one .icon-content .counter {
  color: #000;
}
.counter-outer-one .icon-content.site-text-white .icon-content-info {
  color: #acacac;
}
.counter-outer-one .icon-content.site-text-white .counter {
  color: #fff;
}
.blog-gallery-style1 {
  padding-left: 0px;
}
@media only screen and (max-width: 991px) {
  .blog-gallery-style1 {
    padding-left: 0px;
  }
}
.blog-gallery-style1 .owl-carousel .owl-stage-outer {
  display: table;
  position: relative;
}
@media only screen and (max-width:991px) {
  .blog-gallery-style1 .owl-carousel .owl-stage-outer {
    display: block;
    position: relative;
  }
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.blog-gallery-style1 .blog-gallery-one.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
  transition: all 0.2s linear;
  transform: translateY(-50%);
}
.blog-gallery-style1 .blog-gallery-one.owl-btn-vertical-center .owl-nav .owl-prev {
  transition: all 0.2s linear;
  transform: translateY(-50%);
}
.blog-gallery-style1 .blog-gallery-one:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
  line-height: 30px;
}
.blog-gallery-style1 .blog-gallery-one:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
  line-height: 30px;
}
.blog-gallery-style1 .blog-gallery-one .owl-nav {
  opacity: 0;
  transition: all 0.2s linear;
}
.blog-gallery-style1 .blog-gallery-one:hover .owl-nav {
  opacity: 1;
}
.blog-post-4-outer .wt-post-media img {
  width: 100%;
}
.blog-post-4-outer .wt-post-info {
  background-color: #fff;
  padding: 20px;
  margin-right: 40px;
  position: relative;
  z-index: 1;
  top: -40px;
  margin-bottom: -40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 575px) {
  .blog-post-4-outer .wt-post-info {
    margin-right: 20px;
  }
}
.blog-post-4-outer .wt-post-info .wt-post-meta {
  position: relative;
}
.blog-post-4-outer .wt-post-info .wt-post-meta ul {
  list-style: none;
  margin-bottom: 0px;
}
.blog-post-4-outer .wt-post-info .wt-post-meta ul li.post-date {
  background-color: dodgerblue;
  color: #fff;
  display: inline-table;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding: 8px 15px;
  font-weight: 700;
  position: absolute;
  left: -20px;
  top: -56px;
}
.blog-post-4-outer .wt-post-info .wt-post-meta ul li.post-category {
  font-size: 14px;
  font-weight: 600;
  color: dodgerblue;
}
.blog-post-4-outer .wt-post-info .wt-post-title .post-title {
  margin-bottom: 15px;
}
.blog-post-4-outer.post-bg-dark .wt-post-info {
  background-color: #000;
}
.blog-post-4-outer.post-bg-dark .wt-post-info .post-title a {
  color: #fff;
}
.blog-post-4-outer.post-bg-dark .wt-post-info .post-title a:hover {
  color: dodgerblue;
}
.blog-post-4-outer.post-bg-dark .wt-post-info a.site-text-primary:hover {
  color: #fff;
}
.blog-list-style .wt-post-info .wt-post-title .post-title {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .blog-list-style .wt-post-info .wt-post-title .post-title {
    font-size: 22px;
    line-height: 28px;
  }
}
.ripple-background {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.5;
  z-index: -1;
}
.pricingtable-inner:hover .ripple-background {
  opacity: 0.9;
}
.ls-circle {
  position: absolute;
  border-radius: 50%;
  background: dodgerblue;
  animation: ripple-1 5s infinite;
}
.ls-small {
  width: 80px;
  height: 80px;
  left: -40px;
  top: -40px;
}
.ls-medium {
  width: 160px;
  height: 160px;
  left: -80px;
  top: -80px;
}
.ls-large {
  width: 240px;
  height: 240px;
  left: -120px;
  top: -120px;
}
.ls-xlarge {
  width: 320px;
  height: 320px;
  left: -160px;
  top: -160px;
}
.ls-xxlarge {
  width: 400px;
  height: 400px;
  left: -200px;
  top: -200px;
}
@media only screen and (max-width:540px) {
  .ls-small {
    width: 60px;
    height: 60px;
    left: -30px;
    top: -30px;
  }
  .ls-medium {
    width: 120px;
    height: 120px;
    left: -60px;
    top: -60px;
  }
  .ls-large {
    width: 180px;
    height: 180px;
    left: -90px;
    top: -90px;
  }
  .ls-xlarge {
    width: 240px;
    height: 240px;
    left: -120px;
    top: -120px;
  }
  .ls-xxlarge {
    width: 300px;
    height: 300px;
    left: -150px;
    top: -150px;
  }
}
@media only screen and (max-width:380px) {
  .ls-small {
    width: 40px;
    height: 40px;
    left: -20px;
    top: -20px;
  }
  .ls-medium {
    width: 80px;
    height: 80px;
    left: -40px;
    top: -40px;
  }
  .ls-large {
    width: 120px;
    height: 120px;
    left: -60px;
    top: -60px;
  }
  .ls-xlarge {
    width: 160px;
    height: 160px;
    left: -80px;
    top: -80px;
  }
  .ls-xxlarge {
    width: 200px;
    height: 200px;
    left: -100px;
    top: -100px;
  }
}
.ls-shade1 {
  opacity: 0.5;
}
.ls-shade2 {
  opacity: 0.6;
}
.ls-shade3 {
  opacity: 0.7;
}
.ls-shade4 {
  opacity: 0.8;
}
.ls-shade5 {
  opacity: 0.9;
}
@keyframes ripple-1 {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}
.about-max-12 {
  position: relative;
  z-index: 1;
  padding: 0px 50px 50px 30px;
}
@media only screen and (max-width:991px) {
  .about-max-12 {
    max-width: 550px;
    margin: 0px auto;
  }
}
@media only screen and (max-width:540px) {
  .about-max-12 {
    max-width: 350px;
    margin: 0px auto;
  }
}
.about-max-12:before {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0px;
  background-image: none;
  background-repeat: no-repeat;
  z-index: -1;
  width: 100%;
  height: 38px;
}
.about-max-12:after {
  position: absolute;
  content: "";
  bottom: 0px;
  right: 0px;
  background-image: none;
  background-position: right bottom 34px;
  background-repeat: no-repeat;
  z-index: -1;
  width: 38px;
  height: 100%;
}
.ser-ipad-warp {
  position: relative;
  background-color: #fff;
  padding: 60px 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
  margin-left: 60px;
  margin-bottom: 40px;
}
.ser-ipad-pic {
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.ser-ipad-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.ser-ipad-cam {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0px;
  background-color: #777777;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  transform: translateX(-50%);
}
.ser-ipad-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  margin: -18px 0px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -webkit-box-shadow: inset 3px 3px 10px 5px rgba(0, 0, 0, 0.03);
  box-shadow: inset 3px 3px 10px 5px rgba(0, 0, 0, 0.03);
}
.ipad-pencil {
  position: absolute;
  left: 0px;
  top: 0px;
}
.ipad-pencil-jump {
  -webkit-animation: ipad-pencil-jump 1s ease-in-out infinite alternate both;
  animation: ipad-pencil-jump 1s ease-in-out infinite alternate both;
}
@-webkit-keyframes ipad-pencil-jump {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes ipad-pencil-jump {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@media only screen and (max-width:540px) {
  .about-max-12 .ser-ipad-warp {
    margin-left: 10px;
    margin-bottom: 0px;
  }
  .about-max-12 .ser-ipad-warp .ser-ipad-pic {
    height: 300px;
  }
  .ipad-pencil img {
    width: 75%;
  }
  .about-max-12:after,
  .about-max-12:before {
    background-size: 90%;
  }
}
.client-logo2 {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.client-logo2-media {
  margin-bottom: 30px;
  padding: 10px 70px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:991px) {
  .client-logo2-media {
    padding: 10px 40px;
  }
}
.client-logo2-media:after,
.client-logo2-media:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-color: transparent;
  border: none;
  opacity: 0;
  transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
}
.client-logo2-media:before {
  left: 10px;
  top: 10px;
  border-top: 4px solid dodgerblue;
  border-left: 4px solid dodgerblue;
}
.client-logo2-media:after {
  right: 10px;
  bottom: 10px;
  border-bottom: 4px solid dodgerblue;
  border-right: 4px solid dodgerblue;
}
.client-logo2-media:hover:after,
.client-logo2-media:hover:before {
  width: 30px;
  height: 30px;
  opacity: 1;
}
.client-logo2-media img {
  max-width: 100% !important;
  margin: 0px auto !important;
  width: auto !important;
}
.client-logo2-media:hover {
  background-color: #fff;
}
.client-logo2-border {
  border-top: 1px dashed #c5c5c5;
  border-right: 1px dashed #c5c5c5;
}
.client-logo2-border .client-logo2-media {
  margin-bottom: 0px;
  border-left: 1px dashed #c5c5c5;
  border-bottom: 1px dashed #c5c5c5;
}
.client-logo2-media.active:after,
.client-logo2-media.active:before {
  opacity: 1;
  width: 30px;
  height: 30px;
}
.client-logo2-media.active {
  background-color: #fff;
}
.latest-blog-11 {
  display: table;
  width: 100%;
}
.latest-blog-11 .wt-post-media {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.latest-blog-11 .wt-post-info {
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .latest-blog-11 .wt-post-media {
    display: block;
    width: 100%;
  }
  .latest-blog-11 .wt-post-info {
    display: block;
    width: 100%;
  }
}
.block-shadow {
  -webkit-box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .16);
  box-shadow: 0 10px 30px 0 rgba(50, 50, 50, .16);
}
.slider-block-12 {
  border: 16px solid #c8c8c8;
}
.ab-call-us {
  box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width:480px) {
  .ab-call-us .icon-xl {
    width: 50px;
    line-height: 40px;
  }
  .ab-call-us .icon-xl i {
    font-size: 40px;
    line-height: 40px;
  }
  .ab-call-us .wt-tilte {
    font-size: 18px;
  }
  .ab-call-us .wt-icon-box-wraper {
    padding: 20px;
  }
}
.imghvr1 {
  position: relative;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  background-color: rgba(230, 230, 230, .7);
  color: #666;
  overflow: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.imghvr1 img {
  vertical-align: top;
  max-width: 100%;
}
.imghvr1 figcaption {
  background-color: rgba(255, 255, 255, .9);
  padding: 20px;
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border: 1px solid rgba(0, 0, 0, .1);
  -webkit-transform: translateY(120%);
  transform: translateY(120%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.imghvr1,
.imghvr1 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}
.imghvr1:hover figcaption {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.imghvr1:hover img {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.services-gallery-style12 {
  position: relative;
}
.services-gallery-style12 .services-gallery-two.owl-btn-vertical-center .owl-nav .owl-next {
  right: -1px;
  transition: all 0.2s linear;
}
.services-gallery-style12 .services-gallery-two.owl-btn-vertical-center .owl-nav .owl-prev {
  transition: all 0.2s linear;
}
.services-gallery-style12 .services-gallery-two:hover.owl-btn-vertical-center .owl-nav .owl-next {
  right: 5%;
}
.services-gallery-style12 .services-gallery-two:hover.owl-btn-vertical-center .owl-nav .owl-prev {
  left: 5%;
}
.services-gallery-style12 .services-gallery-two .owl-nav {
  opacity: 0;
  transition: all 0.2s linear;
}
.services-gallery-style12 .services-gallery-twelve:hover .owl-nav {
  opacity: 1;
}
.service-box-style12 {
  position: relative;
  background-color: #000;
  transition: 0.5s all ease;
}
.service-box-style12 .service-content {
  padding: 20px 0px 0px 0px;
  background-color: #fff;
}
.service-box-style12 .service-content p {
  color: #000;
  margin-bottom: 20px;
}
.service-box-style12 .site-button-2 {
  display: inline-block;
  color: #000;
  border: 1px solid #000;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 15px;
}
.service-box-style12 .service-title-large {
  margin-bottom: 15px;
  position: relative;
}
.service-box-style12 .service-title-large a {
  color: #000;
  transition: 0.5s all ease;
}
.service-box-style12 .service-title-large a:hover {
  color: dodgerblue;
}
.service-box-style12 .service-media img {
  width: 100%;
}
.services-tabs {
  position: relative;
  display: inline-block;
}
.sr-btn-filter-wrap {
  display: flex;
  list-style: none;
  align-items: center;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  margin-bottom: 50px;
}
.sr-btn-filter-wrap li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sr-btn-filter-wrap li img {
  width: 40px;
  margin: 0px 10px;
}
.sr-btn-filter-wrap li.sr-btn-circle {
  border-radius: 50%;
  background-color: #1c63b8;
  width: 70px;
  height: 70px;
  color: #fff;
  line-height: 70px;
  padding: 0px;
  text-align: center;
  display: block;
  position: absolute;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.sr-btn-filter-wrap li.btn-active.sr-btn-circle {
  background-color: #1c63b8;
}
.sr-btn-filter-wrap li:first-child.btn-active {
  background-color: #fff;
  border-radius: 50px 0px 0px 50px;
  color: #1c63b8;
  border: 1px solid #1c63b8;
}
.sr-btn-filter-wrap li:first-child {
  padding: 20px 50px 20px 20px;
  border: 1px solid #b3b3b3;
  border-radius: 50px 0px 0px 50px;
}
.sr-btn-filter-wrap li:last-child.btn-active {
  background-color: #fff;
  border-radius: 0px 50px 50px 0px;
  color: #ff6d55;
  border: 1px solid #ff6d55;
}
.sr-btn-filter-wrap li:last-child {
  flex-direction: row-reverse;
  padding: 20px 20px 20px 50px;
  border: 1px solid #b3b3b3;
  border-radius: 0px 50px 50px 0px;
}
@media only screen and (max-width:400px) {
  .sr-btn-filter-wrap li img {
    width: 24px;
  }
  .sr-btn-filter-wrap li:first-child {
    padding: 10px 30px 10px 10px;
  }
  .sr-btn-filter-wrap li:last-child {
    padding: 10px 10px 10px 30px;
  }
  .sr-btn-filter-wrap li.sr-btn-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.ap-section-outer {
  background-image: none;
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.ap-section {
  max-width: 580px;
}
.ap-section p {
  padding-bottom: 20px;
}
.ap-section h2 {
  max-width: 600px;
}
.ap-section-outer {
  position: relative;
  z-index: 1;
}
.testimonial-12-content {
  position: relative;
  margin: 0px -15px 30px -15px;
  width: auto;
}
.testimonial-12-content .testimonial-12 {
  position: relative;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin: 15px;
  opacity: 0.8;
}
@media only screen and (max-width: 420px) {
  .testimonial-12-content .testimonial-12 {
    padding: 20px;
  }
}
.testimonial-12-content .testimonial-12 .testimonial-pic-block {
  margin-right: 30px;
}
.testimonial-12-content .testimonial-12 .testimonial-pic {
  background: #fff;
  width: 70px;
  height: 70px;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-12-content .testimonial-12 .testimonial-pic.radius {
  border-radius: 100%;
}
.testimonial-1-content .testimonial-12 .testimonial-pic img {
  width: 100%;
  border-radius: 100%;
}
@media only screen and (max-width: 640px) {
  .testimonial-2-content .testimonial-12 .testimonial-pic {
    margin-bottom: 20px;
  }
}
.testimonial-12-content .testimonial-12 .testimonial-info {
  padding: 0px;
}
.testimonial-12-content .testimonial-12 .testimonial-info .testimonial-name {
  display: block;
  font-family: "Teko", sans-serif;
  margin-bottom: 0px;
  color: #000;
  font-size: 24px;
  font-weight: 500;
}
.testimonial-12-content .testimonial-12 .testimonial-info .testimonial-name:after {
  display: none;
}
.testimonial-12-content .testimonial-12 .testimonial-info .testimonial-position {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #1c63b8;
}
.testimonial-12-content .testimonial-12 .testimonial-text {
  padding: 0px 0px 0px 0px;
  position: relative;
  z-index: 1;
}
.testimonial-12-content .testimonial-12 .testimonial-text p {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
}
.testimonial-12-content .testimonial-12 .testimonial-text i {
  color: #1c63b8;
  font-size: 90px;
  line-height: 60px;
  display: flex;
  justify-content: flex-end;
  opacity: 0.1;
}
@media only screen and (max-width: 640px) {
  .testimonial-12-content .testimonial-12 .testimonial-text i {
    font-size: 48px;
    top: -40px;
  }
}
.testimonial-12-content .testimonial-12 .testimonial-detail {
  padding: 0px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .testimonial-12-content .testimonial-12 .testimonial-detail {
    display: block;
  }
}
.testimonial-12-content .owl-item.active.center .testimonial-12 {
  opacity: 1;
}
.home12-contact-section .form-control {
  background-color: #eff3f6;
}
.home12-contact-section {
  margin-left: 15px;
}
.home12-contact-section .form-control::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
}
.home12-contact-section .form-control::-moz-placeholder {
  color: #000;
  font-size: 14px;
}
.home12-contact-section .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 14px;
}
.home12-contact-section .form-control:-moz-placeholder {
  color: #000;
  font-size: 14px;
}
.home12-contact-section-wrap .contact-right12-section {
  position: relative;
  z-index: 1;
  margin-left: 40px;
  margin-bottom: 70px;
}
.home12-contact-section-wrap .contact-right12-section:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: -40px;
  bottom: -40px;
  width: 100%;
  height: 100%;
  background-image: none;
}
@media only screen and (max-width:400px) {
  .home12-contact-section {
    margin-left: 0px;
  }
  .wt-icon-box-wraper {
    display: none;
  }
  .acod-head a {
    font-size: 16px;
    text-align: start;
  }
}
.post-style-12 .wt-post-info {
  margin: 0px 20px -30px 20px;
  position: relative;
  top: -30px;
  z-index: 1;
}
.post-style-12 .wt-post-info .wt-post-content {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #efefef;
}
.post-style-12 .wt-post-info:before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 25px;
  right: 25px;
  bottom: 0px;
  border-radius: 0px 0px 10px 10px;
  height: 100%;
  background-color: #1c63b8;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.post-style-12 .wt-post-info .wt-post-title {
  margin-bottom: 0px;
}
.post-style-12:hover .wt-post-info:before {
  bottom: -8px;
}
.section-content img {
  border-radius: 15px;
  width: 65%;
  margin: 25px;
}
.section-content .text-left .wt-title {
  text-align: center;
}
.wrapper {
  align-items: center;
  margin: auto;
  padding: 50px 70px;
  padding-bottom: 45px;
  width: 60%;
  border-radius: (10px);
  box-shadow: (0px 40px 80px 0px rgba(2, 2, 26, 0.14));
  z-index: 11;
}
@media screen and (max-width: 1100px) {
  .wrapper {
    width: 100%;
  }
}
.wrapper .form-group {
  width: 75%;
  position: relative;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: center;
}
.wrapper :is(input:required:invalid, input:focus:invalid) {
  border: rgb(247, 143, 6) solid 3px;
  background-position: right top;
  background-repeat: no-repeat;
}
.wrapper .form-control {
  height: 60px;
  padding: 0 15px;
  position: relative;
  background: transparent;
  color: rgb(11, 11, 11);
  border: 2px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.wrapper .form-control:focus {
  border-color: #80bdff;
  outline: 0;
  border: 2px solid green;
  box-shadow: 0 0 0 0.2rem rgba(8, 168, 53, 0.25);
}
.wrapper .form-control-placeholder {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0.375rem 0.75rem;
  transition: 0.3s ease;
  opacity: 0.5;
  pointer-events: none;
}
.wrapper :is(.form-control:focus + .form-control-placeholder, .form-control:not(:placeholder-shown) + .form-control-placeholder) {
  font-size: 16px;
  top: 0;
  padding: 0 10px;
  opacity: 1;
  background-color: white;
}
.wrapper textarea.form-control + .form-control-placeholder {
  transform-origin: 0 0;
}
.wrapper textarea.form-control {
  padding-top: 15px;
}
.wrapper #message {
  margin-top: 20px;
  padding-top: 20px;
}
.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s ease-out, background-color 0.2s ease-out;
  position: relative;
}
.step-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step img,
.step.active {
  width: 100px;
  height: 100px;
  font-weight: bold;
  margin-bottom: 5px;
  border-radius: 40%;
  transition: background 0.2s ease-out;
}
.step img:hover,
.step img:active,
.step.active {
  transition: background 0.2s ease-out;
  background:
    linear-gradient(
      135deg,
      #007bff,
      #0056b3);
}
.step p {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}
.arrow {
  margin-top: 10px;
  width: 24px;
  height: 24px;
}
.description {
  width: 100%;
  max-width: 750px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #007bff,
      dodgerblue);
  color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  transition: all 0.2s ease;
}
.description h3 {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: white;
}
.description p {
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  .steps {
    flex-direction: row;
    overflow: auto;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  .step img {
    width: 40px;
    height: 40px;
  }
  .arrow {
    width: 18px;
    height: 18px;
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.6);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}
#scaleUp {
  visibility: visible;
  animation-timeline: view();
  animation-range: entry 30% cover 40%;
  animation-name: scaleUp;
  animation-duration: 4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes scaleUpBlock {
  0% {
    transform: scale(0.6);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
#scaleUpBlock {
  visibility: visible;
  animation-timeline: view();
  animation-range: entry 30% cover 40%;
  animation-name: scaleUpBlock;
  animation-duration: 4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
#fadeInUp {
  visibility: visible;
  animation-timeline: view();
  animation-range: entry 20% cover 40%;
  animation-duration: 2s;
  animation-name: fadeInUp;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
#fadeInLeft {
  visibility: visible;
  animation-timeline: view();
  animation-range: entry 30% cover 40%;
  animation-duration: 2s;
  animation-name: fadeInLeft;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@media only screen and (max-width: 500px) {
  .row.col-xl-11.col-lg-12.col-md-12.services-section-content-right {
    margin-left: -8px;
  }
  .Services {
    margin-top: 10px;
  }
}
@media only screen and (min-width:1500px) {
  .footer-h-right {
    margin-left: 100px;
    width: 1000px;
  }
  .widget_services {
    margin-left: 100px;
    margin-right: 150px;
  }
}
#fadeInBottom {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
#fadeInBottom.in-view {
  opacity: 1;
  transform: translateY(0);
}
img:hover {
  transform: scale(1.1);
}

/* src/assets/plugins/revolution/revolution/css/settings.css */
#debungcontrolls,
.debugtimeline {
  width: 100%;
  box-sizing: border-box;
}
.rev_column,
.rev_column .tp-parallax-wrap,
.tp-svg-layer svg {
  vertical-align: top;
}
#debungcontrolls {
  z-index: 100000;
  position: fixed;
  bottom: 0;
  height: auto;
  background: rgba(0, 0, 0, .6);
  padding: 10px;
}
.debugtimeline {
  height: 10px;
  position: relative;
  margin-bottom: 3px;
  display: none;
  white-space: nowrap;
}
.debugtimeline:hover {
  height: 15px;
}
.the_timeline_tester {
  background: #e74c3c;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
}
.rs-go-fullscreen {
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 9999999 !important;
  background: #fff !important;
}
.debugtimeline.tl_slide .the_timeline_tester {
  background: #f39c12;
}
.debugtimeline.tl_frame .the_timeline_tester {
  background: #3498db;
}
.debugtimline_txt {
  color: #fff;
  font-weight: 400;
  font-size: 7px;
  position: absolute;
  left: 10px;
  top: 0;
  white-space: nowrap;
  line-height: 10px;
}
.rtl {
  direction: rtl;
}
@font-face {
  font-family: revicons;
  src: url("./media/revicons.eot?5510888");
  src:
    url("./media/revicons.eot?5510888#iefix") format("embedded-opentype"),
    url("./media/revicons.woff?5510888") format("woff"),
    url("./media/revicons.ttf?5510888") format("truetype"),
    url("./media/revicons.svg?5510888#revicons") format("svg");
  font-weight: 400;
  font-style: normal;
}
[class*=" revicon-"]:before,
[class^=revicon-]:before {
  font-family: revicons;
  font-style: normal;
  font-weight: 400;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
}
.revicon-search-1:before {
  content: "\e802";
}
.revicon-pencil-1:before {
  content: "\e831";
}
.revicon-picture-1:before {
  content: "\e803";
}
.revicon-cancel:before {
  content: "\e80a";
}
.revicon-info-circled:before {
  content: "\e80f";
}
.revicon-trash:before {
  content: "\e801";
}
.revicon-left-dir:before {
  content: "\e817";
}
.revicon-right-dir:before {
  content: "\e818";
}
.revicon-down-open:before {
  content: "\e83b";
}
.revicon-left-open:before {
  content: "\e819";
}
.revicon-right-open:before {
  content: "\e81a";
}
.revicon-angle-left:before {
  content: "\e820";
}
.revicon-angle-right:before {
  content: "\e81d";
}
.revicon-left-big:before {
  content: "\e81f";
}
.revicon-right-big:before {
  content: "\e81e";
}
.revicon-magic:before {
  content: "\e807";
}
.revicon-picture:before {
  content: "\e800";
}
.revicon-export:before {
  content: "\e80b";
}
.revicon-cog:before {
  content: "\e832";
}
.revicon-login:before {
  content: "\e833";
}
.revicon-logout:before {
  content: "\e834";
}
.revicon-video:before {
  content: "\e805";
}
.revicon-arrow-combo:before {
  content: "\e827";
}
.revicon-left-open-1:before {
  content: "\e82a";
}
.revicon-right-open-1:before {
  content: "\e82b";
}
.revicon-left-open-mini:before {
  content: "\e822";
}
.revicon-right-open-mini:before {
  content: "\e823";
}
.revicon-left-open-big:before {
  content: "\e824";
}
.revicon-right-open-big:before {
  content: "\e825";
}
.revicon-left:before {
  content: "\e836";
}
.revicon-right:before {
  content: "\e826";
}
.revicon-ccw:before {
  content: "\e808";
}
.revicon-arrows-ccw:before {
  content: "\e806";
}
.revicon-palette:before {
  content: "\e829";
}
.revicon-list-add:before {
  content: "\e80c";
}
.revicon-doc:before {
  content: "\e809";
}
.revicon-left-open-outline:before {
  content: "\e82e";
}
.revicon-left-open-2:before {
  content: "\e82c";
}
.revicon-right-open-outline:before {
  content: "\e82f";
}
.revicon-right-open-2:before {
  content: "\e82d";
}
.revicon-equalizer:before {
  content: "\e83a";
}
.revicon-layers-alt:before {
  content: "\e804";
}
.revicon-popup:before {
  content: "\e828";
}
.rev_slider_wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
}
.rev_slider {
  position: relative;
  overflow: visible;
}
.entry-content .rev_slider a,
.rev_slider a {
  box-shadow: none;
}
.tp-overflow-hidden {
  overflow: hidden !important;
}
.group_ov_hidden {
  overflow: hidden;
}
.rev_slider img,
.tp-simpleresponsive img {
  max-width: none !important;
  transition: none;
  margin: 0;
  padding: 0;
  border: none;
}
.rev_slider .no-slides-text {
  font-weight: 700;
  text-align: center;
  padding-top: 80px;
}
.rev_slider > ul,
.rev_slider > ul > li,
.rev_slider > ul > li:before,
.rev_slider_wrapper > ul,
.tp-revslider-mainul > li,
.tp-revslider-mainul > li:before,
.tp-simpleresponsive > ul,
.tp-simpleresponsive > ul > li,
.tp-simpleresponsive > ul > li:before {
  list-style: none !important;
  position: absolute;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: visible;
  overflow-y: visible;
  background-image: none;
  background-position: 0 0;
  text-indent: 0;
  top: 0;
  left: 0;
}
.rev_slider > ul > li,
.rev_slider > ul > li:before,
.tp-revslider-mainul > li,
.tp-revslider-mainul > li:before,
.tp-simpleresponsive > ul > li,
.tp-simpleresponsive > ul > li:before {
  visibility: hidden;
}
.tp-revslider-mainul,
.tp-revslider-slidesli {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.fullscreen-container,
.fullwidthbanner-container {
  padding: 0;
  position: relative;
}
.rev_slider li.tp-revslider-slidesli {
  position: absolute !important;
}
.tp-caption .rs-untoggled-content {
  display: block;
}
.tp-caption .rs-toggled-content {
  display: none;
}
.rs-toggle-content-active.tp-caption .rs-toggled-content {
  display: block;
}
.rs-toggle-content-active.tp-caption .rs-untoggled-content {
  display: none;
}
.rev_slider .caption,
.rev_slider .tp-caption {
  position: relative;
  visibility: hidden;
  white-space: nowrap;
  display: block;
  -webkit-font-smoothing: antialiased !important;
  z-index: 1;
}
.rev_slider .caption,
.rev_slider .tp-caption,
.tp-simpleresponsive img {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap :last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap :last-child {
  margin-bottom: 0;
}
.tp-svg-layer svg {
  width: 100%;
  height: 100%;
  position: relative;
}
.tp-carousel-wrapper {
  cursor: url("./media/openhand.cur"), move;
}
.tp-carousel-wrapper.dragged {
  cursor: url("./media/closedhand.cur"), move;
}
.tp_inner_padding {
  box-sizing: border-box;
  max-height: none !important;
}
.tp-caption.tp-layer-selectable {
  -moz-user-select: all;
  -khtml-user-select: all;
  -webkit-user-select: all;
  -o-user-select: all;
}
.tp-caption.tp-hidden-caption,
.tp-forcenotvisible,
.tp-hide-revslider,
.tp-parallax-wrap.tp-hidden-caption {
  visibility: hidden !important;
  display: none !important;
}
.rev_slider audio,
.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider video {
  max-width: none !important;
}
.tp-element-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transform: scaleX(0) scaleY(0);
}
.tp-parallax-wrap {
  transform-style: preserve-3d;
}
.rev_row_zone {
  position: absolute;
  width: 100%;
  left: 0;
  box-sizing: border-box;
  min-height: 50px;
  font-size: 0;
}
.rev_column_inner,
.rev_slider .tp-caption.rev_row {
  position: relative;
  width: 100% !important;
  box-sizing: border-box;
}
.rev_row_zone_top {
  top: 0;
}
.rev_row_zone_middle {
  top: 50%;
  transform: translateY(-50%);
}
.rev_row_zone_bottom {
  bottom: 0;
}
.rev_slider .tp-caption.rev_row {
  display: table;
  table-layout: fixed;
  vertical-align: top;
  height: auto !important;
  font-size: 0;
}
.rev_column {
  display: table-cell;
  position: relative;
  height: auto;
  box-sizing: border-box;
  font-size: 0;
}
.rev_column_inner {
  display: block;
  height: auto !important;
  white-space: normal !important;
}
.rev_column_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  box-sizing: border-box;
  background-clip: content-box;
  border: 0 solid transparent;
}
.tp-caption .backcorner,
.tp-caption .backcornertop,
.tp-caption .frontcorner,
.tp-caption .frontcornertop {
  height: 0;
  top: 0;
  width: 0;
  position: absolute;
}
.rev_column_inner .tp-loop-wrap,
.rev_column_inner .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap {
  text-align: inherit;
}
.rev_column_inner .tp-mask-wrap {
  display: inline-block;
}
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  line-height: 0;
}
.tp-video-play-button,
.tp-video-play-button i {
  line-height: 50px !important;
  vertical-align: top;
  text-align: center;
}
.rev_column_inner .rev_layer_in_column,
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap {
  vertical-align: top;
}
.rev_break_columns {
  display: block !important;
}
.rev_break_columns .tp-parallax-wrap.rev_column {
  display: block !important;
  width: 100% !important;
}
.fullwidthbanner-container {
  overflow: hidden;
}
.fullwidthbanner-container .fullwidthabanner {
  width: 100%;
  position: relative;
}
.tp-static-layers {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
}
.tp-caption .frontcorner {
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-top: 40px solid #00A8FF;
  left: -40px;
}
.tp-caption .backcorner {
  border-left: 0 solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #00A8FF;
  right: 0;
}
.tp-caption .frontcornertop {
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 40px solid #00A8FF;
  left: -40px;
}
.tp-caption .backcornertop {
  border-left: 0 solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #00A8FF;
  right: 0;
}
.tp-layer-inner-rotation {
  position: relative !important;
}
img.tp-slider-alternative-image {
  width: 100%;
  height: auto;
}
.caption.fullscreenvideo,
.rs-background-video-layer,
.tp-caption.coverscreenvideo,
.tp-caption.fullscreenvideo {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.noFilterClass {
  filter: none !important;
}
.rs-background-video-layer {
  visibility: hidden;
  z-index: 0;
}
.caption.fullscreenvideo audio,
.caption.fullscreenvideo iframe,
.caption.fullscreenvideo video,
.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe audio,
.tp-caption.fullscreenvideo iframe video {
  width: 100% !important;
  height: 100% !important;
  display: none;
}
.fullcoveredvideo audio,
.fullscreenvideo audio .fullcoveredvideo video,
.fullscreenvideo video {
  background: #000;
}
.fullcoveredvideo .tp-poster {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.videoisplaying .html5vid .tp-poster {
  display: none;
}
.tp-video-play-button {
  background: #000;
  background: rgba(0, 0, 0, .3);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  margin-top: -25px;
  margin-left: -25px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  display: inline-block;
  z-index: 4;
  opacity: 0;
  transition: opacity .3s ease-out !important;
}
.tp-audio-html5 .tp-video-play-button,
.tp-hiddenaudio {
  display: none !important;
}
.tp-caption .html5vid {
  width: 100% !important;
  height: 100% !important;
}
.tp-video-play-button i {
  width: 50px;
  height: 50px;
  display: inline-block;
  font-size: 40px !important;
}
.rs-fullvideo-cover,
.tp-dottedoverlay,
.tp-shadowcover {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.tp-caption:hover .tp-video-play-button {
  opacity: 1;
  display: block;
}
.tp-caption .tp-revstop {
  display: none;
  border-left: 5px solid #fff !important;
  border-right: 5px solid #fff !important;
  margin-top: 15px !important;
  line-height: 20px !important;
  vertical-align: top;
  font-size: 25px !important;
}
.tp-seek-bar,
.tp-video-button,
.tp-volume-bar {
  outline: 0;
  line-height: 12px;
  margin: 0;
  cursor: pointer;
}
.videoisplaying .revicon-right-dir {
  display: none;
}
.videoisplaying .tp-revstop {
  display: inline-block;
}
.videoisplaying .tp-video-play-button {
  display: none;
}
.fullcoveredvideo .tp-video-play-button {
  display: none !important;
}
.fullscreenvideo .fullscreenvideo audio,
.fullscreenvideo .fullscreenvideo video {
  object-fit: contain !important;
}
.fullscreenvideo .fullcoveredvideo audio,
.fullscreenvideo .fullcoveredvideo video {
  object-fit: cover !important;
}
.tp-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  opacity: 0;
  transition: opacity .3s;
  background-image:
    linear-gradient(
      to bottom,
      #000 13%,
      #323232 100%);
  display: table;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.rev-btn.rev-hiddenicon i,
.rev-btn.rev-withicon i {
  transition: all .2s ease-out !important;
  font-size: 15px;
}
.tp-caption:hover .tp-video-controls {
  opacity: .9;
}
.tp-video-button {
  background: rgba(0, 0, 0, .5);
  border: 0;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  padding: 0;
}
.tp-video-button:hover {
  cursor: pointer;
}
.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap {
  padding: 0 5px;
  display: table-cell;
  vertical-align: middle;
}
.tp-video-seek-bar-wrap {
  width: 80%;
}
.tp-video-vol-bar-wrap {
  width: 20%;
}
.tp-seek-bar,
.tp-volume-bar {
  width: 100%;
  padding: 0;
}
.rs-fullvideo-cover {
  width: 100%;
  background: 0 0;
  z-index: 5;
}
.disabled_lc .tp-video-play-button,
.rs-background-video-layer audio::-webkit-media-controls,
.rs-background-video-layer video::-webkit-media-controls,
.rs-background-video-layer video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.tp-audio-html5 .tp-video-controls {
  opacity: 1 !important;
  visibility: visible !important;
}
.tp-dottedoverlay {
  background-repeat: repeat;
  width: 100%;
  z-index: 3;
}
.tp-dottedoverlay.twoxtwo {
  background: url("./media/gridtile.png");
}
.tp-dottedoverlay.twoxtwowhite {
  background: url("./media/gridtile_white.png");
}
.tp-dottedoverlay.threexthree {
  background: url("./media/gridtile_3x3.png");
}
.tp-dottedoverlay.threexthreewhite {
  background: url("./media/gridtile_3x3_white.png");
}
.tp-shadowcover {
  width: 100%;
  background: #fff;
  z-index: -1;
}
.tp-shadow1 {
  box-shadow: 0 10px 6px -6px rgba(0, 0, 0, .8);
}
.tp-shadow2:after,
.tp-shadow2:before,
.tp-shadow3:before,
.tp-shadow4:after {
  z-index: -2;
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 50%;
  top: 85%;
  max-width: 300px;
  background: 0 0;
  box-shadow: 0 15px 10px rgba(0, 0, 0, .8);
  transform: rotate(-3deg);
}
.tp-shadow2:after,
.tp-shadow4:after {
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}
.tp-shadow5 {
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3), 0 0 40px rgba(0, 0, 0, .1) inset;
}
.tp-shadow5:after,
.tp-shadow5:before {
  content: "";
  position: absolute;
  z-index: -2;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, .6);
  top: 30%;
  bottom: 0;
  left: 20px;
  right: 20px;
  border-radius: 100px/20px;
}
.tp-button {
  padding: 6px 13px 5px;
  border-radius: 3px;
  height: 30px;
  cursor: pointer;
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .6) !important;
  font-size: 15px;
  line-height: 45px !important;
  font-family: arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  text-decoration: none;
}
.tp-button.big {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .6);
  font-weight: 700;
  padding: 9px 20px;
  font-size: 19px;
  line-height: 57px !important;
}
.purchase:hover,
.tp-button.big:hover,
.tp-button:hover {
  background-position: bottom, 15px 11px;
}
.purchase.green,
.purchase:hover.green,
.tp-button.green,
.tp-button:hover.green {
  background-color: #21a117;
  box-shadow: 0 3px 0 0 #104d0b;
}
.purchase.blue,
.purchase:hover.blue,
.tp-button.blue,
.tp-button:hover.blue {
  background-color: #1d78cb;
  box-shadow: 0 3px 0 0 #0f3e68;
}
.purchase.red,
.purchase:hover.red,
.tp-button.red,
.tp-button:hover.red {
  background-color: #cb1d1d;
  box-shadow: 0 3px 0 0 #7c1212;
}
.purchase.orange,
.purchase:hover.orange,
.tp-button.orange,
.tp-button:hover.orange {
  background-color: #f70;
  box-shadow: 0 3px 0 0 #a34c00;
}
.purchase.darkgrey,
.purchase:hover.darkgrey,
.tp-button.darkgrey,
.tp-button.grey,
.tp-button:hover.darkgrey,
.tp-button:hover.grey {
  background-color: #555;
  box-shadow: 0 3px 0 0 #222;
}
.purchase.lightgrey,
.purchase:hover.lightgrey,
.tp-button.lightgrey,
.tp-button:hover.lightgrey {
  background-color: #888;
  box-shadow: 0 3px 0 0 #555;
}
.rev-btn,
.rev-btn:visited {
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 44px;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 35px;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  cursor: pointer;
}
.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 900;
}
.rev-btn.rev-withicon i {
  font-weight: 400;
  position: relative;
  top: 0;
  margin-left: 10px !important;
}
.rev-btn.rev-hiddenicon i {
  font-weight: 400;
  position: relative;
  top: 0;
  opacity: 0;
  margin-left: 0 !important;
  width: 0 !important;
}
.rev-btn.rev-hiddenicon:hover i {
  opacity: 1 !important;
  margin-left: 10px !important;
  width: auto !important;
}
.rev-btn.rev-medium,
.rev-btn.rev-medium:visited {
  line-height: 36px;
  font-size: 14px;
  padding: 10px 30px;
}
.rev-btn.rev-medium.rev-hiddenicon i,
.rev-btn.rev-medium.rev-withicon i {
  font-size: 14px;
  top: 0;
}
.rev-btn.rev-small,
.rev-btn.rev-small:visited {
  line-height: 28px;
  font-size: 12px;
  padding: 7px 20px;
}
.rev-btn.rev-small.rev-hiddenicon i,
.rev-btn.rev-small.rev-withicon i {
  font-size: 12px;
  top: 0;
}
.rev-maxround {
  border-radius: 30px;
}
.rev-minround {
  border-radius: 3px;
}
.rev-burger {
  position: relative;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 22px 0 0 14px;
  border-radius: 50%;
  border: 1px solid rgba(51, 51, 51, .25);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.rev-burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  transition: .7s;
  pointer-events: none;
  transform-style: flat !important;
}
.rev-burger.revb-white span,
.rev-burger.revb-whitenoborder span {
  background: #fff;
}
.rev-burger span:nth-child(2) {
  margin: 3px 0;
}
#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
  transform: translateY(6px) rotate(-45deg);
}
#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
  transform: rotate(-45deg);
  opacity: 0;
}
#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
  transform: translateY(-6px) rotate(-135deg);
}
.rev-burger.revb-white {
  border: 2px solid rgba(255, 255, 255, .2);
}
.rev-burger.revb-darknoborder,
.rev-burger.revb-whitenoborder {
  border: 0;
}
.rev-burger.revb-darknoborder span {
  background: #333;
}
.rev-burger.revb-whitefull {
  background: #fff;
  border: none;
}
.rev-burger.revb-whitefull span {
  background: #333;
}
.rev-burger.revb-darkfull {
  background: #333;
  border: none;
}
.rev-burger.revb-darkfull span,
.rev-scroll-btn.revs-fullwhite {
  background: #fff;
}
@keyframes rev-ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
.rev-scroll-btn {
  display: inline-block;
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  width: 35px;
  height: 55px;
  box-sizing: border-box;
  border: 3px solid #fff;
  border-radius: 23px;
}
.rev-scroll-btn > * {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  font-family:
    proxima-nova,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  letter-spacing: 2px;
}
.rev-scroll-btn > .active,
.rev-scroll-btn > :focus,
.rev-scroll-btn > :hover {
  color: #fff;
}
.rev-scroll-btn > .active,
.rev-scroll-btn > :active,
.rev-scroll-btn > :focus,
.rev-scroll-btn > :hover {
  opacity: .8;
}
.rev-scroll-btn.revs-fullwhite span {
  background: #333;
}
.rev-scroll-btn.revs-fulldark {
  background: #333;
  border: none;
}
.rev-scroll-btn.revs-fulldark span,
.tp-bullet {
  background: #fff;
}
.rev-scroll-btn span {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  border-radius: 50%;
  animation: rev-ani-mouse 2.5s linear infinite;
}
.rev-scroll-btn.revs-dark {
  border-color: #333;
}
.rev-scroll-btn.revs-dark span {
  background: #333;
}
.rev-control-btn {
  position: relative;
  display: inline-block;
  z-index: 5;
  color: #FFF;
  font-size: 20px;
  line-height: 60px;
  font-weight: 400;
  font-style: normal;
  font-family: Raleway;
  text-decoration: none;
  text-align: center;
  background-color: #000;
  border-radius: 50px;
  text-shadow: none;
  background-color: rgba(0, 0, 0, .5);
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer;
}
.rev-cbutton-dark-sr,
.rev-cbutton-light-sr {
  border-radius: 3px;
}
.rev-cbutton-light,
.rev-cbutton-light-sr {
  color: #333;
  background-color: rgba(255, 255, 255, .75);
}
.rev-sbutton {
  line-height: 37px;
  width: 37px;
  height: 37px;
}
.rev-sbutton-blue {
  background-color: #3B5998;
}
.rev-sbutton-lightblue {
  background-color: #00A0D1;
}
.rev-sbutton-red {
  background-color: #DD4B39;
}
.tp-bannertimer {
  visibility: hidden;
  width: 100%;
  height: 5px;
  background: #000;
  background: rgba(0, 0, 0, .15);
  position: absolute;
  z-index: 200;
  top: 0;
}
.tp-bannertimer.tp-bottom {
  top: auto;
  bottom: 0 !important;
  height: 5px;
}
.tp-caption img {
  background: 0 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
  zoom: 1;
}
.caption.slidelink a div,
.tp-caption.slidelink a div {
  width: 3000px;
  height: 1500px;
  background: url("./media/coloredbg.png");
}
.tp-caption.slidelink a span {
  background: url("./media/coloredbg.png");
}
.tp-loader.spinner0,
.tp-loader.spinner5 {
  background-image: url("./media/loader.gif");
  background-repeat: no-repeat;
}
.tp-shape {
  width: 100%;
  height: 100%;
}
.tp-caption .rs-starring {
  display: inline-block;
}
.tp-caption .rs-starring .star-rating {
  float: none;
  display: inline-block;
  vertical-align: top;
  color: #FFC321 !important;
}
.tp-caption .rs-starring .star-rating,
.tp-caption .rs-starring-page .star-rating {
  position: relative;
  height: 1em;
  width: 5.4em;
  font-family: star;
  font-size: 1em !important;
}
.tp-loader.spinner0,
.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}
.tp-caption .rs-starring .star-rating:before,
.tp-caption .rs-starring-page .star-rating:before {
  content: "sssss";
  color: #E0DADF;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.tp-caption .rs-starring .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
  font-size: 1em !important;
}
.tp-caption .rs-starring .star-rating span:before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
}
.tp-loader {
  top: 50%;
  left: 50%;
  z-index: 10000;
  position: absolute;
}
.tp-loader.spinner0 {
  background-position: center center;
}
.tp-loader.spinner5 {
  background-position: 10px 10px;
  background-color: #fff;
  margin: -22px;
  width: 44px;
  height: 44px;
  border-radius: 3px;
}
@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background-color: red;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
  border-radius: 100%;
  animation: tp-scaleout 1s infinite ease-in-out;
}
@keyframes tp-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.tp-loader.spinner3 {
  margin: -9px 0 0 -35px;
  width: 70px;
  text-align: center;
  display: none;
}
.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
  border-radius: 100%;
  display: inline-block;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation-fill-mode: both;
}
.tp-loader.spinner3 .bounce1 {
  animation-delay: -.32s;
}
.tp-loader.spinner3 .bounce2 {
  animation-delay: -.16s;
}
@keyframes tp-bouncedelay {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.tp-loader.spinner4 {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  animation: tp-rotate 2s infinite linear;
}
.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  animation: tp-bounce 2s infinite ease-in-out;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}
.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
@keyframes tp-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.tp-bullets.navbar,
.tp-tabs.navbar,
.tp-thumbs.navbar {
  border: none;
  min-height: 0;
  margin: 0;
  border-radius: 0;
}
.tp-bullets,
.tp-tabs,
.tp-thumbs {
  position: absolute;
  display: block;
  z-index: 1000;
  top: 0;
  left: 0;
}
.tp-tab,
.tp-thumb {
  cursor: pointer;
  position: absolute;
  opacity: .5;
  box-sizing: border-box;
}
.tp-arr-imgholder,
.tp-tab-image,
.tp-thumb-image,
.tp-videoposter {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.tp-tab.selected,
.tp-tab:hover,
.tp-thumb.selected,
.tp-thumb:hover {
  opacity: 1;
}
.tp-tab-mask,
.tp-thumb-mask {
  box-sizing: border-box !important;
}
.tp-tabs,
.tp-thumbs {
  box-sizing: content-box !important;
}
.tp-bullet {
  width: 15px;
  height: 15px;
  position: absolute;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
}
.tp-bullet.selected,
.tp-bullet:hover {
  background: #fff;
}
.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, .5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
}
.tparrows:hover {
  background: #000;
}
.tparrows:before {
  font-family: revicons;
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center;
}
.hginfo,
.hglayerinfo {
  font-size: 12px;
  font-weight: 600;
}
.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.tparrows.tp-rightarrow:before {
  content: "\e825";
}
body.rtl .tp-kbimg {
  left: 0 !important;
}
.dddwrappershadow {
  box-shadow: 0 45px 100px rgba(0, 0, 0, .4);
}
.hglayerinfo {
  position: fixed;
  bottom: 0;
  left: 0;
  color: #FFF;
  line-height: 20px;
  background: rgba(0, 0, 0, .75);
  padding: 5px 10px;
  z-index: 2000;
  white-space: normal;
}
.helpgrid,
.hginfo {
  position: absolute;
}
.hginfo {
  top: -2px;
  left: -2px;
  color: #e74c3c;
  background: #000;
  padding: 2px 5px;
}
.indebugmode .tp-caption:hover {
  border: 1px dashed #c0392b !important;
}
.helpgrid {
  border: 2px dashed #c0392b;
  top: 0;
  left: 0;
  z-index: 0;
}
#revsliderlogloglog {
  padding: 15px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 150px;
  background: rgba(0, 0, 0, .7);
  z-index: 100000;
  font-size: 10px;
  overflow: scroll;
}
.aden {
  filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2);
}
.aden::after {
  background:
    linear-gradient(
      to right,
      rgba(66, 10, 14, .2),
      transparent);
  mix-blend-mode: darken;
}
.perpetua::after,
.reyes::after {
  mix-blend-mode: soft-light;
  opacity: .5;
}
.inkwell {
  filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);
}
.perpetua::after {
  background:
    linear-gradient(
      to bottom,
      #005b9a,
      #e6c13d);
}
.reyes {
  filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75);
}
.reyes::after {
  background: #efcdad;
}
.gingham {
  filter: brightness(1.05) hue-rotate(-10deg);
}
.gingham::after {
  background:
    linear-gradient(
      to right,
      rgba(66, 10, 14, .2),
      transparent);
  mix-blend-mode: darken;
}
.toaster {
  filter: contrast(1.5) brightness(.9);
}
.toaster::after {
  background:
    radial-gradient(
      circle,
      #804e0f,
      #3b003b);
  mix-blend-mode: screen;
}
.walden {
  filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6);
}
.walden::after {
  background: #04c;
  mix-blend-mode: screen;
  opacity: .3;
}
.hudson {
  filter: brightness(1.2) contrast(.9) saturate(1.1);
}
.hudson::after {
  background:
    radial-gradient(
      circle,
      #a6b1ff 50%,
      #342134);
  mix-blend-mode: multiply;
  opacity: .5;
}
.earlybird {
  filter: contrast(.9) sepia(.2);
}
.earlybird::after {
  background:
    radial-gradient(
      circle,
      #d0ba8e 20%,
      #360309 85%,
      #1d0210 100%);
  mix-blend-mode: overlay;
}
.mayfair {
  filter: contrast(1.1) saturate(1.1);
}
.mayfair::after {
  background:
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, .8),
      rgba(255, 200, 200, .6),
      #111 60%);
  mix-blend-mode: overlay;
  opacity: .4;
}
.lofi {
  filter: saturate(1.1) contrast(1.5);
}
.lofi::after {
  background:
    radial-gradient(
      circle,
      transparent 70%,
      #222 150%);
  mix-blend-mode: multiply;
}
._1977 {
  filter: contrast(1.1) brightness(1.1) saturate(1.3);
}
._1977:after {
  background: rgba(243, 106, 188, .3);
  mix-blend-mode: screen;
}
.brooklyn {
  filter: contrast(.9) brightness(1.1);
}
.brooklyn::after {
  background:
    radial-gradient(
      circle,
      rgba(168, 223, 193, .4) 70%,
      #c4b7c8);
  mix-blend-mode: overlay;
}
.xpro2 {
  filter: sepia(.3);
}
.xpro2::after {
  background:
    radial-gradient(
      circle,
      #e6e7e0 40%,
      rgba(43, 42, 161, .6) 110%);
  mix-blend-mode: color-burn;
}
.nashville {
  filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2);
}
.nashville::after {
  background: rgba(0, 70, 150, .4);
  mix-blend-mode: lighten;
}
.nashville::before {
  background: rgba(247, 176, 153, .56);
  mix-blend-mode: darken;
}
.lark {
  filter: contrast(.9);
}
.lark::after {
  background: rgba(242, 242, 242, .8);
  mix-blend-mode: darken;
}
.lark::before {
  background: #22253f;
  mix-blend-mode: color-dodge;
}
.moon {
  filter: grayscale(1) contrast(1.1) brightness(1.1);
}
.moon::before {
  background: #a0a0a0;
  mix-blend-mode: soft-light;
}
.moon::after {
  background: #383838;
  mix-blend-mode: lighten;
}
.clarendon {
  filter: contrast(1.2) saturate(1.35);
}
.clarendon:before {
  background: rgba(127, 187, 227, .2);
  mix-blend-mode: overlay;
}
.willow {
  filter: grayscale(.5) contrast(.95) brightness(.9);
}
.willow::before {
  background-color:
    radial-gradient(
      40%,
      circle,
      #d4a9af 55%,
      #000 150%);
  mix-blend-mode: overlay;
}
.willow::after {
  background-color: #d8cdcb;
  mix-blend-mode: color;
}
.rise {
  filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9);
}
.rise::after {
  background:
    radial-gradient(
      circle,
      rgba(232, 197, 152, .8),
      transparent 90%);
  mix-blend-mode: overlay;
  opacity: .6;
}
.rise::before {
  background:
    radial-gradient(
      circle,
      rgba(236, 205, 169, .15) 55%,
      rgba(50, 30, 7, .4));
  mix-blend-mode: multiply;
}
._1977:after,
._1977:before,
.aden:after,
.aden:before,
.brooklyn:after,
.brooklyn:before,
.clarendon:after,
.clarendon:before,
.earlybird:after,
.earlybird:before,
.gingham:after,
.gingham:before,
.hudson:after,
.hudson:before,
.inkwell:after,
.inkwell:before,
.lark:after,
.lark:before,
.lofi:after,
.lofi:before,
.mayfair:after,
.mayfair:before,
.moon:after,
.moon:before,
.nashville:after,
.nashville:before,
.perpetua:after,
.perpetua:before,
.reyes:after,
.reyes:before,
.rise:after,
.rise:before,
.slumber:after,
.slumber:before,
.toaster:after,
.toaster:before,
.walden:after,
.walden:before,
.willow:after,
.willow:before,
.xpro2:after,
.xpro2:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}
._1977,
.aden,
.brooklyn,
.clarendon,
.earlybird,
.gingham,
.hudson,
.inkwell,
.lark,
.lofi,
.mayfair,
.moon,
.nashville,
.perpetua,
.reyes,
.rise,
.slumber,
.toaster,
.walden,
.willow,
.xpro2 {
  position: relative;
}
._1977 img,
.aden img,
.brooklyn img,
.clarendon img,
.earlybird img,
.gingham img,
.hudson img,
.inkwell img,
.lark img,
.lofi img,
.mayfair img,
.moon img,
.nashville img,
.perpetua img,
.reyes img,
.rise img,
.slumber img,
.toaster img,
.walden img,
.willow img,
.xpro2 img {
  width: 100%;
  z-index: 1;
}
._1977:before,
.aden:before,
.brooklyn:before,
.clarendon:before,
.earlybird:before,
.gingham:before,
.hudson:before,
.inkwell:before,
.lark:before,
.lofi:before,
.mayfair:before,
.moon:before,
.nashville:before,
.perpetua:before,
.reyes:before,
.rise:before,
.slumber:before,
.toaster:before,
.walden:before,
.willow:before,
.xpro2:before {
  z-index: 2;
}
._1977:after,
.aden:after,
.brooklyn:after,
.clarendon:after,
.earlybird:after,
.gingham:after,
.hudson:after,
.inkwell:after,
.lark:after,
.lofi:after,
.mayfair:after,
.moon:after,
.nashville:after,
.perpetua:after,
.reyes:after,
.rise:after,
.slumber:after,
.toaster:after,
.walden:after,
.willow:after,
.xpro2:after {
  z-index: 3;
}
.slumber {
  filter: saturate(.66) brightness(1.05);
}
.slumber::after {
  background: rgba(125, 105, 24, .5);
  mix-blend-mode: soft-light;
}
.slumber::before {
  background: rgba(69, 41, 12, .4);
  mix-blend-mode: lighten;
}
.tp-kbimg-wrap:after,
.tp-kbimg-wrap:before {
  height: 500%;
  width: 500%;
}

/* src/assets/plugins/revolution/revolution/css/navigation.css */
.ares.tparrows {
  cursor: pointer;
  background: #fff;
  min-width: 60px;
  min-height: 60px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%;
}
.ares.tparrows:hover {
}
.ares.tparrows:before {
  font-family: "revicons";
  font-size: 25px;
  color: #aaa;
  display: block;
  line-height: 60px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
  position: relative;
}
.ares.tparrows.tp-leftarrow:before {
  content: "\e81f";
}
.ares.tparrows.tp-rightarrow:before {
  content: "\e81e";
}
.ares.tparrows:hover:before {
  color: #000;
}
.ares .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: #fff;
  min-height: 60px;
  line-height: 60px;
  top: 0px;
  margin-left: 30px;
  border-radius: 0px 30px 30px 0px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%;
}
.ares.tp-rightarrow .tp-title-wrap {
  right: 0px;
  margin-right: 30px;
  margin-left: 0px;
  -webkit-transform-origin: 100% 50%;
  border-radius: 30px 0px 0px 30px;
}
.ares.tparrows:hover .tp-title-wrap {
  transform: scaleX(1) scaleY(1);
  -webkit-transform: scaleX(1) scaleY(1);
}
.ares .tp-arr-titleholder {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: translateX(200px);
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 60px;
  white-space: nowrap;
  padding: 0px 20px;
  margin-left: 10px;
  opacity: 0;
}
.ares.tp-rightarrow .tp-arr-titleholder {
  transform: translateX(-200px);
  margin-left: 0px;
  margin-right: 10px;
}
.ares.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1;
}
.ares.tp-bullets {
}
.ares.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.ares .tp-bullet {
  width: 13px;
  height: 13px;
  position: absolute;
  background: #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
  background: #fff;
}
.ares .tp-bullet-title {
  position: absolute;
  color: #888;
  font-size: 12px;
  padding: 0px 10px;
  font-weight: 600;
  right: 27px;
  top: -4px;
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  visibility: hidden;
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  line-height: 20px;
  white-space: nowrap;
}
.ares .tp-bullet-title:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
  content: " ";
  position: absolute;
  right: -10px;
  top: 0px;
}
.ares .tp-bullet:hover .tp-bullet-title {
  visibility: visible;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
.ares .tp-bullet.selected:hover .tp-bullet-title {
  background: #fff;
}
.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color: transparent transparent transparent #fff;
}
.ares.tp-bullets:hover .tp-bullet-title {
  visibility: hidden;
}
.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
  visibility: visible;
}
.ares .tp-tab {
  opacity: 1;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
}
.ares .tp-tab-image {
  width: 60px;
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  float: left;
}
.ares .tp-tab-content {
  background: rgba(0, 0, 0, 0);
  position: relative;
  padding: 15px 15px 15px 85px;
  left: 0px;
  overflow: hidden;
  margin-top: -15px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.ares .tp-tab-date {
  display: block;
  color: #aaa;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0px;
}
.ares .tp-tab-title {
  display: block;
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 17px;
}
.ares .tp-tab:hover,
.ares .tp-tab.selected {
  background: #eee;
}
.ares .tp-tab-mask {
}
@media only screen and (max-width: 960px) {
}
@media only screen and (max-width: 768px) {
}
.custom.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 10000;
}
.custom.tparrows:hover {
  background: #000;
}
.custom.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.custom.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.custom.tp-bullets {
}
.custom.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.custom .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #aaa;
  background: rgba(125, 125, 125, 0.5);
  cursor: pointer;
  box-sizing: content-box;
}
.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
  background: rgb(125, 125, 125);
}
.custom .tp-bullet-image {
}
.custom .tp-bullet-title {
}
.dione.tparrows {
  height: 100%;
  width: 100px;
  background: transparent;
  background: rgba(0, 0, 0, 0);
  line-height: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.dione.tparrows:hover {
  background: rgba(0, 0, 0, 0.45);
}
.dione .tp-arr-imgwrapper {
  width: 100px;
  left: 0px;
  position: absolute;
  height: 100%;
  top: 0px;
  overflow: hidden;
}
.dione.tp-rightarrow .tp-arr-imgwrapper {
  left: auto;
  right: 0px;
}
.dione .tp-arr-imgholder {
  background-position: center center;
  background-size: cover;
  width: 100px;
  height: 100%;
  top: 0px;
  visibility: hidden;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  opacity: 0;
  left: 0px;
}
.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right: 0px;
  left: auto;
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
}
.dione.tparrows:before {
  position: absolute;
  line-height: 30px;
  margin-left: -22px;
  top: 50%;
  left: 50%;
  font-size: 30px;
  margin-top: -15px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.dione.tparrows.tp-rightarrow:before {
  margin-left: 6px;
}
.dione.tparrows:hover:before {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  opacity: 0;
}
.dione.tparrows.tp-rightarrow:hover:before {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
}
.dione.tparrows:hover .tp-arr-imgholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}
.dione .tp-bullet {
  opacity: 1;
  width: 50px;
  height: 50px;
  padding: 3px;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.dione .tp-bullet-image {
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  width: 44px;
  height: 44px;
  background-size: cover;
  background-position: center center;
}
.dione .tp-bullet-title {
  position: absolute;
  bottom: 65px;
  display: inline-block;
  left: 50%;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin: 50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin: 50% 100%;
  opacity: 0;
  white-space: nowrap;
}
.dione .tp-bullet:hover .tp-bullet-title {
  transform: rotateX(0deg) translateX(-50%);
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1;
}
.dione .tp-bullet.selected,
.dione .tp-bullet:hover {
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(119, 119, 119, 1)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(119, 119, 119, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#777777", GradientType=0);
}
.dione .tp-bullet-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  bottom: -8px;
}
.erinyen.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 35px;
}
.erinyen.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 70px;
  text-align: center;
  z-index: 2;
  position: relative;
}
.erinyen.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.erinyen.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.erinyen .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  min-height: 70px;
  line-height: 70px;
  top: 0px;
  margin-left: 0px;
  border-radius: 35px;
  overflow: hidden;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
}
.erinyen.tparrows:hover .tp-title-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.erinyen.tp-rightarrow .tp-title-wrap {
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-transform-origin: 100% 50%;
  border-radius: 35px;
  padding-right: 20px;
  padding-left: 10px;
}
.erinyen.tp-leftarrow .tp-title-wrap {
  padding-left: 20px;
  padding-right: 10px;
}
.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: translateX(200px);
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 70px;
  white-space: nowrap;
  padding: 0px 20px;
  margin-left: 11px;
  opacity: 0;
}
.erinyen .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
}
.erinyen .tp-arr-img-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
}
.erinyen.tp-rightarrow .tp-arr-titleholder {
  transform: translateX(-200px);
  margin-left: 0px;
  margin-right: 11px;
}
.erinyen.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1;
}
.erinyen.tp-bullets {
}
.erinyen.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #555555;
  background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #555555), color-stop(100%, #222222));
  background: -webkit-linear-gradient(top, #555555 0%, #222222 100%);
  background: -o-linear-gradient(top, #555555 0%, #222222 100%);
  background: -ms-linear-gradient(top, #555555 0%, #222222 100%);
  background:
    linear-gradient(
      to bottom,
      #555555 0%,
      #222222 100%);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#555555", endcolorstr="#222222", gradienttype=0);
  padding: 10px 15px;
  margin-left: -15px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 1px rgba(33, 33, 33, 0.3);
}
.erinyen .tp-bullet {
  width: 13px;
  height: 13px;
  position: absolute;
  background: #111;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
  background: #e5e5e5;
  background: -moz-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e5e5e5), color-stop(100%, #999999));
  background: -webkit-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  background: -o-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  background: -ms-linear-gradient(top, #e5e5e5 0%, #999999 100%);
  background:
    linear-gradient(
      to bottom,
      #e5e5e5 0%,
      #999999 100%);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#e5e5e5", endcolorstr="#999999", gradienttype=0);
  border: 1px solid #555;
  width: 12px;
  height: 12px;
}
.erinyen .tp-bullet-image {
}
.erinyen .tp-bullet-title {
}
.erinyen .tp-thumb {
  opacity: 1;
}
.erinyen .tp-thumb-over {
  background: #000;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.erinyen .tp-thumb-more:before {
  content: "\e825";
}
.erinyen .tp-thumb-title {
  font-family: "Raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 20px 35px 20px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500;
}
.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa;
}
.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
  background: #fff;
}
.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color: #000;
}
.erinyen .tp-tab-title {
  color: #a8d8ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto Slab";
  margin-bottom: 5px;
}
.erinyen .tp-tab-desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
  font-family: "Roboto Slab";
}
.gyges.tp-bullets {
}
.gyges.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #777777;
  background: -moz-linear-gradient(top, #777777 0%, #666666 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #777777), color-stop(100%, #666666));
  background: -webkit-linear-gradient(top, #777777 0%, #666666 100%);
  background: -o-linear-gradient(top, #777777 0%, #666666 100%);
  background: -ms-linear-gradient(top, #777777 0%, #666666 100%);
  background:
    linear-gradient(
      to bottom,
      #777777 0%,
      #666666 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#777777", endColorstr="#666666", GradientType=0);
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 10px;
}
.gyges .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #333;
  border: 3px solid #444;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e1e1e1));
  background: -webkit-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #e1e1e1 100%);
  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #e1e1e1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e1e1e1", GradientType=0);
}
.gyges .tp-bullet-image {
}
.gyges .tp-bullet-title {
}
.gyges .tp-thumb {
  opacity: 1;
}
.gyges .tp-thumb-img-wrap {
  padding: 3px;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.gyges .tp-thumb-image {
  padding: 3px;
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.gyges .tp-thumb-title {
  position: absolute;
  bottom: 100%;
  display: inline-block;
  left: 50%;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin: 50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin: 50% 100%;
  white-space: nowrap;
}
.gyges .tp-thumb:hover .tp-thumb-title {
  transform: rotateX(0deg) translateX(-50%);
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1;
}
.gyges .tp-thumb:hover .tp-thumb-img-wrap,
.gyges .tp-thumb.selected .tp-thumb-img-wrap {
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(119, 119, 119, 1)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(119, 119, 119, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#777777", GradientType=0);
}
.gyges .tp-thumb-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent;
  bottom: -8px;
}
.gyges .tp-tab {
  opacity: 1;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.gyges .tp-tab-image {
  width: 60px;
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  float: left;
}
.gyges .tp-tab-content {
  background: rgba(0, 0, 0, 0);
  position: relative;
  padding: 15px 15px 15px 85px;
  left: 0px;
  overflow: hidden;
  margin-top: -15px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.gyges .tp-tab-date {
  display: block;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0px;
}
.gyges .tp-tab-title {
  display: block;
  text-align: left;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 17px;
}
.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background: rgba(0, 0, 0, 0.5);
}
.gyges .tp-tab-mask {
}
@media only screen and (max-width: 960px) {
}
@media only screen and (max-width: 768px) {
}
.hades.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.15);
  width: 100px;
  height: 100px;
  position: absolute;
  display: block;
  z-index: 1000;
}
.hades.tparrows:before {
  font-family: "revicons";
  font-size: 30px;
  color: #fff;
  display: block;
  line-height: 100px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.hades.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hades.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hades.tparrows:hover:before {
  color: #aaa;
  background: #fff;
  background: rgba(255, 255, 255, 1);
}
.hades .tp-arr-allwrapper {
  position: absolute;
  left: 100%;
  top: 0px;
  background: #888;
  width: 100px;
  height: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.hades.tp-rightarrow .tp-arr-allwrapper {
  left: auto;
  right: 100%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
}
.hades:hover .tp-arr-allwrapper {
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: rotatey(0deg);
  transform: rotatey(0deg);
}
.hades .tp-arr-iwrapper {
}
.hades .tp-arr-imgholder {
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.hades .tp-arr-titleholder {
}
.hades .tp-arr-subtitleholder {
}
.hades.tp-bullets {
}
.hades.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.hades .tp-bullet {
  width: 3px;
  height: 3px;
  position: absolute;
  background: #888;
  cursor: pointer;
  border: 5px solid #fff;
  box-sizing: content-box;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  -webkit-perspective: 400;
  perspective: 400;
  -webkit-transform: translatez(0.01px);
  transform: translatez(0.01px);
}
.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
  background: #555;
}
.hades .tp-bullet-image {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 120px;
  height: 60px;
  background-position: center center;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform-style: flat;
  transform-style: flat;
  perspective: 600;
  -webkit-perspective: 600;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
.hades .tp-bullet:hover .tp-bullet-image {
  display: block;
  opacity: 1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility: visible;
}
.hades .tp-bullet-title {
}
.hades .tp-thumb {
  opacity: 1;
}
.hades .tp-thumb-img-wrap {
  border-radius: 50%;
  padding: 3px;
  display: inline-block;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.hades .tp-thumb-image {
  padding: 3px;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(119, 119, 119, 1)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(119, 119, 119, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#777777", GradientType=0);
}
.hades .tp-thumb-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  bottom: -8px;
}
.hades .tp-tab {
  opacity: 1;
}
.hades .tp-tab-title {
  display: block;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  line-height: 25px;
}
.hades .tp-tab-price {
  display: block;
  text-align: center;
  color: #999;
  font-size: 16px;
  margin-top: 10px;
  line-height: 20px;
}
.hades .tp-tab-button {
  display: inline-block;
  margin-top: 15px;
  text-align: center;
  padding: 5px 15px;
  color: #fff;
  font-size: 14px;
  background: #219bd7;
  border-radius: 4px;
  font-weight: 400;
}
.hades .tp-tab-inner {
  text-align: center;
}
.hebe.tparrows {
  cursor: pointer;
  background: #fff;
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 1000;
}
.hebe.tparrows:hover {
}
.hebe.tparrows:before {
  font-family: "revicons";
  font-size: 30px;
  color: #aaa;
  display: block;
  line-height: 70px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 2;
  position: relative;
  background: #fff;
  min-width: 70px;
  min-height: 70px;
}
.hebe.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hebe.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hebe.tparrows:hover:before {
  color: #000;
}
.hebe .tp-title-wrap {
  position: absolute;
  z-index: 0;
  display: inline-block;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  min-height: 60px;
  line-height: 60px;
  top: -10px;
  margin-left: 0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: 0% 50%;
  -webkit-transform-origin: 0% 50%;
}
.hebe.tp-rightarrow .tp-title-wrap {
  right: 0px;
  -webkit-transform-origin: 100% 50%;
}
.hebe.tparrows:hover .tp-title-wrap {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.hebe .tp-arr-titleholder {
  position: relative;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 90px;
  white-space: nowrap;
  padding: 0px 20px 0px 90px;
}
.hebe.tp-rightarrow .tp-arr-titleholder {
  margin-left: 0px;
  padding: 0px 90px 0px 20px;
}
.hebe.tparrows:hover .tp-arr-titleholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition-delay: 0.1s;
  opacity: 1;
}
.hebe .tp-arr-imgholder {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  top: 0px;
  right: -90px;
}
.hebe.tp-rightarrow .tp-arr-imgholder {
  right: auto;
  left: -90px;
}
.hebe.tp-bullets {
}
.hebe.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.hebe .tp-bullet {
  width: 3px;
  height: 3px;
  position: absolute;
  background: #fff;
  cursor: pointer;
  border: 5px solid #222;
  border-radius: 50%;
  box-sizing: content-box;
  -webkit-perspective: 400;
  perspective: 400;
  -webkit-transform: translateZ(0.01px);
  transform: translateZ(0.01px);
  transition: all 0.3s;
}
.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background: #222;
  border-color: #fff;
}
.hebe .tp-bullet-image {
  position: absolute;
  top: -90px;
  left: -40px;
  width: 70px;
  height: 70px;
  background-position: center center;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform-style: flat;
  transform-style: flat;
  perspective: 600;
  -webkit-perspective: 600;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  border-radius: 6px;
}
.hebe .tp-bullet:hover .tp-bullet-image {
  display: block;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility: visible;
}
.hebe .tp-bullet-title {
}
.hebe .tp-tab-title {
  color: #a8d8ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto Slab";
  margin-bottom: 5px;
}
.hebe .tp-tab-desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
  font-family: "Roboto Slab";
}
.hephaistos.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50%;
}
.hephaistos.tparrows:hover {
  background: #000;
}
.hephaistos.tparrows:before {
  font-family: "revicons";
  font-size: 18px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center;
}
.hephaistos.tparrows.tp-leftarrow:before {
  content: "\e82c";
  margin-left: -2px;
}
.hephaistos.tparrows.tp-rightarrow:before {
  content: "\e82d";
  margin-right: -2px;
}
.hephaistos.tp-bullets {
}
.hephaistos.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.hephaistos .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #999;
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
  box-shadow: 0px 0px 2px 1px rgba(130, 130, 130, 0.3);
}
.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
  background: #fff;
  border-color: #000;
}
.hephaistos .tp-bullet-image {
}
.hephaistos .tp-bullet-title {
}
.hermes.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 110px;
  position: absolute;
  display: block;
  z-index: 1000;
}
.hermes.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 110px;
  text-align: center;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.hermes.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hermes.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hermes.tparrows.tp-leftarrow:hover:before {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  opacity: 0;
}
.hermes.tparrows.tp-rightarrow:hover:before {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  opacity: 0;
}
.hermes .tp-arr-allwrapper {
  overflow: hidden;
  position: absolute;
  width: 180px;
  height: 140px;
  top: 0px;
  left: 0px;
  visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.hermes.tp-rightarrow .tp-arr-allwrapper {
  right: 0px;
  left: auto;
}
.hermes.tparrows:hover .tp-arr-allwrapper {
  visibility: visible;
}
.hermes .tp-arr-imgholder {
  width: 180px;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 110px;
  transform: translateX(-180px);
  -webkit-transform: translateX(-180px);
  transition: all 0.3s;
  transition-delay: 0.3s;
}
.hermes.tp-rightarrow .tp-arr-imgholder {
  transform: translateX(180px);
  -webkit-transform: translateX(180px);
}
.hermes.tparrows:hover .tp-arr-imgholder {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
.hermes .tp-arr-titleholder {
  top: 110px;
  width: 180px;
  text-align: left;
  display: block;
  padding: 0px 10px;
  line-height: 30px;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-weight: 600;
  position: absolute;
  font-size: 12px;
  white-space: nowrap;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-sizing: border-box;
}
.hermes.tparrows:hover .tp-arr-titleholder {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.hermes.tp-bullets {
}
.hermes .tp-bullet {
  overflow: hidden;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px #FFF;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: absolute;
}
.hermes .tp-bullet:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.hermes .tp-bullet:after {
  content: " ";
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height: 100%;
}
.hermes .tp-tab {
  opacity: 1;
  padding-right: 10px;
  box-sizing: border-box;
}
.hermes .tp-tab-image {
  width: 100%;
  height: 60%;
  position: relative;
}
.hermes .tp-tab-content {
  background: rgb(54, 54, 54);
  position: absolute;
  padding: 20px 20px 20px 30px;
  box-sizing: border-box;
  color: #fff;
  display: block;
  width: 100%;
  min-height: 40%;
  bottom: 0px;
  left: -10px;
}
.hermes .tp-tab-date {
  display: block;
  color: #888;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
}
.hermes .tp-tab-title {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 19px;
}
.hermes .tp-tab.selected .tp-tab-title:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 0 30px 10px;
  border-color: transparent transparent transparent rgb(54, 54, 54);
  content: " ";
  position: absolute;
  right: -9px;
  bottom: 50%;
  margin-bottom: -30px;
}
.hermes .tp-tab-mask {
  padding-right: 10px !important;
}
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {
    font-size: 14px;
    line-height: 16px;
  }
  .hermes .tp-tab-date {
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 10px;
  }
  .hermes .tp-tab-content {
    padding: 15px 15px 15px 25px;
  }
}
@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {
    font-size: 12px;
    line-height: 14px;
  }
  .hermes .tp-tab-date {
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 5px;
  }
  .hermes .tp-tab-content {
    padding: 10px 10px 10px 20px;
  }
}
.hesperiden.tparrows {
  cursor: pointer;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50%;
}
.hesperiden.tparrows:hover {
  background: #000;
}
.hesperiden.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center;
}
.hesperiden.tparrows.tp-leftarrow:before {
  content: "\e82c";
  margin-left: -3px;
}
.hesperiden.tparrows.tp-rightarrow:before {
  content: "\e82d";
  margin-right: -3px;
}
.hesperiden.tp-bullets {
}
.hesperiden.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
  border-radius: 8px;
}
.hesperiden .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #999999;
  background: -moz-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999999), color-stop(100%, #e1e1e1));
  background: -webkit-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background: -o-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background: -ms-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background:
    linear-gradient(
      to bottom,
      #999999 0%,
      #e1e1e1 100%);
  filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#999999", endcolorstr="#e1e1e1", gradienttype=0);
  border: 3px solid #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
  background: #666;
}
.hesperiden .tp-bullet-image {
}
.hesperiden .tp-bullet-title {
}
.hesperiden .tp-thumb {
  opacity: 1;
  -webkit-perspective: 600px;
  perspective: 600px;
}
.hesperiden .tp-thumb .tp-thumb-title {
  font-size: 12px;
  position: absolute;
  margin-top: -10px;
  color: #fff;
  display: block;
  z-index: 10000;
  background-color: #000;
  padding: 5px 10px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: rotatex(90deg) translatez(0.001px);
  transform-origin: 50% 100%;
  -webkit-transform: rotatex(90deg) translatez(0.001px);
  -webkit-transform-origin: 50% 100%;
  opacity: 0;
}
.hesperiden .tp-thumb:hover .tp-thumb-title {
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  opacity: 1;
}
.hesperiden .tp-tab {
  opacity: 1;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
}
.hesperiden .tp-tab-image {
  width: 60px;
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  float: left;
}
.hesperiden .tp-tab-content {
  background: rgba(0, 0, 0, 0);
  position: relative;
  padding: 15px 15px 15px 85px;
  left: 0px;
  overflow: hidden;
  margin-top: -15px;
  box-sizing: border-box;
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hesperiden .tp-tab-date {
  display: block;
  color: #aaa;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0px;
}
.hesperiden .tp-tab-title {
  display: block;
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 17px;
}
.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
  background: #eee;
}
.hesperiden .tp-tab-mask {
}
@media only screen and (max-width: 960px) {
}
@media only screen and (max-width: 768px) {
}
.metis.tparrows {
  background: #fff;
  padding: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
}
.metis.tparrows:hover {
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
}
.metis.tparrows:before {
  color: #000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.metis.tparrows:hover:before {
  transform: scale(1.5);
}
.metis .tp-bullet {
  opacity: 1;
  width: 50px;
  height: 50px;
  padding: 3px;
  background: #000;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 0px;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  border-radius: 50%;
}
.metis .tp-bullet-image {
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  width: 44px;
  height: 44px;
  background-size: cover;
  background-position: center center;
}
.metis .tp-bullet-title {
  position: absolute;
  bottom: 65px;
  display: inline-block;
  left: 50%;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin: 50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin: 50% 100%;
  opacity: 0;
  white-space: nowrap;
}
.metis .tp-bullet:hover .tp-bullet-title {
  transform: rotateX(0deg) translateX(-50%);
  -webkit-transform: rotateX(0deg) translateX(-50%);
  opacity: 1;
}
.metis .tp-bullet.selected,
.metis .tp-bullet:hover {
  background: rgba(255, 255, 255, 1);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(119, 119, 119, 1)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(119, 119, 119, 1) 100%);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(119, 119, 119, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#777777", GradientType=0);
}
.metis .tp-bullet-title:after {
  content: " ";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
  bottom: -8px;
}
.metis .tp-tab-number {
  color: #fff;
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Playfair Display";
  width: 50px;
  margin-right: 17px;
  display: inline-block;
  float: left;
}
.metis .tp-tab-mask {
  padding-left: 20px;
  left: 0px;
  max-width: 90px !important;
  transition:
    0.4s padding-left,
    0.4s left,
    0.4s max-width;
}
.metis:hover .tp-tab-mask {
  padding-left: 0px;
  left: 50px;
  max-width: 500px !important;
}
.metis .tp-tab-divider {
  border-right: 1px solid transparent;
  height: 30px;
  width: 1px;
  margin-top: 5px;
  display: inline-block;
  float: left;
}
.metis .tp-tab-title {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Playfair Display";
  position: relative;
  padding-top: 10px;
  padding-left: 30px;
  display: inline-block;
  transform: translateX(-100%);
  transition: 0.4s all;
}
.metis .tp-tab-title-mask {
  position: absolute;
  overflow: hidden;
  left: 67px;
}
.metis:hover .tp-tab-title {
  transform: translateX(0);
}
.metis .tp-tab {
  opacity: 0.15;
  transition: 0.4s all;
}
.metis .tp-tab:hover,
.metis .tp-tab.selected {
  opacity: 1;
}
.metis .tp-tab.selected .tp-tab-divider {
  border-right: 1px solid #cdb083;
}
.metis.tp-tabs {
  max-width: 118px !important;
  padding-left: 50px;
}
.metis.tp-tabs:before {
  content: " ";
  height: 100%;
  width: 88px;
  background: rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  left: 0px;
  top: 0px;
  position: absolute;
  transition: 0.4s all;
}
.metis.tp-tabs:hover:before {
  width: 118px;
}
@media (max-width: 499px) {
  .metis.tp-tabs:before {
    background: rgba(0, 0, 0, 0.75);
  }
}
.persephone.tparrows {
  cursor: pointer;
  background: #aaa;
  background: rgba(200, 200, 200, 0.5);
  width: 40px;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 100;
  border: 1px solid #f5f5f5;
}
.persephone.tparrows:hover {
  background: #333;
}
.persephone.tparrows:before {
  font-family: "revicons";
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 40px;
  text-align: center;
}
.persephone.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.persephone.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.persephone.tp-bullets {
}
.persephone.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.persephone .tp-bullet {
  width: 12px;
  height: 12px;
  position: absolute;
  background: #aaa;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  box-sizing: content-box;
}
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
  background: #222;
}
.persephone .tp-bullet-image {
}
.persephone .tp-bullet-title {
}
.uranus.tparrows {
  width: 50px;
  height: 50px;
  background: transparent;
}
.uranus.tparrows:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.uranus.tparrows:hover:before {
  opacity: 0.75;
}
.uranus .tp-bullet {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background: transparent;
}
.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border: none;
  border-radius: 50%;
  background: transparent;
}
.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}
.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
  background-color: #fff;
}
.zeus.tparrows {
  cursor: pointer;
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 35px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.10);
}
.zeus.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #fff;
  display: block;
  line-height: 70px;
  text-align: center;
  z-index: 2;
  position: relative;
}
.zeus.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.zeus.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.zeus .tp-title-wrap {
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  border-radius: 50%;
}
.zeus .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.zeus.tp-rightarrow .tp-arr-imgholder {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.zeus.tparrows:hover .tp-arr-imgholder {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  opacity: 1;
}
.zeus.tparrows:hover .tp-title-wrap {
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
}
.zeus .tp-bullet {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
}
.zeus .tp-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.zeus .tp-bullet-image,
.zeus .tp-bullet-imageoverlay {
  width: 135px;
  height: 60px;
  position: absolute;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  bottom: 25px;
  left: 50%;
  margin-left: -65px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.zeus .tp-bullet-title {
  color: #fff;
  text-align: center;
  line-height: 15px;
  font-size: 13px;
  font-weight: 600;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 45px;
  width: 135px;
  vertical-align: middle;
  left: -57px;
}
.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.zeus .tp-thumb {
  opacity: 1;
}
.zeus .tp-thumb-over {
  background: #000;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zeus .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.zeus .tp-thumb-more:before {
  content: "\e825";
}
.zeus .tp-thumb-title {
  font-family: "Raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 20px 35px 20px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500;
}
.zeus .tp-thumb.selected .tp-thumb-more:before,
.zeus .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa;
}
.zeus .tp-thumb.selected .tp-thumb-over,
.zeus .tp-thumb:hover .tp-thumb-over {
  background: #000;
}
.zeus .tp-thumb.selected .tp-thumb-title,
.zeus .tp-thumb:hover .tp-thumb-title {
  color: #fff;
}
.zeus .tp-tab {
  opacity: 1;
  box-sizing: border-box;
}
.zeus .tp-tab-title {
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  padding: 9px 10px;
}
.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
  color: #000;
  background: rgba(255, 255, 255, 1);
}
.post-tabs .tp-thumb {
  opacity: 1;
}
.post-tabs .tp-thumb-over {
  background: #252525;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-tabs .tp-thumb-more:before {
  font-family: "revicons";
  font-size: 12px;
  color: #aaa;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  line-height: 12px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}
.post-tabs .tp-thumb-more:before {
  content: "\e825";
}
.post-tabs .tp-thumb-title {
  font-family: "raleway";
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
  display: block;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  padding: 15px 30px 15px 15px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  font-weight: 500;
}
.post-tabs .tp-thumb.selected .tp-thumb-more:before,
.post-tabs .tp-thumb:hover .tp-thumb-more:before {
  color: #aaa;
}
.post-tabs .tp-thumb.selected .tp-thumb-over,
.post-tabs .tp-thumb:hover .tp-thumb-over {
  background: #fff;
}
.post-tabs .tp-thumb.selected .tp-thumb-title,
.post-tabs .tp-thumb:hover .tp-thumb-title {
  color: #000;
}

/* src/assets/css/rev-slider-12.css */
#menu_forcefullwidth {
  z-index: 5000;
  position: fixed !important;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 80px !important;
  overflow: hidden;
}
#menu_forcefullwidth.opened {
  height: 100% !important;
}
#menu_wrapper {
  height: 100% !important;
}
.tp-caption.tp-linkmod:hover {
  text-decoration: underline !important;
}
#welcome_wrapper .tp-loader.spinner3 div {
  background-color: #FFFFFF !important;
}
.tp-caption.tp-linkmod:hover {
  text-decoration: underline !important;
}
.new-bullet-bar.tparrows {
  cursor: pointer;
  background: rgba(255, 255, 255, 1);
  min-width: 80px;
  min-height: 80px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 0px;
}
.new-bullet-bar.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: #2d3032;
  display: block;
  line-height: 80px;
  text-align: center;
  z-index: 2;
  position: relative;
}
.new-bullet-bar.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.new-bullet-bar.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.new-bullet-bar .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  min-height: 80px;
  line-height: 80px;
  top: 0px;
  margin-left: 0px;
  border-radius: 0px;
  overflow: hidden;
  transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
}
.new-bullet-bar.tparrows:hover .tp-title-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.new-bullet-bar.tparrows:hover:before {
  color: #fff;
}
.new-bullet-bar.tp-rightarrow .tp-title-wrap {
  right: 0px;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  border-radius: 0px;
  width: 160px;
  height: 100px;
  margin-top: -10px;
  margin-right: -40px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
}
.new-bullet-bar.tp-leftarrow .tp-title-wrap {
  left: 0px;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  border-radius: 0px;
  width: 160px;
  height: 100px;
  margin-top: -10px;
  margin-left: -40px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.35);
}
.new-bullet-bar .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
}
.new-bullet-bar .tp-arr-img-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #000;
  background: rgba(0, 0, 0, 0.25);
}
.hermes .tp-bullet {
  overflow: hidden;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: absolute;
}
.hermes .tp-bullet:hover {
  background-color: rgba(0, 0, 0, 0.21);
}
.hermes .tp-bullet:after {
  content: " ";
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 1px rgb(255, 255, 255);
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height: 100%;
}
#whatshot_wrapper .tp-loader.spinner3 div {
  background-color: #FFFFFF !important;
}
.tp-caption.tp-linkmod:hover {
  text-decoration: underline !important;
}
#featured_wrapper .tp-loader.spinner3 div {
  background-color: #FFFFFF !important;
}
.tp-va {
  vertical-align: bottom;
}
.tp-btnshadow {
  -webkit-box-shadow: 0px 10px 10px 0px rgba(45, 48, 50, 0.15) !important;
  -moz-box-shadow: 0px 10px 10px 0px rgba(45, 48, 50, 0.15) !important;
  box-shadow: 0px 10px 10px 0px rgba(45, 48, 50, 0.15) !important;
}
.tp-caption.tp-linkmod:hover {
  text-decoration: underline !important;
}
#spotlight_wrapper .tp-loader.spinner3 div {
  background-color: #FFFFFF !important;
}
.tp-caption.tp-linkmod:hover {
  text-decoration: underline !important;
}
#spotlight .uranus.tparrows {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0);
}
#spotlight .uranus.tparrows:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
#spotlight .uranus.tparrows:hover:before {
  opacity: 0.75;
}
.hermes .tp-bullet {
  overflow: hidden;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: absolute;
}
.hermes .tp-bullet:hover {
  background-color: rgba(0, 0, 0, 0.21);
}
.hermes .tp-bullet:after {
  content: " ";
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 1px rgb(255, 255, 255);
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height: 100%;
}
#archives_wrapper .tp-loader.spinner3 div {
  background-color: #FFFFFF !important;
}
.tiny_bullet_slider .tp-bullet:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 25px;
  top: -12px;
  left: 0px;
  background: transparent;
}
.tp-caption.tp-linkmod:hover {
  text-decoration: underline !important;
}
.new-bullet-bar.tp-bullets:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  margin-left: -10px;
  margin-top: -10px;
  box-sizing: content-box;
}
.new-bullet-bar .tp-bullet {
  width: 60px;
  height: 3px;
  position: absolute;
  background: #aaa;
  background: rgba(45, 48, 50, 0.2);
  cursor: pointer;
  box-sizing: content-box;
}
.new-bullet-bar .tp-bullet:hover,
.new-bullet-bar .tp-bullet.selected {
  background: rgba(45, 48, 50, 0.65);
}
.rs-boxshadow {
  -webkit-box-shadow:
    1px 1px 0px 0px rgba(87, 89, 91, 1),
    2px 2px 0px 0px rgba(87, 89, 91, 1),
    3px 3px 0px 0px rgba(87, 89, 91, 1),
    4px 4px 0px 0px rgba(87, 89, 91, 1),
    5px 5px 0px 0px rgba(87, 89, 91, 1),
    6px 6px 0px 0px rgba(87, 89, 91, 1),
    7px 7px 0px 0px rgba(87, 89, 91, 1);
  -moz-box-shadow:
    1px 1px 0px 0px rgba(87, 89, 91, 1),
    2px 2px 0px 0px rgba(87, 89, 91, 1),
    3px 3px 0px 0px rgba(87, 89, 91, 1),
    4px 4px 0px 0px rgba(87, 89, 91, 1),
    5px 5px 0px 0px rgba(87, 89, 91, 1),
    6px 6px 0px 0px rgba(87, 89, 91, 1),
    7px 7px 0px 0px rgba(87, 89, 91, 1);
  box-shadow:
    1px 1px 0px 0px rgba(87, 89, 91, 1),
    2px 2px 0px 0px rgba(87, 89, 91, 1),
    3px 3px 0px 0px rgba(87, 89, 91, 1),
    4px 4px 0px 0px rgba(87, 89, 91, 1),
    5px 5px 0px 0px rgba(87, 89, 91, 1),
    6px 6px 0px 0px rgba(87, 89, 91, 1),
    7px 7px 0px 0px rgba(87, 89, 91, 1);
}
.rs-boxshadow2 {
  -webkit-box-shadow:
    -1px 1px 0px 0px rgba(40, 43, 45, 1),
    -2px 2px 0px 0px rgba(40, 43, 45, 1),
    -3px 3px 0px 0px rgba(40, 43, 45, 1),
    -4px 4px 0px 0px rgba(40, 43, 45, 1),
    -5px 5px 0px 0px rgba(40, 43, 45, 1),
    -6px 6px 0px 0px rgba(40, 43, 45, 1),
    -7px 7px 0px 0px rgba(40, 43, 45, 1);
  -moz-box-shadow:
    -1px 1px 0px 0px rgba(40, 43, 45, 1),
    -2px 2px 0px 0px rgba(40, 43, 45, 1),
    -3px 3px 0px 0px rgba(40, 43, 45, 1),
    -4px 4px 0px 0px rgba(40, 43, 45, 1),
    -5px 5px 0px 0px rgba(40, 43, 45, 1),
    -6px 6px 0px 0px rgba(40, 43, 45, 1),
    -7px 7px 0px 0px rgba(40, 43, 45, 1);
  box-shadow:
    -1px 1px 0px 0px rgba(40, 43, 45, 1),
    -2px 2px 0px 0px rgba(40, 43, 45, 1),
    -3px 3px 0px 0px rgba(40, 43, 45, 1),
    -4px 4px 0px 0px rgba(40, 43, 45, 1),
    -5px 5px 0px 0px rgba(40, 43, 45, 1),
    -6px 6px 0px 0px rgba(40, 43, 45, 1),
    -7px 7px 0px 0px rgba(40, 43, 45, 1);
}
.nc-shadow {
  -webkit-box-shadow: 0px 5px 75px 0px rgba(45, 48, 50, 0.35);
  -moz-box-shadow: 0px 5px 75px 0px rgba(45, 48, 50, 0.35);
  box-shadow: 0px 5px 75px 0px rgba(45, 48, 50, 0.35);
}

/* angular:styles/global:styles */
