:root {
  --wp-admin-theme-color: #3858e9;
  --wp-admin-theme-color--rgb: 56, 88, 233;
  --wp-admin-theme-color-darker-10: #2145e6;
  --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
  --wp-admin-theme-color-darker-20: #183ad6;
  --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px
  }
}

@media not (prefers-reduced-motion) {
  .components-animate__appear {
    animation: components-animate__appear-animation .1s cubic-bezier(0, 0, .2, 1) 0s;
    animation-fill-mode: forwards
  }
}

.components-animate__appear.is-from-top,
.components-animate__appear.is-from-top.is-from-left {
  transform-origin: top left
}

.components-animate__appear.is-from-top.is-from-right {
  transform-origin: top right
}

.components-animate__appear.is-from-bottom,
.components-animate__appear.is-from-bottom.is-from-left {
  transform-origin: bottom left
}

.components-animate__appear.is-from-bottom.is-from-right {
  transform-origin: bottom right
}

@keyframes components-animate__appear-animation {
  0% {
    transform: translateY(-2em) scaleY(0) scaleX(0)
  }

  to {
    transform: translateY(0) scaleY(1) scaleX(1)
  }
}

@media not (prefers-reduced-motion) {
  .components-animate__slide-in {
    animation: components-animate__slide-in-animation .1s cubic-bezier(0, 0, .2, 1);
    animation-fill-mode: forwards
  }

  .components-animate__slide-in.is-from-left {
    transform: translateX(100%)
  }

  .components-animate__slide-in.is-from-right {
    transform: translateX(-100%)
  }
}

@keyframes components-animate__slide-in-animation {
  to {
    transform: translateX(0)
  }
}

@media not (prefers-reduced-motion) {
  .components-animate__loading {
    animation: components-animate__loading 1.6s ease-in-out infinite
  }
}

@keyframes components-animate__loading {
  0% {
    opacity: .5
  }

  50% {
    opacity: 1
  }

  to {
    opacity: .5
  }
}

.components-autocomplete__popover .components-popover__content {
  min-width: 200px;
  padding: 8px
}

.components-autocomplete__result.components-button {
  display: flex;
  height: auto;
  min-height: 36px;
  text-align: left;
  width: 100%
}

.components-autocomplete__result.components-button:focus:not(:disabled) {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-badge {
  align-items: center;
  background-color: color-mix(in srgb, #fff 90%, var(--base-color));
  border-radius: 2px;
  box-sizing: border-box;
  color: color-mix(in srgb, #000 50%, var(--base-color));
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  gap: 2px;
  line-height: 20px;
  max-width: 100%;
  min-height: 24px;
  padding: 0 8px
}

.components-badge *,
.components-badge :after,
.components-badge :before {
  box-sizing: inherit
}

.components-badge:where(.is-default) {
  background-color: #f0f0f0;
  color: #2f2f2f
}

.components-badge.has-icon {
  padding-inline-start: 4px
}

.components-badge.is-info {
  --base-color: #3858e9
}

.components-badge.is-warning {
  --base-color: #f0b849
}

.components-badge.is-error {
  --base-color: #cc1818
}

.components-badge.is-success {
  --base-color: #4ab866
}

.components-badge__icon {
  flex-shrink: 0
}

.components-badge__content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.components-button-group {
  display: inline-block
}

.components-button-group .components-button {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px #1e1e1e;
  color: #1e1e1e;
  display: inline-flex
}

.components-button-group .components-button+.components-button {
  margin-left: -1px
}

.components-button-group .components-button:first-child {
  border-radius: 2px 0 0 2px
}

.components-button-group .components-button:last-child {
  border-radius: 0 2px 2px 0
}

.components-button-group .components-button.is-primary,
.components-button-group .components-button:focus {
  position: relative;
  z-index: 1
}

.components-button-group .components-button.is-primary {
  box-shadow: inset 0 0 0 1px #1e1e1e
}

.components-button {
  align-items: center;
  -webkit-appearance: none;
  background: none;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  color: var(--wp-components-color-foreground, #1e1e1e);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 13px;
  height: 36px;
  margin: 0;
  padding: 6px 12px;
  text-decoration: none
}

@media not (prefers-reduced-motion) {
  .components-button {
    transition: box-shadow .1s linear
  }
}

.components-button.is-next-40px-default-size {
  height: 40px
}

.components-button:hover:not(:disabled, [aria-disabled=true]),
.components-button[aria-expanded=true] {
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button:focus:not(:disabled) {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 3px solid #0000
}

.components-button.is-primary {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  color: var(--wp-components-color-accent-inverted, #fff);
  outline: 1px solid #0000;
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap
}

.components-button.is-primary:hover:not(:disabled) {
  background: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6));
  color: var(--wp-components-color-accent-inverted, #fff)
}

.components-button.is-primary:active:not(:disabled) {
  background: var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6));
  border-color: var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6));
  color: var(--wp-components-color-accent-inverted, #fff)
}

.components-button.is-primary:focus:not(:disabled) {
  box-shadow: inset 0 0 0 1px var(--wp-components-color-background, #fff), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button.is-primary:disabled,
.components-button.is-primary:disabled:active:enabled,
.components-button.is-primary[aria-disabled=true],
.components-button.is-primary[aria-disabled=true]:active:enabled,
.components-button.is-primary[aria-disabled=true]:enabled {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  color: #fff6;
  outline: none
}

.components-button.is-primary:disabled:active:enabled:focus:enabled,
.components-button.is-primary:disabled:focus:enabled,
.components-button.is-primary[aria-disabled=true]:active:enabled:focus:enabled,
.components-button.is-primary[aria-disabled=true]:enabled:focus:enabled,
.components-button.is-primary[aria-disabled=true]:focus:enabled {
  box-shadow: inset 0 0 0 1px var(--wp-components-color-background, #fff), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button.is-primary.is-busy,
.components-button.is-primary.is-busy:disabled,
.components-button.is-primary.is-busy[aria-disabled=true] {
  background-image: linear-gradient(-45deg, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 33%, var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6)) 33%, var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6)) 70%, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 70%);
  background-size: 100px 100%;
  border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  color: var(--wp-components-color-accent-inverted, #fff)
}

.components-button.is-secondary,
.components-button.is-tertiary {
  outline: 1px solid #0000
}

.components-button.is-secondary:active:not(:disabled),
.components-button.is-tertiary:active:not(:disabled) {
  box-shadow: none
}

.components-button.is-secondary:disabled,
.components-button.is-secondary[aria-disabled=true],
.components-button.is-secondary[aria-disabled=true]:hover,
.components-button.is-tertiary:disabled,
.components-button.is-tertiary[aria-disabled=true],
.components-button.is-tertiary[aria-disabled=true]:hover {
  background: #0000;
  color: #949494;
  transform: none
}

.components-button.is-secondary {
  background: #0000;
  box-shadow: inset 0 0 0 1px var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)), 0 0 0 currentColor;
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 1px solid #0000;
  white-space: nowrap
}

.components-button.is-secondary:hover:not(:disabled, [aria-disabled=true], .is-pressed) {
  background: color-mix(in srgb, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 4%, #0000);
  box-shadow: inset 0 0 0 1px var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6));
  color: var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6))
}

.components-button.is-secondary:disabled:not(:focus),
.components-button.is-secondary[aria-disabled=true]:hover:not(:focus),
.components-button.is-secondary[aria-disabled=true]:not(:focus) {
  box-shadow: inset 0 0 0 1px #ddd
}

.components-button.is-secondary:focus:not(:disabled) {
  box-shadow: 0 0 0 currentColor inset, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-button.is-tertiary {
  background: #0000;
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  white-space: nowrap
}

.components-button.is-tertiary:hover:not(:disabled, [aria-disabled=true], .is-pressed) {
  background: color-mix(in srgb, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 4%, #0000);
  color: var(--wp-components-color-accent-darker-20, var(--wp-admin-theme-color-darker-20, #183ad6))
}

.components-button.is-tertiary:active:not(:disabled, [aria-disabled=true]) {
  background: color-mix(in srgb, var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)) 8%, #0000)
}

p+.components-button.is-tertiary {
  margin-left: -6px
}

.components-button.is-tertiary:disabled:not(:focus),
.components-button.is-tertiary[aria-disabled=true]:hover:not(:focus),
.components-button.is-tertiary[aria-disabled=true]:not(:focus) {
  box-shadow: none;
  outline: none
}

.components-button.is-destructive {
  --wp-components-color-accent: #cc1818;
  --wp-components-color-accent-darker-10: #9e1313;
  --wp-components-color-accent-darker-20: #710d0d
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link) {
  color: #cc1818
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):hover:not(:disabled, [aria-disabled=true]) {
  color: #710d0d
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):focus {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #cc1818
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):active:not(:disabled, [aria-disabled=true]) {
  background: #ccc
}

.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link):disabled,
.components-button.is-destructive:not(.is-primary):not(.is-secondary):not(.is-tertiary):not(.is-link)[aria-disabled=true] {
  color: #949494
}

.components-button.is-destructive.is-secondary:hover:not(:disabled, [aria-disabled=true]),
.components-button.is-destructive.is-tertiary:hover:not(:disabled, [aria-disabled=true]) {
  background: #cc18180a
}

.components-button.is-destructive.is-secondary:active:not(:disabled, [aria-disabled=true]),
.components-button.is-destructive.is-tertiary:active:not(:disabled, [aria-disabled=true]) {
  background: #cc181814
}

.components-button.is-link {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  height: auto;
  margin: 0;
  outline: none;
  padding: 0;
  text-align: left;
  text-decoration: underline
}

@media not (prefers-reduced-motion) {
  .components-button.is-link {
    transition-duration: .05s;
    transition-property: border, background, color;
    transition-timing-function: ease-in-out
  }
}

.components-button.is-link:focus {
  border-radius: 2px
}

.components-button.is-link:disabled,
.components-button.is-link[aria-disabled=true] {
  color: #949494
}

.components-button:not(:disabled, [aria-disabled=true]):active {
  color: var(--wp-components-color-foreground, #1e1e1e)
}

.components-button:disabled,
.components-button[aria-disabled=true] {
  color: #949494;
  cursor: default
}

.components-button.is-busy,
.components-button.is-secondary.is-busy,
.components-button.is-secondary.is-busy:disabled,
.components-button.is-secondary.is-busy[aria-disabled=true] {
  background-image: linear-gradient(-45deg, #fafafa 33%, #e0e0e0 0, #e0e0e0 70%, #fafafa 0);
  background-size: 100px 100%
}

@media not (prefers-reduced-motion) {

  .components-button.is-busy,
  .components-button.is-secondary.is-busy,
  .components-button.is-secondary.is-busy:disabled,
  .components-button.is-secondary.is-busy[aria-disabled=true] {
    animation: components-button__busy-animation 2.5s linear infinite
  }
}

.components-button.is-compact {
  height: 32px
}

.components-button.is-compact.has-icon:not(.has-text) {
  min-width: 32px;
  padding: 0;
  width: 32px
}

.components-button.is-small {
  font-size: 11px;
  height: 24px;
  line-height: 22px;
  padding: 0 8px
}

.components-button.is-small.has-icon:not(.has-text) {
  min-width: 24px;
  padding: 0;
  width: 24px
}

.components-button.has-icon {
  justify-content: center;
  min-width: 36px;
  padding: 6px
}

.components-button.has-icon.is-next-40px-default-size {
  min-width: 40px
}

.components-button.has-icon .dashicon {
  align-items: center;
  box-sizing: initial;
  display: inline-flex;
  justify-content: center;
  padding: 2px
}

.components-button.has-icon.has-text {
  gap: 4px;
  justify-content: start;
  padding-left: 8px;
  padding-right: 12px
}

.components-button.is-pressed,
.components-button.is-pressed:hover {
  color: var(--wp-components-color-foreground-inverted, #fff)
}

.components-button.is-pressed:hover:not(:disabled, [aria-disabled=true]),
.components-button.is-pressed:not(:disabled, [aria-disabled=true]) {
  background: var(--wp-components-color-foreground, #1e1e1e)
}

.components-button.is-pressed:disabled,
.components-button.is-pressed[aria-disabled=true] {
  color: #949494
}

.components-button.is-pressed:disabled:not(.is-primary):not(.is-secondary):not(.is-tertiary),
.components-button.is-pressed[aria-disabled=true]:not(.is-primary):not(.is-secondary):not(.is-tertiary) {
  background: #949494;
  color: var(--wp-components-color-foreground-inverted, #fff)
}

.components-button.is-pressed:focus:not(:disabled) {
  box-shadow: inset 0 0 0 1px var(--wp-components-color-background, #fff), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 2px solid #0000
}

.components-button svg {
  fill: currentColor;
  outline: none
}

@media (forced-colors:active) {
  .components-button svg {
    fill: CanvasText
  }
}

.components-button .components-visually-hidden {
  height: auto
}

@keyframes components-button__busy-animation {
  0% {
    background-position: 200px 0
  }
}

.components-checkbox-control {
  --checkbox-input-size: 24px;
  --checkbox-input-margin: 8px
}

@media (min-width:600px) {
  .components-checkbox-control {
    --checkbox-input-size: 16px
  }
}

.components-checkbox-control__label {
  cursor: pointer;
  line-height: var(--checkbox-input-size)
}

.components-checkbox-control__input[type=checkbox] {
  appearance: none;
  background: #fff;
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  box-shadow: 0 0 0 #0000;
  clear: none;
  color: #1e1e1e;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  height: var(--checkbox-input-size);
  line-height: normal;
  line-height: 0;
  margin: 0 4px 0 0;
  outline: 0;
  padding: 6px 8px;
  padding: 0 !important;
  text-align: center;
  transition: none;
  vertical-align: top;
  width: var(--checkbox-input-size)
}

@media not (prefers-reduced-motion) {
  .components-checkbox-control__input[type=checkbox] {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .components-checkbox-control__input[type=checkbox] {
    font-size: 13px;
    line-height: normal
  }
}

.components-checkbox-control__input[type=checkbox]:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox]::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.components-checkbox-control__input[type=checkbox]::-moz-placeholder {
  color: #1e1e1e9e
}

.components-checkbox-control__input[type=checkbox]:-ms-input-placeholder {
  color: #1e1e1e9e
}

.components-checkbox-control__input[type=checkbox]:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox]:checked {
  background: var(--wp-admin-theme-color);
  border-color: var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox]:checked::-ms-check {
  opacity: 0
}

.components-checkbox-control__input[type=checkbox]:checked:before,
.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
  color: #fff;
  margin: -3px -5px
}

@media (min-width:782px) {

  .components-checkbox-control__input[type=checkbox]:checked:before,
  .components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
    margin: -4px 0 0 -5px
  }
}

.components-checkbox-control__input[type=checkbox][aria-checked=mixed] {
  background: var(--wp-admin-theme-color);
  border-color: var(--wp-admin-theme-color)
}

.components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
  content: "\f460";
  display: inline-block;
  float: left;
  font: normal 30px/1 dashicons;
  vertical-align: middle;
  width: 16px;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (min-width:782px) {
  .components-checkbox-control__input[type=checkbox][aria-checked=mixed]:before {
    float: none;
    font-size: 21px
  }
}

.components-checkbox-control__input[type=checkbox]:disabled,
.components-checkbox-control__input[type=checkbox][aria-disabled=true] {
  background: #f0f0f0;
  border-color: #ddd;
  cursor: default;
  opacity: 1
}

@media not (prefers-reduced-motion) {
  .components-checkbox-control__input[type=checkbox] {
    transition: border-color .1s ease-in-out
  }
}

.components-checkbox-control__input[type=checkbox]:focus {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);
  outline: 2px solid #0000;
  outline-offset: 2px
}

.components-checkbox-control__input[type=checkbox]:checked,
.components-checkbox-control__input[type=checkbox]:indeterminate {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-checkbox-control__input[type=checkbox]:checked::-ms-check,
.components-checkbox-control__input[type=checkbox]:indeterminate::-ms-check {
  opacity: 0
}

.components-checkbox-control__input[type=checkbox]:checked:before {
  content: none
}

.components-checkbox-control__input-container {
  aspect-ratio: 1;
  display: inline-block;
  flex-shrink: 0;
  line-height: 1;
  margin-right: var(--checkbox-input-margin);
  position: relative;
  vertical-align: middle;
  width: var(--checkbox-input-size)
}

svg.components-checkbox-control__checked,
svg.components-checkbox-control__indeterminate {
  --checkmark-size: var(--checkbox-input-size);
  fill: #fff;
  cursor: pointer;
  height: var(--checkmark-size);
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-user-select: none;
  user-select: none;
  width: var(--checkmark-size)
}

@media (min-width:600px) {

  svg.components-checkbox-control__checked,
  svg.components-checkbox-control__indeterminate {
    --checkmark-size: calc(var(--checkbox-input-size) + 4px)
  }
}

.components-checkbox-control__help {
  display: inline-block;
  margin-inline-start: calc(var(--checkbox-input-size) + var(--checkbox-input-margin))
}

.components-circular-option-picker {
  display: inline-block;
  min-width: 188px;
  width: 100%
}

.components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px
}

.components-circular-option-picker .components-circular-option-picker__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1
}

.components-circular-option-picker>:not(.components-circular-option-picker__swatches) {
  position: relative;
  z-index: 0
}

.components-circular-option-picker__option-wrapper {
  display: inline-block;
  height: 28px;
  transform: scale(1);
  vertical-align: top;
  width: 28px
}

@media not (prefers-reduced-motion) {
  .components-circular-option-picker__option-wrapper {
    transition: transform .1s ease;
    will-change: transform
  }
}

.components-circular-option-picker__option-wrapper:hover {
  transform: scale(1.2)
}

.components-circular-option-picker__option-wrapper>div {
  height: 100%;
  width: 100%
}

.components-circular-option-picker__option-wrapper:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none'%3E%3Cpath fill='%23555D65' d='M6 8V6H4v2zm2 0V6h2v2zm2 8H8v-2h2zm2 0v-2h2v2zm0 2v-2h-2v2H8v2h2v-2zm2 0v2h-2v-2zm2 0h-2v-2h2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2zm-2-4v-2h2v2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' d='M18 18v2h-2v-2z'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2zm0 2v-2H6v2zm2 0v-2h2v2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2z' clip-rule='evenodd'/%3E%3Cpath fill='%23555D65' fill-rule='evenodd' d='M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4zm0 4V2H2v2zm2 0V2h2v2zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2z' clip-rule='evenodd'/%3E%3C/svg%3E");
  border-radius: 50%;
  bottom: 1px;
  content: "";
  left: 1px;
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: -1
}

.components-circular-option-picker__option {
  aspect-ratio: 1;
  background: #0000;
  border: none;
  border-radius: 50%;
  box-shadow: inset 0 0 0 14px;
  cursor: pointer;
  display: inline-block;
  height: 100% !important;
  vertical-align: top
}

@media not (prefers-reduced-motion) {
  .components-circular-option-picker__option {
    transition: box-shadow .1s ease
  }
}

.components-circular-option-picker__option:hover {
  box-shadow: inset 0 0 0 14px !important
}

.components-circular-option-picker__option[aria-pressed=true],
.components-circular-option-picker__option[aria-selected=true] {
  box-shadow: inset 0 0 0 4px;
  overflow: visible;
  position: relative;
  z-index: 1
}

.components-circular-option-picker__option[aria-pressed=true]+svg,
.components-circular-option-picker__option[aria-selected=true]+svg {
  border-radius: 50%;
  left: 2px;
  pointer-events: none;
  position: absolute;
  top: 2px;
  z-index: 2
}

.components-circular-option-picker__option:after {
  border: 1px solid #0000;
  border-radius: 50%;
  bottom: -1px;
  box-shadow: inset 0 0 0 1px #0003;
  box-sizing: inherit;
  content: "";
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px
}

.components-circular-option-picker__option:focus:after {
  border: 2px solid #757575;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  content: "";
  height: calc(100% + 4px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4px)
}

.components-circular-option-picker__option.components-button:focus {
  background-color: initial;
  box-shadow: inset 0 0 0 14px;
  outline: none
}

.components-circular-option-picker__button-action .components-circular-option-picker__option {
  background: #fff;
  color: #fff
}

.components-circular-option-picker__dropdown-link-action {
  margin-right: 16px
}

.components-circular-option-picker__dropdown-link-action .components-button {
  line-height: 22px
}

.components-palette-edit__popover-gradient-picker {
  padding: 8px;
  width: 260px
}

.components-dropdown-menu__menu .components-palette-edit__menu-button {
  width: 100%
}

.component-color-indicator {
  background: #fff linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #0003;
  display: inline-block;
  height: 20px;
  padding: 0;
  width: 20px
}

.components-combobox-control {
  width: 100%
}

input.components-combobox-control__input[type=text] {
  border: none;
  box-shadow: none;
  font-family: inherit;
  font-size: 16px;
  line-height: inherit;
  margin: 0;
  min-height: auto;
  padding: 2px;
  width: 100%
}

@media (min-width:600px) {
  input.components-combobox-control__input[type=text] {
    font-size: 13px
  }
}

input.components-combobox-control__input[type=text]:focus {
  box-shadow: none;
  outline: none
}

.components-combobox-control__suggestions-container {
  align-items: flex-start;
  border: 1px solid #949494;
  border-radius: 2px;
  box-shadow: 0 0 0 #0000;
  display: flex;
  flex-wrap: wrap;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: normal;
  padding: 0;
  width: 100%
}

@media not (prefers-reduced-motion) {
  .components-combobox-control__suggestions-container {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .components-combobox-control__suggestions-container {
    font-size: 13px;
    line-height: normal
  }
}

.components-combobox-control__suggestions-container:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-combobox-control__suggestions-container::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.components-combobox-control__suggestions-container::-moz-placeholder {
  color: #1e1e1e9e
}

.components-combobox-control__suggestions-container:-ms-input-placeholder {
  color: #1e1e1e9e
}

.components-combobox-control__suggestions-container:focus-within {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-combobox-control__suggestions-container .components-spinner {
  margin: 0
}

.components-color-palette__custom-color-wrapper {
  position: relative;
  z-index: 0
}

.components-color-palette__custom-color-button {
  background: none;
  border: none;
  border-radius: 4px 4px 0 0;
  box-shadow: inset 0 0 0 1px #0003;
  box-sizing: border-box;
  cursor: pointer;
  height: 64px;
  outline: 1px solid #0000;
  position: relative;
  width: 100%
}

.components-color-palette__custom-color-button:focus {
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline-width: 2px
}

.components-color-palette__custom-color-button:after {
  background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0);
  background-position: 0 0, 24px 24px;
  background-size: 48px 48px;
  border-radius: 3px 3px 0 0;
  content: "";
  inset: 1px;
  position: absolute;
  z-index: -1
}

.components-color-palette__custom-color-text-wrapper {
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 -1px 0 0 #0003, inset 1px 0 0 0 #0003, inset -1px 0 0 0 #0003;
  font-size: 13px;
  padding: 12px 16px;
  position: relative
}

.components-color-palette__custom-color-name {
  color: var(--wp-components-color-foreground, #1e1e1e);
  margin: 0 1px
}

.components-color-palette__custom-color-value {
  color: #757575
}

.components-color-palette__custom-color-value--is-hex {
  text-transform: uppercase
}

.components-color-palette__custom-color-value:empty:after {
  content: "";
  visibility: hidden
}

.components-custom-gradient-picker__gradient-bar {
  border-radius: 2px;
  height: 48px;
  position: relative;
  width: 100%;
  z-index: 1
}

.components-custom-gradient-picker__gradient-bar.has-gradient {
  background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, #0000 0, #0000 75%, #e0e0e0 0, #e0e0e0);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__gradient-bar-background {
  inset: 0;
  position: absolute
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__markers-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: calc(100% - 48px)
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-dropdown {
  display: flex;
  height: 16px;
  position: absolute;
  top: 16px;
  width: 16px
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown {
  background: #fff;
  border-radius: 50%;
  color: #1e1e1e;
  height: inherit;
  min-width: 16px !important;
  padding: 2px;
  position: relative;
  width: inherit
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point-dropdown svg {
  height: 100%;
  width: 100%
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {
  border-radius: 50%;
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 2px 0 #00000040;
  height: inherit;
  outline: 2px solid #0000;
  padding: 0;
  width: inherit
}

.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button.is-active,
.components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button:focus {
  box-shadow: inset 0 0 0 calc(var(--wp-admin-border-width-focus)*2) #fff, 0 0 2px 0 #00000040;
  outline: 1.5px solid #0000
}

.components-custom-gradient-picker__remove-control-point-wrapper {
  padding-bottom: 8px
}

.components-custom-gradient-picker__inserter {
  direction: ltr
}

.components-custom-gradient-picker__liner-gradient-indicator {
  display: inline-block;
  flex: 0 auto;
  height: 20px;
  width: 20px
}

.components-custom-gradient-picker__ui-line {
  position: relative;
  z-index: 0
}

.block-editor-dimension-control .components-base-control__field {
  align-items: center;
  display: flex
}

.block-editor-dimension-control .components-base-control__label {
  align-items: center;
  display: flex;
  margin-bottom: 0;
  margin-right: 1em
}

.block-editor-dimension-control .components-base-control__label .dashicon {
  margin-right: .5em
}

.block-editor-dimension-control.is-manual .components-base-control__label {
  width: 10em
}

body.is-dragging-components-draggable {
  cursor: move;
  cursor: grabbing !important
}

.components-draggable__invisible-drag-image {
  height: 50px;
  left: -1000px;
  position: fixed;
  width: 50px
}

.components-draggable__clone {
  background: #0000;
  padding: 0;
  pointer-events: none;
  position: fixed;
  z-index: 1000000000
}

.components-drop-zone {
  border-radius: 2px;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 40
}

.components-drop-zone.is-active {
  opacity: 1;
  visibility: visible
}

.components-drop-zone .components-drop-zone__content {
  align-items: center;
  background-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  bottom: 0;
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 50
}

.components-drop-zone .components-drop-zone__content-inner {
  opacity: 0;
  transform: scale(.9)
}

.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content {
  opacity: 1
}

@media not (prefers-reduced-motion) {
  .components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content {
    transition: opacity .2s ease-in-out
  }
}

.components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner {
  opacity: 1;
  transform: scale(1)
}

@media not (prefers-reduced-motion) {
  .components-drop-zone.is-active.is-dragging-over-element .components-drop-zone__content-inner {
    transition: opacity .1s ease-in-out .1s, transform .1s ease-in-out .1s
  }
}

.components-drop-zone__content-icon,
.components-drop-zone__content-text {
  display: block
}

.components-drop-zone__content-icon {
  line-height: 0;
  margin: 0 auto 8px;
  fill: currentColor;
  pointer-events: none
}

.components-drop-zone__content-text {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px
}

.components-dropdown {
  display: inline-block
}

.components-dropdown__content .components-popover__content {
  padding: 8px
}

.components-dropdown__content .components-popover__content:has(.components-menu-group) {
  padding: 0
}

.components-dropdown__content .components-popover__content:has(.components-menu-group) .components-dropdown-menu__menu>.components-menu-item__button,
.components-dropdown__content .components-popover__content:has(.components-menu-group)>.components-menu-item__button {
  margin: 8px;
  width: auto
}

.components-dropdown__content [role=menuitem] {
  white-space: nowrap
}

.components-dropdown__content .components-menu-group {
  padding: 8px
}

.components-dropdown__content .components-menu-group+.components-menu-group {
  border-top: 1px solid #ccc;
  padding: 8px
}

.components-dropdown__content.is-alternate .components-menu-group+.components-menu-group {
  border-color: #1e1e1e
}

.components-dropdown-menu__toggle {
  vertical-align: top
}

.components-dropdown-menu__menu {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  width: 100%
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item,
.components-dropdown-menu__menu .components-menu-item {
  cursor: pointer;
  outline: none;
  padding: 6px;
  white-space: nowrap;
  width: 100%
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
.components-dropdown-menu__menu .components-menu-item.has-separator {
  margin-top: 6px;
  overflow: visible;
  position: relative
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator:before,
.components-dropdown-menu__menu .components-menu-item.has-separator:before {
  background-color: #ddd;
  box-sizing: initial;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: -3px
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active .dashicon,
.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-active svg,
.components-dropdown-menu__menu .components-menu-item.is-active .dashicon,
.components-dropdown-menu__menu .components-menu-item.is-active svg {
  background: #1e1e1e;
  border-radius: 1px;
  box-shadow: 0 0 0 1px #1e1e1e;
  color: #fff
}

.components-dropdown-menu__menu .components-dropdown-menu__menu-item.is-icon-only,
.components-dropdown-menu__menu .components-menu-item.is-icon-only {
  width: auto
}

.components-dropdown-menu__menu .components-menu-item__button,
.components-dropdown-menu__menu .components-menu-item__button.components-button {
  height: auto;
  min-height: 40px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: left
}

.components-duotone-picker__color-indicator:before {
  background: #0000
}

.components-duotone-picker__color-indicator>.components-button,
.components-duotone-picker__color-indicator>.components-button.is-pressed:hover:not(:disabled) {
  background: linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0);
  color: #0000
}

.components-duotone-picker__color-indicator>.components-button:not([aria-disabled=true]):active {
  color: #0000
}

.components-color-list-picker,
.components-color-list-picker__swatch-button {
  width: 100%
}

.components-color-list-picker__color-picker {
  margin: 8px 0
}

.components-color-list-picker__swatch-color {
  margin: 2px
}

.components-external-link {
  text-decoration: none
}

.components-external-link__contents {
  text-decoration: underline
}

.components-external-link__icon {
  font-weight: 400;
  margin-left: .5ch
}

.components-form-toggle {
  display: inline-block;
  height: 16px;
  position: relative
}

.components-form-toggle .components-form-toggle__track {
  background-color: #fff;
  border: 1px solid #949494;
  border-radius: 8px;
  box-sizing: border-box;
  content: "";
  display: inline-block;
  height: 16px;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  width: 32px
}

@media not (prefers-reduced-motion) {
  .components-form-toggle .components-form-toggle__track {
    transition: background-color .2s ease, border-color .2s ease
  }
}

.components-form-toggle .components-form-toggle__track:after {
  border-top: 16px solid #0000;
  box-sizing: border-box;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute
}

@media not (prefers-reduced-motion) {
  .components-form-toggle .components-form-toggle__track:after {
    transition: opacity .2s ease
  }
}

.components-form-toggle .components-form-toggle__thumb {
  background-color: #1e1e1e;
  border: 6px solid #0000;
  border-radius: 50%;
  box-shadow: 0 1px 1px #00000008, 0 1px 2px #00000005, 0 3px 3px #00000005, 0 4px 4px #00000003;
  box-sizing: border-box;
  display: block;
  height: 12px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 12px
}

@media not (prefers-reduced-motion) {
  .components-form-toggle .components-form-toggle__thumb {
    transition: transform .2s ease, background-color .2s ease-out
  }
}

.components-form-toggle.is-checked .components-form-toggle__track {
  background-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-form-toggle.is-checked .components-form-toggle__track:after {
  opacity: 1
}

.components-form-toggle .components-form-toggle__input:focus+.components-form-toggle__track {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 2px solid #0000;
  outline-offset: 2px
}

.components-form-toggle.is-checked .components-form-toggle__thumb {
  background-color: #fff;
  border-width: 0;
  transform: translateX(16px)
}

.components-disabled .components-form-toggle,
.components-form-toggle.is-disabled {
  opacity: .3
}

.components-form-toggle input.components-form-toggle__input[type=checkbox] {
  border: none;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1
}

.components-form-toggle input.components-form-toggle__input[type=checkbox]:checked {
  background: none
}

.components-form-toggle input.components-form-toggle__input[type=checkbox]:before {
  content: ""
}

.components-form-toggle input.components-form-toggle__input[type=checkbox]:not(:disabled, [aria-disabled=true]) {
  cursor: pointer
}

.components-form-token-field__input-container {
  border: 1px solid #949494;
  border-radius: 2px;
  box-shadow: 0 0 0 #0000;
  cursor: text;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: normal;
  padding: 0;
  width: 100%
}

@media not (prefers-reduced-motion) {
  .components-form-token-field__input-container {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .components-form-token-field__input-container {
    font-size: 13px;
    line-height: normal
  }
}

.components-form-token-field__input-container:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-form-token-field__input-container::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.components-form-token-field__input-container::-moz-placeholder {
  color: #1e1e1e9e
}

.components-form-token-field__input-container:-ms-input-placeholder {
  color: #1e1e1e9e
}

.components-form-token-field__input-container.is-disabled {
  background: #ddd;
  border-color: #ddd
}

.components-form-token-field__input-container.is-active {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-form-token-field__input-container input[type=text].components-form-token-field__input {
  background: inherit;
  border: 0;
  box-shadow: none;
  color: #1e1e1e;
  display: inline-block;
  flex: 1;
  font-family: inherit;
  font-size: 16px;
  margin-left: 4px;
  max-width: 100%;
  min-height: 24px;
  min-width: 50px;
  padding: 0;
  width: 100%
}

@media (min-width:600px) {
  .components-form-token-field__input-container input[type=text].components-form-token-field__input {
    font-size: 13px
  }
}

.components-form-token-field.is-active .components-form-token-field__input-container input[type=text].components-form-token-field__input,
.components-form-token-field__input-container input[type=text].components-form-token-field__input:focus {
  box-shadow: none;
  outline: none
}

.components-form-token-field__input-container .components-form-token-field__token+input[type=text].components-form-token-field__input {
  width: auto
}

.components-form-token-field__token {
  color: #1e1e1e;
  display: flex;
  font-size: 13px;
  max-width: 100%
}

.components-form-token-field__token.is-success .components-form-token-field__remove-token,
.components-form-token-field__token.is-success .components-form-token-field__token-text {
  background: #4ab866
}

.components-form-token-field__token.is-error .components-form-token-field__remove-token,
.components-form-token-field__token.is-error .components-form-token-field__token-text {
  background: #cc1818
}

.components-form-token-field__token.is-validating .components-form-token-field__remove-token,
.components-form-token-field__token.is-validating .components-form-token-field__token-text {
  color: #757575
}

.components-form-token-field__token.is-borderless {
  padding: 0 24px 0 0;
  position: relative
}

.components-form-token-field__token.is-borderless .components-form-token-field__token-text {
  background: #0000
}

.components-form-token-field__token.is-borderless:not(.is-disabled) .components-form-token-field__token-text {
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
  background: #0000;
  color: #757575;
  position: absolute;
  right: 0;
  top: 1px
}

.components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
  color: #4ab866
}

.components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
  color: #cc1818;
  padding: 0 4px 0 6px
}

.components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
  color: #1e1e1e
}

.components-form-token-field__remove-token.components-button,
.components-form-token-field__token-text {
  background: #ddd;
  display: inline-block;
  height: auto;
  min-width: unset
}

@media not (prefers-reduced-motion) {

  .components-form-token-field__remove-token.components-button,
  .components-form-token-field__token-text {
    transition: all .2s cubic-bezier(.4, 1, .4, 1)
  }
}

.components-form-token-field__token-text {
  border-radius: 1px 0 0 1px;
  line-height: 24px;
  overflow: hidden;
  padding: 0 0 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap
}

.components-form-token-field__remove-token.components-button {
  border-radius: 0 1px 1px 0;
  color: #1e1e1e;
  line-height: 10px;
  overflow: initial
}

.components-form-token-field__remove-token.components-button:hover:not(:disabled) {
  color: #1e1e1e
}

.components-form-token-field__suggestions-list {
  box-shadow: inset 0 1px 0 0 #949494;
  flex: 1 0 100%;
  list-style: none;
  margin: 0;
  max-height: 128px;
  min-width: 100%;
  overflow-y: auto;
  padding: 0
}

@media not (prefers-reduced-motion) {
  .components-form-token-field__suggestions-list {
    transition: all .15s ease-in-out
  }
}

.components-form-token-field__suggestion {
  box-sizing: border-box;
  color: #1e1e1e;
  display: block;
  font-size: 13px;
  margin: 0;
  min-height: 32px;
  padding: 8px 12px
}

.components-form-token-field__suggestion.is-selected {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  color: #fff
}

.components-form-token-field__suggestion[aria-disabled=true] {
  color: #949494;
  pointer-events: none
}

.components-form-token-field__suggestion[aria-disabled=true].is-selected {
  background-color: rgba(var(--wp-components-color-accent--rgb, var(--wp-admin-theme-color--rgb)), .04)
}

.components-form-token-field__suggestion:not(.is-empty) {
  cursor: pointer
}

@media (min-width:600px) {
  .components-guide {
    width: 600px
  }
}

.components-guide .components-modal__content {
  margin-top: 0;
  padding: 0
}

.components-guide .components-modal__content:before {
  content: none
}

.components-guide .components-modal__header {
  border-bottom: none;
  height: 60px;
  padding: 0;
  position: sticky
}

.components-guide .components-modal__header .components-button {
  align-self: flex-start;
  margin: 8px 8px 0 0;
  position: static
}

.components-guide .components-modal__header .components-button:hover svg {
  fill: #fff
}

.components-guide .components-guide__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
  min-height: 100%
}

.components-guide .components-guide__page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

@media (min-width:600px) {
  .components-guide .components-guide__page {
    min-height: 300px
  }
}

.components-guide .components-guide__footer {
  align-content: center;
  display: flex;
  height: 36px;
  justify-content: center;
  margin: 0 0 24px;
  padding: 0 32px;
  position: relative;
  width: 100%
}

.components-guide .components-guide__page-control {
  margin: 0;
  text-align: center
}

.components-guide .components-guide__page-control li {
  display: inline-block;
  margin: 0
}

.components-guide .components-guide__page-control .components-button {
  color: #e0e0e0;
  margin: -6px 0
}

.components-guide .components-guide__page-control li[aria-current=step] .components-button {
  color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-modal__frame.components-guide {
  border: none;
  max-height: 575px;
  min-width: 312px
}

@media (max-width:600px) {
  .components-modal__frame.components-guide {
    margin: auto;
    max-width: calc(100vw - 32px)
  }
}

.components-button.components-guide__back-button,
.components-button.components-guide__finish-button,
.components-button.components-guide__forward-button {
  position: absolute
}

.components-button.components-guide__back-button {
  left: 32px
}

.components-button.components-guide__finish-button,
.components-button.components-guide__forward-button {
  right: 32px
}

[role=region] {
  position: relative
}

.is-focusing-regions [role=region]:focus:after,
[role=region].interface-interface-skeleton__content:focus-visible:after {
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000000
}

.is-focusing-regions .editor-post-publish-panel,
.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-entities-saved-states-panel,
.is-focusing-regions .interface-interface-skeleton__actions .editor-layout__toggle-publish-panel,
.is-focusing-regions .interface-interface-skeleton__sidebar .editor-layout__toggle-sidebar-panel,
.is-focusing-regions [role=region]:focus:after,
.is-focusing-regions.is-distraction-free .interface-interface-skeleton__header .edit-post-header,
[role=region].interface-interface-skeleton__content:focus-visible:after {
  outline-color: var(--wp-admin-theme-color);
  outline-offset: calc(((-1*var(--wp-admin-border-width-focus))/var(--wp-block-editor-iframe-zoom-out-scale, 1))*2);
  outline-style: solid;
  outline-width: calc((var(--wp-admin-border-width-focus)/var(--wp-block-editor-iframe-zoom-out-scale, 1))*2)
}

.components-menu-group+.components-menu-group {
  border-top: 1px solid #1e1e1e;
  padding-top: 8px
}

.components-menu-group+.components-menu-group.has-hidden-separator {
  border-top: none;
  margin-top: 0;
  padding-top: 0
}

.components-menu-group:has(>div:empty) {
  display: none
}

.components-menu-group__label {
  color: #757575;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 4px;
  padding: 0 8px;
  text-transform: uppercase;
  white-space: nowrap
}

.components-menu-item__button,
.components-menu-item__button.components-button {
  width: 100%
}

.components-menu-item__button.components-button[role=menuitemcheckbox] .components-menu-item__item:only-child,
.components-menu-item__button.components-button[role=menuitemradio] .components-menu-item__item:only-child,
.components-menu-item__button[role=menuitemcheckbox] .components-menu-item__item:only-child,
.components-menu-item__button[role=menuitemradio] .components-menu-item__item:only-child {
  box-sizing: initial;
  padding-right: 48px
}

.components-menu-item__button .components-menu-items__item-icon,
.components-menu-item__button.components-button .components-menu-items__item-icon {
  display: inline-block;
  flex: 0 0 auto
}

.components-menu-item__button .components-menu-items__item-icon.has-icon-right,
.components-menu-item__button.components-button .components-menu-items__item-icon.has-icon-right {
  margin-left: 24px;
  margin-right: -2px
}

.components-menu-item__button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right,
.components-menu-item__button.components-button .components-menu-item__shortcut+.components-menu-items__item-icon.has-icon-right {
  margin-left: 8px
}

.components-menu-item__button .block-editor-block-icon,
.components-menu-item__button.components-button .block-editor-block-icon {
  margin-left: -2px;
  margin-right: 8px
}

.components-menu-item__button.components-button.is-primary,
.components-menu-item__button.is-primary {
  justify-content: center
}

.components-menu-item__button.components-button.is-primary .components-menu-item__item,
.components-menu-item__button.is-primary .components-menu-item__item {
  margin-right: 0
}

.components-menu-item__button.components-button:disabled.is-tertiary,
.components-menu-item__button.components-button[aria-disabled=true].is-tertiary,
.components-menu-item__button:disabled.is-tertiary,
.components-menu-item__button[aria-disabled=true].is-tertiary {
  background: none;
  color: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6));
  opacity: .3
}

.components-menu-item__info-wrapper {
  display: flex;
  flex-direction: column;
  margin-right: auto
}

.components-menu-item__info {
  color: #757575;
  font-size: 12px;
  margin-top: 4px;
  white-space: normal
}

.components-menu-item__item {
  align-items: center;
  display: inline-flex;
  margin-right: auto;
  min-width: 160px;
  white-space: nowrap
}

.components-menu-item__shortcut {
  align-self: center;
  color: currentColor;
  display: none;
  margin-left: auto;
  margin-right: 0;
  padding-left: 24px
}

@media (min-width:480px) {
  .components-menu-item__shortcut {
    display: inline
  }
}

.components-menu-items-choice,
.components-menu-items-choice.components-button {
  height: auto;
  min-height: 40px
}

.components-menu-items-choice svg,
.components-menu-items-choice.components-button svg {
  margin-right: 12px
}

.components-menu-items-choice.components-button.has-icon,
.components-menu-items-choice.has-icon {
  padding-left: 12px
}

.components-modal__screen-overlay {
  background-color: #00000059;
  bottom: 0;
  display: flex;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100000
}

@keyframes __wp-base-styles-fade-in {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media not (prefers-reduced-motion) {
  .components-modal__screen-overlay {
    animation: __wp-base-styles-fade-in .08s linear 0s;
    animation-fill-mode: forwards
  }
}

@keyframes __wp-base-styles-fade-out {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@media not (prefers-reduced-motion) {
  .components-modal__screen-overlay.is-animating-out {
    animation: __wp-base-styles-fade-out .08s linear 80ms;
    animation-fill-mode: forwards
  }
}

.components-modal__frame {
  animation-fill-mode: forwards;
  animation-name: components-modal__appear-animation;
  animation-timing-function: cubic-bezier(.29, 0, 0, 1);
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 5px 15px #00000014, 0 15px 27px #00000012, 0 30px 36px #0000000a, 0 50px 43px #00000005;
  box-sizing: border-box;
  display: flex;
  margin: 40px 0 0;
  overflow: hidden;
  width: 100%
}

.components-modal__frame *,
.components-modal__frame :after,
.components-modal__frame :before {
  box-sizing: inherit
}

@media not (prefers-reduced-motion) {
  .components-modal__frame {
    animation-duration: var(--modal-frame-animation-duration)
  }
}

.components-modal__screen-overlay.is-animating-out .components-modal__frame {
  animation-name: components-modal__disappear-animation;
  animation-timing-function: cubic-bezier(1, 0, .2, 1)
}

@media (min-width:600px) {
  .components-modal__frame {
    border-radius: 8px;
    margin: auto;
    max-height: calc(100% - 120px);
    max-width: calc(100% - 32px);
    min-width: 350px;
    width: auto
  }
}

@media (min-width:600px) and (min-width:600px) {
  .components-modal__frame.is-full-screen {
    height: calc(100% - 32px);
    max-height: none;
    width: calc(100% - 32px)
  }
}

@media (min-width:600px) and (min-width:782px) {
  .components-modal__frame.is-full-screen {
    height: calc(100% - 80px);
    max-width: none;
    width: calc(100% - 80px)
  }
}

@media (min-width:600px) {

  .components-modal__frame.has-size-large,
  .components-modal__frame.has-size-medium,
  .components-modal__frame.has-size-small {
    width: 100%
  }

  .components-modal__frame.has-size-small {
    max-width: 384px
  }

  .components-modal__frame.has-size-medium {
    max-width: 512px
  }

  .components-modal__frame.has-size-large {
    max-width: 840px
  }
}

@media (min-width:960px) {
  .components-modal__frame {
    max-height: 70%
  }
}

@keyframes components-modal__appear-animation {
  0% {
    opacity: 0;
    transform: scale(.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes components-modal__disappear-animation {
  0% {
    opacity: 1;
    transform: scale(1)
  }

  to {
    opacity: 0;
    transform: scale(.9)
  }
}

.components-modal__header {
  align-items: center;
  border-bottom: 1px solid #0000;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 24px 32px 8px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10
}

.components-modal__header .components-modal__header-heading {
  font-size: 1.2rem;
  font-weight: 600
}

.components-modal__header h1 {
  line-height: 1;
  margin: 0
}

.components-modal__content.has-scrolled-content:not(.hide-header) .components-modal__header {
  border-bottom-color: #ddd
}

.components-modal__header+p {
  margin-top: 0
}

.components-modal__header-heading-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: left
}

.components-modal__header-icon-container {
  display: inline-block
}

.components-modal__header-icon-container svg {
  max-height: 36px;
  max-width: 36px;
  padding: 8px
}

.components-modal__content {
  flex: 1;
  margin-top: 72px;
  overflow: auto;
  padding: 4px 32px 32px
}

.components-modal__content.hide-header {
  margin-top: 0;
  padding-top: 32px
}

.components-modal__content.is-scrollable:focus-visible {
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 2px solid #0000;
  outline-offset: -2px
}

.components-notice {
  align-items: center;
  background-color: #fff;
  border-left: 4px solid var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  color: #1e1e1e;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  padding: 8px 12px
}

.components-notice.is-dismissible {
  position: relative
}

.components-notice.is-success {
  background-color: #eff9f1;
  border-left-color: #4ab866
}

.components-notice.is-warning {
  background-color: #fef8ee;
  border-left-color: #f0b849
}

.components-notice.is-error {
  background-color: #f4a2a2;
  border-left-color: #cc1818
}

.components-notice__content {
  flex-grow: 1;
  margin: 4px 25px 4px 0
}

.components-notice__actions {
  display: flex;
  flex-wrap: wrap
}

.components-notice__action.components-button {
  margin-right: 8px
}

.components-notice__action.components-button,
.components-notice__action.components-button.is-link {
  margin-left: 12px
}

.components-notice__action.components-button.is-secondary {
  vertical-align: initial
}

.components-notice__dismiss {
  align-self: flex-start;
  color: #757575;
  flex-shrink: 0
}

.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):focus,
.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):active,
.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
  background-color: initial;
  color: #1e1e1e
}

.components-notice__dismiss:not(:disabled):not([aria-disabled=true]):not(.is-secondary):hover {
  box-shadow: none
}

.components-notice-list {
  box-sizing: border-box;
  max-width: 100vw
}

.components-notice-list .components-notice__content {
  line-height: 2;
  margin-bottom: 12px;
  margin-top: 12px
}

.components-notice-list .components-notice__action.components-button {
  display: block;
  margin-left: 0;
  margin-top: 8px
}

.components-panel {
  background: #fff;
  border: 1px solid #e0e0e0
}

.components-panel>.components-panel__body:first-child,
.components-panel>.components-panel__header:first-child {
  margin-top: -1px
}

.components-panel>.components-panel__body:last-child,
.components-panel>.components-panel__header:last-child {
  border-bottom-width: 0
}

.components-panel+.components-panel {
  margin-top: -1px
}

.components-panel__body {
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0
}

.components-panel__body h3 {
  margin: 0 0 .5em
}

.components-panel__body.is-opened {
  padding: 16px
}

.components-panel__header {
  align-items: center;
  border-bottom: 1px solid #ddd;
  box-sizing: initial;
  display: flex;
  flex-shrink: 0;
  height: 47px;
  justify-content: space-between;
  padding: 0 16px
}

.components-panel__header h2 {
  color: inherit;
  font-size: inherit;
  margin: 0
}

.components-panel__body+.components-panel__body,
.components-panel__body+.components-panel__header,
.components-panel__header+.components-panel__body,
.components-panel__header+.components-panel__header {
  margin-top: -1px
}

.components-panel__body>.components-panel__body-title {
  display: block;
  font-size: inherit;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0
}

@media not (prefers-reduced-motion) {
  .components-panel__body>.components-panel__body-title {
    transition: background .1s ease-in-out
  }
}

.components-panel__body.is-opened>.components-panel__body-title {
  margin: -16px -16px 5px
}

.components-panel__body>.components-panel__body-title:hover {
  background: #f0f0f0;
  border: none
}

.components-panel__body-toggle.components-button {
  border: none;
  box-shadow: none;
  color: #1e1e1e;
  font-weight: 500;
  height: auto;
  outline: none;
  padding: 16px 48px 16px 16px;
  position: relative;
  text-align: left;
  width: 100%
}

@media not (prefers-reduced-motion) {
  .components-panel__body-toggle.components-button {
    transition: background .1s ease-in-out
  }
}

.components-panel__body-toggle.components-button:focus {
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-panel__body-toggle.components-button .components-panel__arrow {
  color: #1e1e1e;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  fill: currentColor
}

@media not (prefers-reduced-motion) {
  .components-panel__body-toggle.components-button .components-panel__arrow {
    transition: color .1s ease-in-out
  }
}

body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
  -ms-filter: fliph;
  filter: FlipH;
  margin-top: -10px;
  transform: scaleX(-1)
}

.components-panel__icon {
  color: #757575;
  margin: -2px 0 -2px 6px
}

.components-panel__body-toggle-icon {
  margin-right: -5px
}

.components-panel__color-title {
  float: left;
  height: 19px
}

.components-panel__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  min-height: 36px
}

.components-panel__row select {
  min-width: 0
}

.components-panel__row label {
  flex-shrink: 0;
  margin-right: 12px;
  max-width: 75%
}

.components-panel__row:empty,
.components-panel__row:first-of-type {
  margin-top: 0
}

.components-panel .circle-picker {
  padding-bottom: 20px
}

.components-placeholder.components-placeholder {
  align-items: flex-start;
  box-sizing: border-box;
  color: #1e1e1e;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 16px;
  margin: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  width: 100%;
  -moz-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px #1e1e1e;
  outline: 1px solid #0000
}

.components-placeholder__error,
.components-placeholder__fieldset,
.components-placeholder__instructions,
.components-placeholder__label {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: normal;
  text-transform: none
}

.components-placeholder__label {
  align-items: center;
  display: flex;
  font-weight: 600
}

.components-placeholder__label .block-editor-block-icon,
.components-placeholder__label .dashicon,
.components-placeholder__label>svg {
  margin-right: 4px;
  fill: currentColor
}

@media (forced-colors:active) {

  .components-placeholder__label .block-editor-block-icon,
  .components-placeholder__label .dashicon,
  .components-placeholder__label>svg {
    fill: CanvasText
  }
}

.components-placeholder__label:empty {
  display: none
}

.components-placeholder__fieldset,
.components-placeholder__fieldset form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  width: 100%
}

.components-placeholder__fieldset form p,
.components-placeholder__fieldset p {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px
}

.components-placeholder__fieldset.is-column-layout,
.components-placeholder__fieldset.is-column-layout form {
  flex-direction: column
}

.components-placeholder__input[type=url] {
  border: 1px solid #949494;
  border-radius: 2px;
  box-shadow: 0 0 0 #0000;
  flex: 1 1 auto;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: normal;
  padding: 6px 8px
}

@media not (prefers-reduced-motion) {
  .components-placeholder__input[type=url] {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .components-placeholder__input[type=url] {
    font-size: 13px;
    line-height: normal
  }
}

.components-placeholder__input[type=url]:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-placeholder__input[type=url]::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.components-placeholder__input[type=url]::-moz-placeholder {
  color: #1e1e1e9e
}

.components-placeholder__input[type=url]:-ms-input-placeholder {
  color: #1e1e1e9e
}

.components-placeholder__error {
  gap: 8px;
  width: 100%
}

.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link {
  margin-left: 10px;
  margin-right: 10px
}

.components-placeholder__fieldset .components-button:not(.is-link)~.components-button.is-link:last-child {
  margin-right: 0
}

.components-placeholder.is-medium .components-placeholder__instructions,
.components-placeholder.is-small .components-placeholder__instructions {
  display: none
}

.components-placeholder.is-medium .components-placeholder__fieldset,
.components-placeholder.is-medium .components-placeholder__fieldset form,
.components-placeholder.is-small .components-placeholder__fieldset,
.components-placeholder.is-small .components-placeholder__fieldset form {
  flex-direction: column
}

.components-placeholder.is-medium .components-button,
.components-placeholder.is-medium .components-placeholder__fieldset>*,
.components-placeholder.is-small .components-button,
.components-placeholder.is-small .components-placeholder__fieldset>* {
  justify-content: center;
  width: 100%
}

.components-placeholder.is-small {
  padding: 16px
}

.components-placeholder.has-illustration {
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  backface-visibility: hidden;
  background-color: initial;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  display: flex;
  overflow: hidden
}

.is-dark-theme .components-placeholder.has-illustration {
  background-color: #0000001a
}

.components-placeholder.has-illustration .components-placeholder__fieldset {
  margin-left: 0;
  margin-right: 0
}

.components-placeholder.has-illustration .components-button,
.components-placeholder.has-illustration .components-placeholder__instructions,
.components-placeholder.has-illustration .components-placeholder__label {
  opacity: 0;
  pointer-events: none
}

@media not (prefers-reduced-motion) {

  .components-placeholder.has-illustration .components-button,
  .components-placeholder.has-illustration .components-placeholder__instructions,
  .components-placeholder.has-illustration .components-placeholder__label {
    transition: opacity .1s linear
  }
}

.is-selected>.components-placeholder.has-illustration .components-button,
.is-selected>.components-placeholder.has-illustration .components-placeholder__instructions,
.is-selected>.components-placeholder.has-illustration .components-placeholder__label {
  opacity: 1;
  pointer-events: auto
}

.components-placeholder.has-illustration:before {
  background: currentColor;
  bottom: 0;
  content: "";
  left: 0;
  opacity: .1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.is-selected .components-placeholder.has-illustration {
  overflow: auto
}

.components-placeholder__preview {
  display: flex;
  justify-content: center
}

.components-placeholder__illustration {
  box-sizing: initial;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  stroke: currentColor;
  opacity: .25
}

.components-popover {
  box-sizing: border-box;
  will-change: transform;
  z-index: 1000000
}

.components-popover *,
.components-popover :after,
.components-popover :before {
  box-sizing: inherit
}

.components-popover.is-expanded {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000000 !important
}

.components-popover__content {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #ccc, 0 2px 3px #0000000d, 0 4px 5px #0000000a, 0 12px 12px #00000008, 0 16px 16px #00000005;
  box-sizing: border-box;
  width: min-content
}

.is-alternate .components-popover__content {
  border-radius: 2px;
  box-shadow: 0 0 0 1px #1e1e1e
}

.is-unstyled .components-popover__content {
  background: none;
  border-radius: 0;
  box-shadow: none
}

.components-popover.is-expanded .components-popover__content {
  box-shadow: 0 -1px 0 0 #ccc;
  height: calc(100% - 48px);
  overflow-y: visible;
  position: static;
  width: auto
}

.components-popover.is-expanded.is-alternate .components-popover__content {
  box-shadow: 0 -1px 0 #1e1e1e
}

.components-popover__header {
  align-items: center;
  background: #fff;
  display: flex;
  height: 48px;
  justify-content: space-between;
  padding: 0 8px 0 16px
}

.components-popover__header-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%
}

.components-popover__close.components-button {
  z-index: 5
}

.components-popover__arrow {
  display: flex;
  height: 14px;
  pointer-events: none;
  position: absolute;
  width: 14px
}

.components-popover__arrow:before {
  background-color: #fff;
  content: "";
  height: 2px;
  left: 1px;
  position: absolute;
  right: 1px;
  top: -1px
}

.components-popover__arrow.is-top {
  bottom: -14px !important;
  transform: rotate(0)
}

.components-popover__arrow.is-right {
  left: -14px !important;
  transform: rotate(90deg)
}

.components-popover__arrow.is-bottom {
  top: -14px !important;
  transform: rotate(180deg)
}

.components-popover__arrow.is-left {
  right: -14px !important;
  transform: rotate(-90deg)
}

.components-popover__triangle {
  display: block;
  flex: 1
}

.components-popover__triangle-bg {
  fill: #fff
}

.components-popover__triangle-border {
  fill: #0000;
  stroke-width: 1px;
  stroke: #ccc
}

.is-alternate .components-popover__triangle-border {
  stroke: #1e1e1e
}

.components-radio-control {
  border: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0
}

.components-radio-control__group-wrapper.has-help {
  margin-block-end: 12px
}

.components-radio-control__option {
  align-items: center;
  column-gap: 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto minmax(0, max-content)
}

.components-radio-control__input[type=radio] {
  appearance: none;
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  border-radius: 50%;
  box-shadow: 0 0 0 #0000;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  grid-column: 1;
  grid-row: 1;
  height: 24px;
  line-height: normal;
  margin: 0;
  max-width: 24px;
  min-width: 24px;
  padding: 0;
  position: relative;
  transition: none;
  width: 24px
}

@media not (prefers-reduced-motion) {
  .components-radio-control__input[type=radio] {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .components-radio-control__input[type=radio] {
    font-size: 13px;
    line-height: normal
  }
}

.components-radio-control__input[type=radio]:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color)
}

.components-radio-control__input[type=radio]::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.components-radio-control__input[type=radio]::-moz-placeholder {
  color: #1e1e1e9e
}

.components-radio-control__input[type=radio]:-ms-input-placeholder {
  color: #1e1e1e9e
}

@media (min-width:600px) {
  .components-radio-control__input[type=radio] {
    height: 16px;
    max-width: 16px;
    min-width: 16px;
    width: 16px
  }
}

.components-radio-control__input[type=radio]:checked:before {
  background-color: #fff;
  border: 4px solid #fff;
  box-sizing: inherit;
  height: 12px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px
}

@media (min-width:600px) {
  .components-radio-control__input[type=radio]:checked:before {
    height: 8px;
    width: 8px
  }
}

.components-radio-control__input[type=radio]:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color)
}

.components-radio-control__input[type=radio]:checked {
  background: var(--wp-admin-theme-color);
  border: none
}

.components-radio-control__input[type=radio]:focus {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);
  outline: 2px solid #0000;
  outline-offset: 2px
}

.components-radio-control__input[type=radio]:checked {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-radio-control__input[type=radio]:checked:before {
  border-radius: 50%;
  content: ""
}

.components-radio-control__label {
  cursor: pointer;
  grid-column: 2;
  grid-row: 1;
  line-height: 24px
}

@media (min-width:600px) {
  .components-radio-control__label {
    line-height: 16px
  }
}

.components-radio-control__option-description {
  grid-column: 2;
  grid-row: 2;
  padding-block-start: 4px
}

.components-radio-control__option-description.components-radio-control__option-description {
  margin-top: 0
}

.components-resizable-box__handle {
  display: none;
  height: 23px;
  width: 23px;
  z-index: 2
}

.components-resizable-box__container.has-show-handle .components-resizable-box__handle {
  display: block
}

.components-resizable-box__handle>div {
  height: 100%;
  outline: none;
  position: relative;
  width: 100%;
  z-index: 2
}

.components-resizable-box__container>img {
  width: inherit
}

.components-resizable-box__handle:after {
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)), 0 1px 1px #00000008, 0 1px 2px #00000005, 0 3px 3px #00000005, 0 4px 4px #00000003;
  content: "";
  cursor: inherit;
  display: block;
  height: 15px;
  outline: 2px solid #0000;
  position: absolute;
  right: calc(50% - 8px);
  top: calc(50% - 8px);
  width: 15px
}

.components-resizable-box__side-handle:before {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-radius: 9999px;
  content: "";
  cursor: inherit;
  display: block;
  height: 3px;
  opacity: 0;
  position: absolute;
  right: calc(50% - 1px);
  top: calc(50% - 1px);
  width: 3px
}

@media not (prefers-reduced-motion) {
  .components-resizable-box__side-handle:before {
    transition: transform .1s ease-in;
    will-change: transform
  }
}

.components-resizable-box__corner-handle,
.components-resizable-box__side-handle {
  z-index: 2
}

.components-resizable-box__side-handle.components-resizable-box__handle-bottom,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom:before,
.components-resizable-box__side-handle.components-resizable-box__handle-top,
.components-resizable-box__side-handle.components-resizable-box__handle-top:before {
  border-left: 0;
  border-right: 0;
  left: 0;
  width: 100%
}

.components-resizable-box__side-handle.components-resizable-box__handle-left,
.components-resizable-box__side-handle.components-resizable-box__handle-left:before,
.components-resizable-box__side-handle.components-resizable-box__handle-right,
.components-resizable-box__side-handle.components-resizable-box__handle-right:before {
  border-bottom: 0;
  border-top: 0;
  height: 100%;
  top: 0
}

@media not (prefers-reduced-motion) {

  .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,
  .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,
  .components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,
  .components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before {
    animation: components-resizable-box__top-bottom-animation .1s ease-out 0s;
    animation-fill-mode: forwards
  }

  .components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,
  .components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,
  .components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,
  .components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before {
    animation: components-resizable-box__left-right-animation .1s ease-out 0s;
    animation-fill-mode: forwards
  }
}

@media not all and (min-resolution:0.001dpcm) {
  @supports (-webkit-appearance:none) {

    .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-left:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-left:hover:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-right:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-right:hover:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-top:active:before,
    .components-resizable-box__side-handle.components-resizable-box__handle-top:hover:before {
      animation: none
    }
  }
}

@keyframes components-resizable-box__top-bottom-animation {
  0% {
    opacity: 0;
    transform: scaleX(0)
  }

  to {
    opacity: 1;
    transform: scaleX(1)
  }
}

@keyframes components-resizable-box__left-right-animation {
  0% {
    opacity: 0;
    transform: scaleY(0)
  }

  to {
    opacity: 1;
    transform: scaleY(1)
  }
}

/*!rtl:begin:ignore*/
.components-resizable-box__handle-right {
  right: -11.5px
}

.components-resizable-box__handle-left {
  left: -11.5px
}

.components-resizable-box__handle-top {
  top: -11.5px
}

.components-resizable-box__handle-bottom {
  bottom: -11.5px
}

/*!rtl:end:ignore*/
.components-responsive-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 100%;
  position: relative
}

.components-responsive-wrapper__content {
  display: block;
  max-width: 100%;
  width: 100%
}

.components-sandbox {
  overflow: hidden
}

iframe.components-sandbox {
  width: 100%
}

body.lockscroll,
html.lockscroll {
  overflow: hidden
}

.components-select-control__input {
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important
}

@media (max-width:782px) {
  .components-base-control .components-base-control__field .components-select-control__input {
    font-size: 16px
  }
}

.components-snackbar {
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  background: #000000d9;
  border-radius: 4px;
  box-shadow: 0 1px 2px #0000000d, 0 2px 3px #0000000a, 0 6px 6px #00000008, 0 8px 8px #00000005;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  max-width: 600px;
  padding: 12px 20px;
  pointer-events: auto;
  width: 100%
}

@media (min-width:600px) {
  .components-snackbar {
    width: fit-content
  }
}

.components-snackbar:focus {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9))
}

.components-snackbar.components-snackbar-explicit-dismiss {
  cursor: default
}

.components-snackbar .components-snackbar__content-with-icon {
  padding-left: 24px;
  position: relative
}

.components-snackbar .components-snackbar__icon {
  left: -8px;
  position: absolute;
  top: -2.9px
}

.components-snackbar .components-snackbar__dismiss-button {
  cursor: pointer;
  margin-left: 24px
}

.components-snackbar__action.components-button {
  color: #fff;
  flex-shrink: 0;
  margin-left: 32px
}

.components-snackbar__action.components-button:focus {
  box-shadow: none;
  outline: 1px dotted #fff
}

.components-snackbar__action.components-button:hover {
  color: currentColor;
  text-decoration: none
}

.components-snackbar__content {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  line-height: 1.4
}

.components-snackbar-list {
  box-sizing: border-box;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 100000
}

.components-snackbar-list__notice-container {
  padding-top: 8px;
  position: relative
}

.components-tab-panel__tabs {
  align-items: stretch;
  display: flex;
  flex-direction: row
}

.components-tab-panel__tabs[aria-orientation=vertical] {
  flex-direction: column
}

.components-tab-panel__tabs-item {
  background: #0000;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  font-weight: 500;
  height: 48px !important;
  margin-left: 0;
  padding: 3px 16px;
  position: relative
}

.components-tab-panel__tabs-item:focus:not(:disabled) {
  box-shadow: none;
  outline: none;
  position: relative
}

.components-tab-panel__tabs-item:after {
  background: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  border-radius: 0;
  bottom: 0;
  content: "";
  height: calc(var(--wp-admin-border-width-focus)*0);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0
}

@media not (prefers-reduced-motion) {
  .components-tab-panel__tabs-item:after {
    transition: all .1s linear
  }
}

.components-tab-panel__tabs-item.is-active:after {
  height: calc(var(--wp-admin-border-width-focus)*1);
  outline: 2px solid #0000;
  outline-offset: -1px
}

.components-tab-panel__tabs-item:before {
  border-radius: 2px;
  bottom: 12px;
  box-shadow: 0 0 0 0 #0000;
  content: "";
  left: 12px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 12px
}

@media not (prefers-reduced-motion) {
  .components-tab-panel__tabs-item:before {
    transition: all .1s linear
  }
}

.components-tab-panel__tabs-item:focus-visible:before {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 2px solid #0000
}

.components-tab-panel__tab-content:focus {
  box-shadow: none;
  outline: none
}

.components-tab-panel__tab-content:focus-visible {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
  outline: 2px solid #0000;
  outline-offset: 0
}

.components-text-control__input,
.components-text-control__input[type=color],
.components-text-control__input[type=date],
.components-text-control__input[type=datetime-local],
.components-text-control__input[type=datetime],
.components-text-control__input[type=email],
.components-text-control__input[type=month],
.components-text-control__input[type=number],
.components-text-control__input[type=password],
.components-text-control__input[type=tel],
.components-text-control__input[type=text],
.components-text-control__input[type=time],
.components-text-control__input[type=url],
.components-text-control__input[type=week] {
  border: 1px solid #949494;
  border-radius: 2px;
  box-shadow: 0 0 0 #0000;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  height: 32px;
  line-height: normal;
  margin: 0;
  padding: 6px 8px;
  width: 100%
}

@media not (prefers-reduced-motion) {

  .components-text-control__input,
  .components-text-control__input[type=color],
  .components-text-control__input[type=date],
  .components-text-control__input[type=datetime-local],
  .components-text-control__input[type=datetime],
  .components-text-control__input[type=email],
  .components-text-control__input[type=month],
  .components-text-control__input[type=number],
  .components-text-control__input[type=password],
  .components-text-control__input[type=tel],
  .components-text-control__input[type=text],
  .components-text-control__input[type=time],
  .components-text-control__input[type=url],
  .components-text-control__input[type=week] {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {

  .components-text-control__input,
  .components-text-control__input[type=color],
  .components-text-control__input[type=date],
  .components-text-control__input[type=datetime-local],
  .components-text-control__input[type=datetime],
  .components-text-control__input[type=email],
  .components-text-control__input[type=month],
  .components-text-control__input[type=number],
  .components-text-control__input[type=password],
  .components-text-control__input[type=tel],
  .components-text-control__input[type=text],
  .components-text-control__input[type=time],
  .components-text-control__input[type=url],
  .components-text-control__input[type=week] {
    font-size: 13px;
    line-height: normal
  }
}

.components-text-control__input:focus,
.components-text-control__input[type=color]:focus,
.components-text-control__input[type=date]:focus,
.components-text-control__input[type=datetime-local]:focus,
.components-text-control__input[type=datetime]:focus,
.components-text-control__input[type=email]:focus,
.components-text-control__input[type=month]:focus,
.components-text-control__input[type=number]:focus,
.components-text-control__input[type=password]:focus,
.components-text-control__input[type=tel]:focus,
.components-text-control__input[type=text]:focus,
.components-text-control__input[type=time]:focus,
.components-text-control__input[type=url]:focus,
.components-text-control__input[type=week]:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-text-control__input::-webkit-input-placeholder,
.components-text-control__input[type=color]::-webkit-input-placeholder,
.components-text-control__input[type=date]::-webkit-input-placeholder,
.components-text-control__input[type=datetime-local]::-webkit-input-placeholder,
.components-text-control__input[type=datetime]::-webkit-input-placeholder,
.components-text-control__input[type=email]::-webkit-input-placeholder,
.components-text-control__input[type=month]::-webkit-input-placeholder,
.components-text-control__input[type=number]::-webkit-input-placeholder,
.components-text-control__input[type=password]::-webkit-input-placeholder,
.components-text-control__input[type=tel]::-webkit-input-placeholder,
.components-text-control__input[type=text]::-webkit-input-placeholder,
.components-text-control__input[type=time]::-webkit-input-placeholder,
.components-text-control__input[type=url]::-webkit-input-placeholder,
.components-text-control__input[type=week]::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.components-text-control__input::-moz-placeholder,
.components-text-control__input[type=color]::-moz-placeholder,
.components-text-control__input[type=date]::-moz-placeholder,
.components-text-control__input[type=datetime-local]::-moz-placeholder,
.components-text-control__input[type=datetime]::-moz-placeholder,
.components-text-control__input[type=email]::-moz-placeholder,
.components-text-control__input[type=month]::-moz-placeholder,
.components-text-control__input[type=number]::-moz-placeholder,
.components-text-control__input[type=password]::-moz-placeholder,
.components-text-control__input[type=tel]::-moz-placeholder,
.components-text-control__input[type=text]::-moz-placeholder,
.components-text-control__input[type=time]::-moz-placeholder,
.components-text-control__input[type=url]::-moz-placeholder,
.components-text-control__input[type=week]::-moz-placeholder {
  color: #1e1e1e9e
}

.components-text-control__input:-ms-input-placeholder,
.components-text-control__input[type=color]:-ms-input-placeholder,
.components-text-control__input[type=date]:-ms-input-placeholder,
.components-text-control__input[type=datetime-local]:-ms-input-placeholder,
.components-text-control__input[type=datetime]:-ms-input-placeholder,
.components-text-control__input[type=email]:-ms-input-placeholder,
.components-text-control__input[type=month]:-ms-input-placeholder,
.components-text-control__input[type=number]:-ms-input-placeholder,
.components-text-control__input[type=password]:-ms-input-placeholder,
.components-text-control__input[type=tel]:-ms-input-placeholder,
.components-text-control__input[type=text]:-ms-input-placeholder,
.components-text-control__input[type=time]:-ms-input-placeholder,
.components-text-control__input[type=url]:-ms-input-placeholder,
.components-text-control__input[type=week]:-ms-input-placeholder {
  color: #1e1e1e9e
}

.components-text-control__input.is-next-40px-default-size,
.components-text-control__input[type=color].is-next-40px-default-size,
.components-text-control__input[type=date].is-next-40px-default-size,
.components-text-control__input[type=datetime-local].is-next-40px-default-size,
.components-text-control__input[type=datetime].is-next-40px-default-size,
.components-text-control__input[type=email].is-next-40px-default-size,
.components-text-control__input[type=month].is-next-40px-default-size,
.components-text-control__input[type=number].is-next-40px-default-size,
.components-text-control__input[type=password].is-next-40px-default-size,
.components-text-control__input[type=tel].is-next-40px-default-size,
.components-text-control__input[type=text].is-next-40px-default-size,
.components-text-control__input[type=time].is-next-40px-default-size,
.components-text-control__input[type=url].is-next-40px-default-size,
.components-text-control__input[type=week].is-next-40px-default-size {
  height: 40px;
  padding-left: 12px;
  padding-right: 12px
}

.components-text-control__input[type=email],
.components-text-control__input[type=url] {
  direction: ltr
}

.components-tip {
  color: #757575;
  display: flex
}

.components-tip svg {
  align-self: center;
  fill: #f0b849;
  flex-shrink: 0;
  margin-right: 16px
}

.components-tip p {
  margin: 0
}

.components-toggle-control__label {
  line-height: 16px
}

.components-toggle-control__label:not(.is-disabled) {
  cursor: pointer
}

.components-toggle-control__help {
  display: inline-block;
  margin-inline-start: 40px
}

.components-accessible-toolbar {
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  display: inline-flex;
  flex-shrink: 0
}

.components-accessible-toolbar>.components-toolbar-group:last-child {
  border-right: none
}

.components-accessible-toolbar.is-unstyled {
  border: none
}

.components-accessible-toolbar.is-unstyled>.components-toolbar-group {
  border-right: none
}

.components-accessible-toolbar[aria-orientation=vertical],
.components-toolbar[aria-orientation=vertical] {
  align-items: center;
  display: flex;
  flex-direction: column
}

.components-accessible-toolbar .components-button,
.components-toolbar .components-button {
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 1
}

.components-accessible-toolbar .components-button:focus:not(:disabled),
.components-toolbar .components-button:focus:not(:disabled) {
  box-shadow: none;
  outline: none
}

.components-accessible-toolbar .components-button:before,
.components-toolbar .components-button:before {
  border-radius: 2px;
  content: "";
  display: block;
  height: 32px;
  left: 8px;
  position: absolute;
  right: 8px;
  z-index: -1
}

@media not (prefers-reduced-motion) {

  .components-accessible-toolbar .components-button:before,
  .components-toolbar .components-button:before {
    animation: components-button__appear-animation .1s ease;
    animation-fill-mode: forwards
  }
}

.components-accessible-toolbar .components-button svg,
.components-toolbar .components-button svg {
  margin-left: auto;
  margin-right: auto;
  position: relative
}

.components-accessible-toolbar .components-button.is-pressed,
.components-accessible-toolbar .components-button.is-pressed:hover,
.components-toolbar .components-button.is-pressed,
.components-toolbar .components-button.is-pressed:hover {
  background: #0000
}

.components-accessible-toolbar .components-button.is-pressed:before,
.components-toolbar .components-button.is-pressed:before {
  background: #1e1e1e
}

.components-accessible-toolbar .components-button:focus:before,
.components-toolbar .components-button:focus:before {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.components-accessible-toolbar .components-button.has-icon.has-icon,
.components-toolbar .components-button.has-icon.has-icon {
  min-width: 48px;
  padding-left: 8px;
  padding-right: 8px
}

@keyframes components-button__appear-animation {
  0% {
    transform: scaleY(0)
  }

  to {
    transform: scaleY(1)
  }
}

.components-toolbar__control.components-button {
  position: relative
}

.components-toolbar__control.components-button[data-subscript] svg {
  padding: 5px 10px 5px 0
}

.components-toolbar__control.components-button[data-subscript]:after {
  bottom: 10px;
  content: attr(data-subscript);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 12px;
  position: absolute;
  right: 8px
}

.components-toolbar__control.components-button:not(:disabled).is-pressed[data-subscript]:after {
  color: #fff
}

.components-toolbar-group {
  background-color: #fff;
  border-right: 1px solid #1e1e1e;
  display: inline-flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  line-height: 0;
  min-height: 48px;
  padding-left: 6px;
  padding-right: 6px
}

.components-toolbar-group .components-toolbar-group.components-toolbar-group {
  border-width: 0;
  margin: 0
}

.components-toolbar-group .components-button.components-button,
.components-toolbar-group .components-button.has-icon.has-icon {
  justify-content: center;
  min-width: 36px;
  padding-left: 6px;
  padding-right: 6px
}

.components-toolbar-group .components-button.components-button svg,
.components-toolbar-group .components-button.has-icon.has-icon svg {
  min-width: 24px
}

.components-toolbar-group .components-button.components-button:before,
.components-toolbar-group .components-button.has-icon.has-icon:before {
  left: 2px;
  right: 2px
}

.components-toolbar {
  background-color: #fff;
  border: 1px solid #1e1e1e;
  display: inline-flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  margin: 0;
  min-height: 48px
}

.components-toolbar .components-toolbar.components-toolbar {
  border-width: 0;
  margin: 0
}

div.components-toolbar>div {
  display: flex;
  margin: 0
}

div.components-toolbar>div+div.has-left-divider {
  margin-left: 6px;
  overflow: visible;
  position: relative
}

div.components-toolbar>div+div.has-left-divider:before {
  background-color: #ddd;
  box-sizing: initial;
  content: "";
  display: inline-block;
  height: 20px;
  left: -3px;
  position: absolute;
  top: 8px;
  width: 1px
}

.components-tooltip {
  background: #000;
  border-radius: 2px;
  box-shadow: 0 1px 2px #0000000d, 0 2px 3px #0000000a, 0 6px 6px #00000008, 0 8px 8px #00000005;
  color: #f0f0f0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  padding: 4px 8px;
  text-align: center;
  z-index: 1000002
}

.components-tooltip__shortcut {
  margin-left: 8px
}

:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color)
}

@media (min-resolution:192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px
  }
}

.preference-base-option+.preference-base-option {
  margin-top: 16px
}

@media (min-width:600px) {
  .preferences-modal {
    height: calc(100% - 120px);
    width: calc(100% - 32px)
  }
}

@media (min-width:782px) {
  .preferences-modal {
    width: 750px
  }
}

@media (min-width:960px) {
  .preferences-modal {
    height: 70%
  }
}

@media (max-width:781px) {
  .preferences-modal .components-modal__content {
    padding: 0
  }
}

.preferences__tabs-tablist {
  left: 16px;
  position: absolute !important;
  top: 84px;
  width: 160px
}

.preferences__tabs-tabpanel {
  margin-left: 160px;
  padding-left: 24px
}

@media (max-width:781px) {
  .preferences__provider {
    height: 100%
  }
}

.preferences-modal__section {
  margin: 0 0 2.5rem
}

.preferences-modal__section:last-child {
  margin: 0
}

.preferences-modal__section-legend {
  margin-bottom: 8px
}

.preferences-modal__section-title {
  font-size: .9rem;
  font-weight: 600;
  margin-top: 0
}

.preferences-modal__section-description {
  color: #757575;
  font-size: 12px;
  font-style: normal;
  margin: -8px 0 8px
}

.preferences-modal__section:has(.preferences-modal__section-content:empty) {
  display: none
}

:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color)
}

@media (min-resolution:192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px
  }
}

.block-editor-autocompleters__block {
  white-space: nowrap
}

.block-editor-autocompleters__block .block-editor-block-icon {
  margin-right: 8px
}

.block-editor-autocompleters__block[aria-selected=true] .block-editor-block-icon {
  color: inherit !important
}

.block-editor-autocompleters__link {
  white-space: nowrap
}

.block-editor-autocompleters__link .block-editor-block-icon {
  margin-right: 8px
}

.block-editor-global-styles-background-panel__inspector-media-replace-container {
  border: 1px solid #ddd;
  border-radius: 2px;
  grid-column: 1/-1
}

.block-editor-global-styles-background-panel__inspector-media-replace-container.is-open {
  background-color: #f0f0f0
}

.block-editor-global-styles-background-panel__inspector-media-replace-container .block-editor-global-styles-background-panel__image-tools-panel-item {
  border: 0;
  flex-grow: 1
}

.block-editor-global-styles-background-panel__inspector-media-replace-container .block-editor-global-styles-background-panel__image-tools-panel-item .components-dropdown {
  display: block
}

.block-editor-global-styles-background-panel__inspector-media-replace-container .block-editor-global-styles-background-panel__inspector-preview-inner {
  height: 100%
}

.block-editor-global-styles-background-panel__inspector-media-replace-container .components-dropdown {
  display: block
}

.block-editor-global-styles-background-panel__inspector-media-replace-container .components-dropdown .block-editor-global-styles-background-panel__dropdown-toggle {
  height: 40px
}

.block-editor-global-styles-background-panel__image-tools-panel-item {
  border: 1px solid #ddd;
  grid-column: 1/-1;
  position: relative
}

.block-editor-global-styles-background-panel__image-tools-panel-item .components-drop-zone__content-icon {
  display: none
}

.block-editor-global-styles-background-panel__image-tools-panel-item .components-dropdown {
  display: block
}

.block-editor-global-styles-background-panel__image-tools-panel-item button.components-button {
  color: #1e1e1e;
  display: block;
  width: 100%
}

.block-editor-global-styles-background-panel__image-tools-panel-item button.components-button:hover {
  color: var(--wp-admin-theme-color)
}

.block-editor-global-styles-background-panel__image-tools-panel-item button.components-button:focus {
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.block-editor-global-styles-background-panel__image-tools-panel-item .block-editor-global-styles-background-panel__loading {
  height: 100%;
  padding: 10px 0 0;
  position: absolute;
  width: 100%;
  z-index: 1
}

.block-editor-global-styles-background-panel__image-tools-panel-item .block-editor-global-styles-background-panel__loading svg {
  margin: 0
}

.block-editor-global-styles-background-panel__dropdown-toggle,
.block-editor-global-styles-background-panel__image-preview-content {
  height: 100%;
  padding-left: 12px;
  width: 100%
}

.block-editor-global-styles-background-panel__dropdown-toggle {
  background: #0000;
  border: none;
  cursor: pointer
}

.block-editor-global-styles-background-panel__inspector-media-replace-title {
  text-align: start;
  text-align-last: center;
  white-space: normal;
  word-break: break-all
}

.block-editor-global-styles-background-panel__inspector-preview-inner .block-editor-global-styles-background-panel__inspector-image-indicator-wrapper {
  height: 20px;
  min-width: auto;
  width: 20px
}

.block-editor-global-styles-background-panel__inspector-image-indicator {
  background-size: cover;
  border-radius: 50%;
  display: block;
  height: 20px;
  position: relative;
  width: 20px
}

.block-editor-global-styles-background-panel__inspector-image-indicator:after {
  border: 1px solid #0000;
  border-radius: 50%;
  bottom: -1px;
  box-shadow: inset 0 0 0 1px #0003;
  box-sizing: inherit;
  content: "";
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px
}

.block-editor-global-styles-background-panel__dropdown-content-wrapper {
  min-width: 260px;
  overflow-x: hidden
}

.block-editor-global-styles-background-panel__dropdown-content-wrapper .components-focal-point-picker-wrapper {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 2px;
  width: 100%
}

.block-editor-global-styles-background-panel__dropdown-content-wrapper .components-focal-point-picker__media--image {
  max-height: 180px
}

.block-editor-global-styles-background-panel__dropdown-content-wrapper .components-focal-point-picker:after {
  content: none
}

.modal-open .block-editor-global-styles-background-panel__popover {
  z-index: 159890
}

.block-editor-global-styles-background-panel__media-replace-popover .components-popover__content {
  width: 226px
}

.block-editor-global-styles-background-panel__media-replace-popover .components-button {
  padding: 0 8px
}

.block-editor-global-styles-background-panel__media-replace-popover .components-button .components-menu-items__item-icon.has-icon-right {
  margin-left: 16px
}

.block-editor-block-alignment-control__menu-group .components-menu-item__info {
  margin-top: 0
}

iframe[name=editor-canvas] {
  background-color: #ddd;
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%
}

@media not (prefers-reduced-motion) {
  iframe[name=editor-canvas] {
    transition: all .4s cubic-bezier(.46, .03, .52, .96)
  }
}

.block-editor-block-icon {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px
}

.block-editor-block-icon.has-colors svg {
  fill: currentColor
}

@media (forced-colors:active) {
  .block-editor-block-icon.has-colors svg {
    fill: CanvasText
  }
}

.block-editor-block-icon svg {
  max-height: 24px;
  max-width: 24px;
  min-height: 20px;
  min-width: 20px
}

.block-editor-block-inspector p:not(.components-base-control__help) {
  margin-top: 0
}

.block-editor-block-inspector h2,
.block-editor-block-inspector h3 {
  color: #1e1e1e;
  font-size: 13px;
  margin-bottom: 1.5em
}

.block-editor-block-inspector .components-base-control:where(:not(:last-child)),
.block-editor-block-inspector .components-radio-control:where(:not(:last-child)) {
  margin-bottom: 16px
}

.block-editor-block-inspector .components-focal-point-picker-control .components-base-control,
.block-editor-block-inspector .components-query-controls .components-base-control,
.block-editor-block-inspector .components-range-control .components-base-control {
  margin-bottom: 0
}

.block-editor-block-inspector .components-panel__body {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-top: -1px
}

.block-editor-block-inspector__no-block-tools,
.block-editor-block-inspector__no-blocks {
  background: #fff;
  display: block;
  font-size: 13px;
  padding: 32px 16px;
  text-align: center
}

.block-editor-block-inspector__no-block-tools {
  border-top: 1px solid #ddd
}

.block-editor-block-list__insertion-point {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.block-editor-block-list__insertion-point-indicator {
  background: var(--wp-admin-theme-color);
  border-radius: 2px;
  opacity: 0;
  position: absolute;
  transform-origin: center;
  will-change: transform, opacity
}

.block-editor-block-list__insertion-point.is-vertical>.block-editor-block-list__insertion-point-indicator {
  height: 4px;
  top: calc(50% - 2px);
  width: 100%
}

.block-editor-block-list__insertion-point.is-horizontal>.block-editor-block-list__insertion-point-indicator {
  bottom: 0;
  left: calc(50% - 2px);
  top: 0;
  width: 4px
}

.block-editor-block-list__insertion-point-inserter {
  display: none;
  justify-content: center;
  left: calc(50% - 12px);
  position: absolute;
  top: calc(50% - 12px);
  will-change: transform
}

@media (min-width:480px) {
  .block-editor-block-list__insertion-point-inserter {
    display: flex
  }
}

.block-editor-block-list__block-side-inserter-popover .components-popover__content>div {
  pointer-events: none
}

.block-editor-block-list__block-side-inserter-popover .components-popover__content>div>* {
  pointer-events: all
}

.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter {
  line-height: 0;
  position: absolute;
  right: 0;
  top: 0
}

.block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter:disabled {
  display: none
}

.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon,
.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon {
  background: #1e1e1e;
  color: #fff;
  height: 24px;
  min-width: 24px;
  padding: 0
}

.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle.components-button.has-icon:hover,
.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
  background: var(--wp-admin-theme-color);
  color: #fff
}

.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon {
  background: var(--wp-admin-theme-color)
}

.block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle.components-button.has-icon:hover {
  background: #1e1e1e
}

@keyframes hide-during-dragging {
  to {
    position: fixed;
    transform: translate(9999px, 9999px)
  }
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-contextual-toolbar {
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  margin-bottom: 8px;
  margin-top: 8px;
  overflow: visible;
  pointer-events: all;
  position: static;
  width: auto
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-contextual-toolbar.has-parent {
  margin-left: 56px
}

.show-icon-labels .components-popover.block-editor-block-list__block-popover .block-editor-block-contextual-toolbar.has-parent {
  margin-left: 0
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-toolbar {
  overflow: visible
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-toolbar .components-toolbar,
.components-popover.block-editor-block-list__block-popover .block-editor-block-toolbar .components-toolbar-group {
  border-right-color: #1e1e1e
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar {
  background-color: #1e1e1e;
  color: #f0f0f0
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar.block-editor-block-contextual-toolbar {
  border-color: #2f2f2f
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar button {
  color: #ddd
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar button:hover {
  color: #fff
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar button:focus:before {
  box-shadow: inset 0 0 0 1px #1e1e1e, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar button:disabled,
.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar button[aria-disabled=true] {
  color: #757575
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar .block-editor-block-parent-selector .block-editor-block-parent-selector__button {
  background-color: #1e1e1e;
  border-color: #2f2f2f
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar .block-editor-block-switcher__toggle {
  color: #f0f0f0
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar .components-toolbar,
.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar .components-toolbar-group {
  border-right-color: #2f2f2f !important
}

.components-popover.block-editor-block-list__block-popover .is-inverted-toolbar .is-pressed {
  color: var(--wp-admin-theme-color)
}

.components-popover.block-editor-block-list__block-popover.is-insertion-point-visible {
  visibility: hidden
}

.is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {
  opacity: 0
}

@media not (prefers-reduced-motion) {
  .is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover {
    animation: hide-during-dragging 1ms linear forwards
  }
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-parent-selector {
  left: -57px;
  position: absolute
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-parent-selector:before {
  content: ""
}

.components-popover.block-editor-block-list__block-popover .block-editor-block-parent-selector .block-editor-block-parent-selector__button {
  background-color: #fff;
  border: 1px solid #1e1e1e;
  padding-left: 6px;
  padding-right: 6px
}

.show-icon-labels .components-popover.block-editor-block-list__block-popover .block-editor-block-parent-selector .block-editor-block-parent-selector__button {
  padding-left: 12px;
  padding-right: 12px
}

.show-icon-labels .components-popover.block-editor-block-list__block-popover .block-editor-block-parent-selector {
  left: auto;
  margin-left: -1px;
  position: relative
}

.show-icon-labels .components-popover.block-editor-block-list__block-popover .block-editor-block-mover__move-button-container,
.show-icon-labels .components-popover.block-editor-block-list__block-popover .block-editor-block-toolbar__block-controls .block-editor-block-mover {
  border-left: 1px solid #1e1e1e
}

.is-dragging-components-draggable .components-tooltip {
  display: none
}

.components-popover.block-editor-block-popover__inbetween .block-editor-button-pattern-inserter__button {
  left: 50%;
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%)
}

.block-editor-block-lock-modal {
  z-index: 1000001
}

@media (min-width:600px) {
  .block-editor-block-lock-modal .components-modal__frame {
    max-width: 480px
  }
}

.block-editor-block-lock-modal__options legend {
  margin-bottom: 16px;
  padding: 0
}

.block-editor-block-lock-modal__checklist {
  margin: 0
}

.block-editor-block-lock-modal__options-all {
  padding: 12px 0
}

.block-editor-block-lock-modal__options-all .components-checkbox-control__label {
  font-weight: 600
}

.block-editor-block-lock-modal__checklist-item {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 12px 0 12px 32px
}

.block-editor-block-lock-modal__checklist-item .block-editor-block-lock-modal__lock-icon {
  flex-shrink: 0;
  margin-right: 12px;
  fill: #1e1e1e
}

.block-editor-block-lock-modal__checklist-item:hover {
  background-color: #f0f0f0;
  border-radius: 2px
}

.block-editor-block-lock-modal__template-lock {
  border-top: 1px solid #ddd;
  margin-top: 16px;
  padding-top: 16px
}

.block-editor-block-lock-modal__actions {
  margin-top: 24px
}

.block-editor-block-lock-toolbar .components-button.has-icon {
  min-width: 36px !important
}

.block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar {
  margin-left: -6px !important
}

.show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-lock-toolbar {
  border-left: 1px solid #1e1e1e;
  margin-left: 6px !important;
  margin-right: -6px
}

.block-editor-block-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0
}

.block-editor-block-breadcrumb li {
  display: inline-flex;
  margin: 0
}

.block-editor-block-breadcrumb li .block-editor-block-breadcrumb__separator {
  fill: currentColor;
  margin-left: -4px;
  margin-right: -4px;
  transform: scaleX(1)
}

.block-editor-block-breadcrumb li:last-child .block-editor-block-breadcrumb__separator {
  display: none
}

.block-editor-block-breadcrumb__current {
  cursor: default
}

.block-editor-block-breadcrumb__button.block-editor-block-breadcrumb__button,
.block-editor-block-breadcrumb__current {
  color: #1e1e1e;
  font-size: inherit;
  padding: 0 8px
}

.block-editor-block-card {
  align-items: flex-start;
  color: #1e1e1e;
  display: flex;
  padding: 16px
}

.block-editor-block-card__title {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  gap: 4px 8px
}

.block-editor-block-card__title.block-editor-block-card__title {
  font-size: 13px;
  line-height: 1.4;
  margin: 0
}

.block-editor-block-card__name {
  padding: 3px 0
}

.block-editor-block-card .block-editor-block-icon {
  flex: 0 0 24px;
  height: 24px;
  margin-left: 0;
  margin-right: 12px;
  width: 24px
}

.block-editor-block-card.is-synced .block-editor-block-icon {
  color: var(--wp-block-synced-color)
}

.block-editor-block-compare {
  height: auto
}

.block-editor-block-compare__wrapper {
  display: flex;
  padding-bottom: 16px
}

.block-editor-block-compare__wrapper>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 600px;
  min-width: 200px;
  padding: 0 16px 0 0;
  width: 50%
}

.block-editor-block-compare__wrapper>div button {
  float: right
}

.block-editor-block-compare__wrapper .block-editor-block-compare__converted {
  border-left: 1px solid #ddd;
  padding-left: 15px;
  padding-right: 0
}

.block-editor-block-compare__wrapper .block-editor-block-compare__html {
  border-bottom: 1px solid #ddd;
  color: #1e1e1e;
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: 12px;
  line-height: 1.7;
  padding-bottom: 15px
}

.block-editor-block-compare__wrapper .block-editor-block-compare__html span {
  background-color: #e6ffed;
  padding-bottom: 3px;
  padding-top: 3px
}

.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added {
  background-color: #acf2bd
}

.block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed {
  background-color: #cc1818
}

.block-editor-block-compare__wrapper .block-editor-block-compare__preview {
  padding: 16px 0 0
}

.block-editor-block-compare__wrapper .block-editor-block-compare__preview p {
  font-size: 12px;
  margin-top: 0
}

.block-editor-block-compare__wrapper .block-editor-block-compare__action {
  margin-top: 16px
}

.block-editor-block-compare__wrapper .block-editor-block-compare__heading {
  font-size: 1em;
  font-weight: 400;
  margin: .67em 0
}

.block-editor-block-draggable-chip-wrapper {
  left: 0;
  position: absolute;
  top: -24px
}

.block-editor-block-draggable-chip {
  background-color: #1e1e1e;
  border-radius: 2px;
  box-shadow: 0 1px 2px #0000000d, 0 2px 3px #0000000a, 0 6px 6px #00000008, 0 8px 8px #00000005;
  color: #fff;
  cursor: grabbing;
  display: inline-flex;
  height: 48px;
  padding: 0 13px;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  width: max-content
}

.block-editor-block-draggable-chip svg {
  fill: currentColor
}

.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content {
  justify-content: flex-start;
  margin: auto
}

.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content>.components-flex__item {
  margin-right: 6px
}

.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content>.components-flex__item:last-child {
  margin-right: 0
}

.block-editor-block-draggable-chip .block-editor-block-draggable-chip__content .block-editor-block-icon svg {
  min-height: 18px;
  min-width: 18px
}

.block-editor-block-draggable-chip .components-flex__item {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px
}

.block-editor-block-draggable-chip__disabled.block-editor-block-draggable-chip__disabled {
  align-items: center;
  background-color: initial;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0
}

@media not (prefers-reduced-motion) {
  .block-editor-block-draggable-chip__disabled.block-editor-block-draggable-chip__disabled {
    transition: all .1s linear .1s
  }
}

.block-editor-block-draggable-chip__disabled.block-editor-block-draggable-chip__disabled .block-editor-block-draggable-chip__disabled-icon {
  background: #0000 linear-gradient(-45deg, #0000 47.5%, #fff 0, #fff 52.5%, #0000 0);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px #fff;
  display: inline-block;
  height: 20px;
  padding: 0;
  width: 20px
}

.block-draggable-invalid-drag-token .block-editor-block-draggable-chip__disabled.block-editor-block-draggable-chip__disabled {
  background-color: #757575;
  box-shadow: 0 1px 2px #0000000d, 0 2px 3px #0000000a, 0 6px 6px #00000008, 0 8px 8px #00000005;
  opacity: 1
}

.block-editor-block-manager__no-results {
  font-style: italic;
  padding: 24px 0;
  text-align: center
}

.block-editor-block-manager__search {
  margin: 16px 0
}

.block-editor-block-manager__disabled-blocks-count {
  background-color: #fff;
  border: 1px solid #ddd;
  border-width: 1px 0;
  box-shadow: -32px 0 0 0 #fff, 32px 0 0 0 #fff;
  padding: 8px;
  position: sticky;
  text-align: center;
  top: -5px;
  z-index: 2
}

.block-editor-block-manager__disabled-blocks-count~.block-editor-block-manager__results .block-editor-block-manager__category-title {
  top: 31px
}

.block-editor-block-manager__disabled-blocks-count .is-link {
  margin-left: 12px
}

.block-editor-block-manager__category {
  margin: 0 0 24px
}

.block-editor-block-manager__category-title {
  background-color: #fff;
  padding: 16px 0;
  position: sticky;
  top: -4px;
  z-index: 1
}

.block-editor-block-manager__category-title .components-checkbox-control__label {
  font-weight: 600
}

.block-editor-block-manager__checklist {
  margin-top: 0
}

.block-editor-block-manager__category-title,
.block-editor-block-manager__checklist-item {
  border-bottom: 1px solid #ddd
}

.block-editor-block-manager__checklist-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 8px 0 8px 16px
}

.components-modal__content .block-editor-block-manager__checklist-item.components-checkbox-control__input-container {
  margin: 0 8px
}

.block-editor-block-manager__checklist-item .block-editor-block-icon {
  margin-right: 10px;
  fill: #1e1e1e
}

.block-editor-block-manager__results {
  border-top: 1px solid #ddd
}

.block-editor-block-manager__disabled-blocks-count+.block-editor-block-manager__results {
  border-top-width: 0
}

.block-editor-block-mover__move-button-container {
  border: none;
  display: flex;
  justify-content: center;
  padding: 0
}

@media (min-width:600px) {
  .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container {
    flex-direction: column
  }

  .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container>* {
    height: 20px;
    min-width: 0 !important;
    width: 100%
  }

  .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container>:before {
    height: calc(100% - 4px)
  }

  .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container .block-editor-block-mover-button.is-up-button svg {
    flex-shrink: 0;
    top: 3px
  }

  .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container .block-editor-block-mover-button.is-down-button svg {
    bottom: 3px;
    flex-shrink: 0
  }

  .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container {
    width: 48px
  }

  .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container>* {
    min-width: 0 !important;
    overflow: hidden;
    width: 24px
  }

  .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container .block-editor-block-mover-button {
    padding-left: 0;
    padding-right: 0
  }

  .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container .block-editor-block-mover-button.is-up-button svg {
    left: 5px
  }

  .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container .block-editor-block-mover-button.is-down-button svg {
    right: 5px
  }
}

.block-editor-block-mover__drag-handle {
  cursor: grab
}

@media (min-width:600px) {
  .block-editor-block-mover__drag-handle {
    min-width: 0 !important;
    overflow: hidden;
    width: 24px
  }

  .block-editor-block-mover .block-editor-block-mover__drag-handle.has-icon.has-icon {
    padding-left: 0;
    padding-right: 0
  }
}

.components-button.block-editor-block-mover-button {
  overflow: hidden
}

.components-button.block-editor-block-mover-button:before {
  border-radius: 2px;
  content: "";
  display: block;
  height: 32px;
  left: 8px;
  position: absolute;
  right: 8px;
  z-index: -1
}

@media not (prefers-reduced-motion) {
  .components-button.block-editor-block-mover-button:before {
    animation: components-button__appear-animation .1s ease;
    animation-fill-mode: forwards
  }
}

.components-button.block-editor-block-mover-button:focus,
.components-button.block-editor-block-mover-button:focus:before,
.components-button.block-editor-block-mover-button:focus:enabled {
  box-shadow: none;
  outline: none
}

.components-button.block-editor-block-mover-button:focus-visible:before {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.block-editor-block-navigation__container {
  min-width: 280px
}

.block-editor-block-navigation__label {
  color: #757575;
  font-size: 11px;
  font-weight: 500;
  margin: 0 0 12px;
  text-transform: uppercase
}

.block-editor-block-patterns-list__list-item {
  cursor: pointer;
  margin-bottom: 16px;
  position: relative
}

.block-editor-block-patterns-list__list-item.is-placeholder {
  min-height: 100px
}

.block-editor-block-patterns-list__list-item[draggable=true] {
  cursor: grab
}

.block-editor-block-patterns-list__item {
  height: 100%;
  outline: 0;
  scroll-margin-bottom: 56px;
  scroll-margin-top: 24px
}

.block-editor-block-patterns-list__item .block-editor-block-patterns-list__item-title {
  flex-grow: 1;
  font-size: 12px;
  text-align: left
}

.block-editor-block-patterns-list__item .block-editor-block-preview__container {
  align-items: center;
  border-radius: 4px;
  display: flex;
  overflow: hidden
}

.block-editor-block-patterns-list__item .block-editor-block-preview__container:after {
  border-radius: 4px;
  outline: 1px solid #0000001a;
  outline-offset: -1px
}

@media not (prefers-reduced-motion) {
  .block-editor-block-patterns-list__item .block-editor-block-preview__container:after {
    transition: outline .1s linear
  }
}

.block-editor-block-patterns-list__item.is-selected .block-editor-block-preview__container:after {
  outline-color: #1e1e1e;
  outline-offset: calc(var(--wp-admin-border-width-focus)*-1);
  outline-width: var(--wp-admin-border-width-focus)
}

.block-editor-block-patterns-list__item:hover .block-editor-block-preview__container:after {
  outline-color: #0000004d
}

.block-editor-block-patterns-list__item[data-focus-visible] .block-editor-block-preview__container:after {
  outline-color: var(--wp-admin-theme-color);
  outline-offset: calc(var(--wp-admin-border-width-focus)*-1);
  outline-width: var(--wp-admin-border-width-focus)
}

.block-editor-block-patterns-list__item .block-editor-patterns__pattern-details:not(:empty) {
  align-items: center;
  margin-top: 8px;
  padding-bottom: 4px
}

.block-editor-block-patterns-list__item .block-editor-patterns__pattern-icon-wrapper {
  height: 24px;
  min-width: 24px
}

.block-editor-block-patterns-list__item .block-editor-patterns__pattern-icon-wrapper .block-editor-patterns__pattern-icon {
  fill: var(--wp-block-synced-color)
}

.block-editor-patterns__grid-pagination-wrapper .block-editor-patterns__grid-pagination {
  border-top: 1px solid #2f2f2f;
  justify-content: center;
  padding: 4px
}

.show-icon-labels .block-editor-patterns__grid-pagination-button {
  width: auto
}

.show-icon-labels .block-editor-patterns__grid-pagination-button span {
  display: none
}

.show-icon-labels .block-editor-patterns__grid-pagination-button:before {
  content: attr(aria-label)
}

.components-popover.block-editor-block-popover {
  margin: 0 !important;
  pointer-events: none;
  position: absolute;
  z-index: 31
}

.components-popover.block-editor-block-popover .components-popover__content {
  margin: 0 !important;
  min-width: auto;
  overflow-y: visible;
  width: max-content
}

.components-popover.block-editor-block-popover:not(.block-editor-block-popover__inbetween, .block-editor-block-popover__drop-zone, .block-editor-block-list__block-side-inserter-popover) .components-popover__content * {
  pointer-events: all
}

.components-popover.block-editor-block-popover__inbetween,
.components-popover.block-editor-block-popover__inbetween * {
  pointer-events: none
}

.components-popover.block-editor-block-popover__inbetween .is-with-inserter,
.components-popover.block-editor-block-popover__inbetween .is-with-inserter * {
  pointer-events: all
}

.components-popover.block-editor-block-popover__drop-zone * {
  pointer-events: none
}

.components-popover.block-editor-block-popover__drop-zone .block-editor-block-popover__drop-zone-foreground {
  background-color: var(--wp-admin-theme-color);
  border-radius: 2px;
  inset: 0;
  position: absolute
}

.block-editor-block-preview__container {
  overflow: hidden;
  position: relative;
  width: 100%
}

.block-editor-block-preview__container .block-editor-block-preview__content {
  left: 0;
  margin: 0;
  min-height: auto;
  overflow: visible;
  text-align: initial;
  top: 0;
  transform-origin: top left;
  width: 100%
}

.block-editor-block-preview__container .block-editor-block-preview__content .block-editor-block-list__insertion-point,
.block-editor-block-preview__container .block-editor-block-preview__content .block-list-appender {
  display: none
}

.block-editor-block-preview__container:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.block-editor-block-rename-modal {
  z-index: 1000001
}

.block-editor-block-styles__preview-panel {
  display: none;
  z-index: 90
}

@media (min-width:782px) {
  .block-editor-block-styles__preview-panel {
    display: block
  }
}

.block-editor-block-styles__preview-panel .block-editor-block-icon {
  display: none
}

.block-editor-block-styles__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between
}

.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item {
  box-shadow: inset 0 0 0 1px #ddd;
  color: #1e1e1e;
  display: inline-block;
  width: calc(50% - 4px)
}

.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item:hover {
  box-shadow: inset 0 0 0 1px #ddd;
  color: var(--wp-admin-theme-color)
}

.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item.is-active,
.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item.is-active:hover {
  background-color: #1e1e1e;
  box-shadow: none
}

.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item.is-active .block-editor-block-styles__item-text,
.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item.is-active:hover .block-editor-block-styles__item-text {
  color: #fff
}

.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item.is-active:focus,
.block-editor-block-styles__variants button.components-button.block-editor-block-styles__item:focus {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.block-editor-block-styles__variants .block-editor-block-styles__item-text {
  text-align: start;
  text-align-last: center;
  white-space: normal;
  word-break: break-all
}

.block-editor-block-styles__block-preview-container,
.block-editor-block-styles__block-preview-container * {
  box-sizing: border-box !important
}

.block-editor-block-switcher {
  position: relative
}

.block-editor-block-switcher .components-button.components-dropdown-menu__toggle.has-icon.has-icon {
  min-width: 36px
}

.block-editor-block-switcher__no-switcher-icon,
.block-editor-block-switcher__toggle {
  position: relative
}

.components-button.block-editor-block-switcher__no-switcher-icon,
.components-button.block-editor-block-switcher__toggle {
  display: block;
  height: 48px;
  margin: 0
}

.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,
.components-button.block-editor-block-switcher__toggle .block-editor-block-icon {
  margin: auto
}

.components-button.block-editor-block-switcher__no-switcher-icon {
  display: flex
}

.components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
  margin-left: auto;
  margin-right: auto;
  min-width: 24px !important
}

.components-button.block-editor-block-switcher__no-switcher-icon[aria-disabled=true],
.components-button.block-editor-block-switcher__no-switcher-icon[aria-disabled=true]:hover {
  color: #1e1e1e
}

.components-popover.block-editor-block-switcher__popover .components-popover__content {
  min-width: 300px
}

.block-editor-block-switcher__popover-preview-container {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -1px;
  width: 100%
}

.block-editor-block-switcher__popover-preview {
  overflow: hidden
}

.block-editor-block-switcher__popover-preview .components-popover__content {
  background: #fff;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  box-shadow: none;
  outline: none;
  overflow: auto;
  width: 300px
}

.block-editor-block-switcher__popover-preview .block-editor-block-switcher__preview {
  margin: 16px 0;
  max-height: 468px;
  overflow: hidden;
  padding: 0 16px
}

.block-editor-block-switcher__popover-preview .block-editor-block-switcher__preview.is-pattern-list-preview {
  overflow: unset
}

.block-editor-block-switcher__preview-title {
  color: #757575;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase
}

.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon {
  min-width: 36px
}

.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon,
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle {
  height: 48px
}

.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon,
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-icon,
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
  height: 48px;
  width: 48px
}

.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-switcher__transform,
.block-editor-block-contextual-toolbar .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform {
  padding: 12px
}

.block-editor-block-switcher__preview-patterns-container {
  padding-bottom: 16px
}

.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item {
  margin-top: 16px
}

.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-preview__container {
  cursor: pointer
}

.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item {
  border: 1px solid #0000;
  border-radius: 2px;
  height: 100%;
  position: relative
}

@media not (prefers-reduced-motion) {
  .block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item {
    transition: all .05s ease-in-out
  }
}

.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:focus,
.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item:hover {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) #1e1e1e
}

.block-editor-block-switcher__preview-patterns-container .block-editor-block-switcher__preview-patterns-container-list__list-item .block-editor-block-switcher__preview-patterns-container-list__item .block-editor-block-switcher__preview-patterns-container-list__item-title {
  cursor: pointer;
  font-size: 12px;
  padding: 4px;
  text-align: center
}

.block-editor-block-switcher__no-transforms {
  color: #757575;
  margin: 0;
  padding: 6px 8px
}

.block-editor-block-switcher__binding-indicator {
  display: block;
  padding: 8px
}

.block-editor-block-types-list>[role=presentation] {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden
}

.block-editor-block-pattern-setup {
  align-items: flex-start;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%
}

.block-editor-block-pattern-setup.view-mode-grid {
  padding-top: 4px
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__toolbar {
  justify-content: center
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
  column-count: 2;
  column-gap: 24px;
  display: block;
  padding: 0 32px;
  width: 100%
}

@media (min-width:1440px) {
  .block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container {
    column-count: 3
  }
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-preview__container,
.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container div[role=button] {
  cursor: pointer
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__item {
  scroll-margin: 5px 0
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__item:hover .block-editor-block-preview__container {
  box-shadow: 0 0 0 2px var(--wp-admin-theme-color)
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__item:focus .block-editor-block-preview__container {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) #fff, 0 0 0 calc(var(--wp-admin-border-width-focus)*2) var(--wp-admin-theme-color);
  outline: 2px solid #0000;
  outline-offset: 2px
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__item:focus .block-editor-block-pattern-setup-list__item-title,
.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__item:hover .block-editor-block-pattern-setup-list__item-title {
  color: var(--wp-admin-theme-color)
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item {
  break-inside: avoid-column;
  margin-bottom: 24px
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-pattern-setup-list__item-title {
  cursor: pointer;
  font-size: 12px;
  padding-top: 8px;
  text-align: center
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__container {
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 100px
}

.block-editor-block-pattern-setup.view-mode-grid .block-editor-block-pattern-setup__container .block-editor-block-pattern-setup-list__list-item .block-editor-block-preview__content {
  width: 100%
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar {
  align-items: center;
  align-self: stretch;
  background-color: #fff;
  border-top: 1px solid #ddd;
  bottom: 0;
  box-sizing: border-box;
  color: #1e1e1e;
  display: flex;
  flex-direction: row;
  height: 60px;
  justify-content: space-between;
  margin: 0;
  padding: 16px;
  position: absolute;
  text-align: left;
  width: 100%
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__display-controls {
  display: flex
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions,
.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__navigation {
  display: flex;
  width: calc(50% - 36px)
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__toolbar .block-editor-block-pattern-setup__actions {
  justify-content: flex-end
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container {
  height: 100%;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform-style: preserve-3d
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container * {
  box-sizing: border-box
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide {
  background-color: #fff;
  height: 100%;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100
}

@media not (prefers-reduced-motion) {
  .block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide {
    transition: transform .5s, z-index .5s
  }
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.active-slide {
  opacity: 1;
  position: relative;
  z-index: 102
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.previous-slide {
  transform: translateX(-100%);
  z-index: 101
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .carousel-container .pattern-slide.next-slide {
  transform: translateX(100%);
  z-index: 101
}

.block-editor-block-pattern-setup .block-editor-block-pattern-setup__container .block-list-appender {
  display: none
}

.block-editor-block-pattern-setup__carousel,
.block-editor-block-pattern-setup__grid {
  width: 100%
}

.block-editor-block-variation-transforms {
  padding: 0 16px 16px 52px;
  width: 100%
}

.block-editor-block-variation-transforms .components-dropdown-menu__toggle {
  border: 1px solid #757575;
  border-radius: 2px;
  justify-content: left;
  min-height: 30px;
  padding: 6px 12px;
  position: relative;
  text-align: left;
  width: 100%
}

.block-editor-block-variation-transforms .components-dropdown-menu__toggle.components-dropdown-menu__toggle {
  padding-right: 24px
}

.block-editor-block-variation-transforms .components-dropdown-menu__toggle:focus:not(:disabled) {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 calc(var(--wp-admin-border-width-focus) - 1px) var(--wp-admin-theme-color)
}

.block-editor-block-variation-transforms .components-dropdown-menu__toggle svg {
  height: 100%;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0
}

.block-editor-block-variation-transforms__popover .components-popover__content {
  min-width: 230px
}

.components-border-radius-control {
  margin-bottom: 12px
}

.components-border-radius-control legend {
  margin-bottom: 8px
}

.components-border-radius-control .components-border-radius-control__wrapper {
  align-items: flex-start;
  display: flex;
  justify-content: space-between
}

.components-border-radius-control .components-border-radius-control__wrapper .components-border-radius-control__unit-control {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 16px;
  width: calc(50% - 8px)
}

.components-border-radius-control .components-border-radius-control__wrapper .components-border-radius-control__range-control {
  flex: 1;
  margin-right: 12px
}

.components-border-radius-control .components-border-radius-control__input-controls-wrapper {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-right: 12px
}

.components-border-radius-control .component-border-radius-control__linked-button {
  display: flex;
  justify-content: center;
  margin-top: 8px
}

.components-border-radius-control .component-border-radius-control__linked-button svg {
  margin-right: 0
}

.block-editor-color-gradient-control .block-editor-color-gradient-control__color-indicator {
  margin-bottom: 12px
}

.block-editor-color-gradient-control__fieldset {
  min-width: 0
}

.block-editor-panel-color-gradient-settings.block-editor-panel-color-gradient-settings,
.block-editor-panel-color-gradient-settings.block-editor-panel-color-gradient-settings>div:not(:first-of-type) {
  display: block
}

@media screen and (min-width:782px) {
  .block-editor-panel-color-gradient-settings .components-circular-option-picker__swatches {
    display: grid;
    grid-template-columns: repeat(6, 28px)
  }
}

.block-editor-block-inspector .block-editor-panel-color-gradient-settings .components-base-control {
  margin-bottom: inherit
}

.block-editor-panel-color-gradient-settings__dropdown-content .block-editor-color-gradient-control__panel {
  padding: 16px;
  width: 260px
}

.block-editor-panel-color-gradient-settings__color-indicator {
  background: linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0)
}

.block-editor-tools-panel-color-gradient-settings__item {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  max-width: 100%;
  padding: 0;
  position: relative
}

.block-editor-tools-panel-color-gradient-settings__item:nth-child(1 of .block-editor-tools-panel-color-gradient-settings__item) {
  border-top: 1px solid #ddd;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  margin-top: 24px
}

.block-editor-tools-panel-color-gradient-settings__item:nth-last-child(1 of .block-editor-tools-panel-color-gradient-settings__item) {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px
}

.block-editor-tools-panel-color-gradient-settings__item>div,
.block-editor-tools-panel-color-gradient-settings__item>div>button {
  border-radius: inherit
}

.block-editor-tools-panel-color-gradient-settings__dropdown {
  display: block;
  padding: 0
}

.block-editor-tools-panel-color-gradient-settings__dropdown>button {
  height: auto;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: left
}

.block-editor-tools-panel-color-gradient-settings__dropdown>button.is-open {
  background: #f0f0f0;
  color: var(--wp-admin-theme-color)
}

.block-editor-tools-panel-color-gradient-settings__dropdown .block-editor-panel-color-gradient-settings__color-name {
  max-width: calc(100% - 44px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.block-editor-panel-color-gradient-settings__dropdown {
  width: 100%
}

.block-editor-panel-color-gradient-settings__dropdown .component-color-indicator {
  flex-shrink: 0
}

.block-editor-panel-color-gradient-settings__reset {
  margin: auto 8px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 8px
}

@media not (prefers-reduced-motion) {
  .block-editor-panel-color-gradient-settings__reset {
    transition: opacity .1s ease-in-out
  }
}

.block-editor-panel-color-gradient-settings__reset.block-editor-panel-color-gradient-settings__reset {
  border-radius: 2px
}

.block-editor-panel-color-gradient-settings__dropdown:hover+.block-editor-panel-color-gradient-settings__reset,
.block-editor-panel-color-gradient-settings__reset:focus,
.block-editor-panel-color-gradient-settings__reset:hover {
  opacity: 1
}

@media (hover:none) {
  .block-editor-panel-color-gradient-settings__reset {
    opacity: 1
  }
}

.block-editor-date-format-picker {
  border: none;
  margin: 0 0 16px;
  padding: 0
}

.block-editor-date-format-picker__custom-format-select-control__custom-option {
  border-top: 1px solid #ddd
}

.block-editor-duotone-control__popover.components-popover>.components-popover__content {
  padding: 8px;
  width: 260px
}

.block-editor-duotone-control__popover.components-popover .components-menu-group__label {
  padding: 0
}

.block-editor-duotone-control__popover.components-popover .components-circular-option-picker__swatches {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, 28px);
  justify-content: space-between
}

.block-editor-duotone-control__unset-indicator {
  background: linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0)
}

.components-font-appearance-control [role=option] {
  color: #1e1e1e;
  text-transform: capitalize
}

.block-editor-font-family-control:not(.is-next-has-no-margin-bottom) {
  margin-bottom: 8px
}

.block-editor-global-styles__toggle-icon {
  fill: currentColor
}

.block-editor-global-styles__shadow-popover-container {
  width: 230px
}

.block-editor-global-styles__shadow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 8px
}

.block-editor-global-styles__clear-shadow {
  text-align: right
}

.block-editor-global-styles-filters-panel__dropdown,
.block-editor-global-styles__shadow-dropdown {
  display: block;
  padding: 0;
  position: relative
}

.block-editor-global-styles-filters-panel__dropdown button,
.block-editor-global-styles__shadow-dropdown button {
  padding: 8px;
  width: 100%
}

.block-editor-global-styles-filters-panel__dropdown button.is-open,
.block-editor-global-styles__shadow-dropdown button.is-open {
  background-color: #f0f0f0
}

.block-editor-global-styles__shadow-editor__remove-button {
  margin: auto 8px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 8px
}

@media not (prefers-reduced-motion) {
  .block-editor-global-styles__shadow-editor__remove-button {
    transition: opacity .1s ease-in-out
  }
}

.block-editor-global-styles__shadow-dropdown:hover .block-editor-global-styles__shadow-editor__remove-button,
.block-editor-global-styles__shadow-editor__remove-button:focus,
.block-editor-global-styles__shadow-editor__remove-button:hover {
  opacity: 1
}

@media (hover:none) {
  .block-editor-global-styles__shadow-editor__remove-button {
    opacity: 1
  }
}

.block-editor-global-styles-filters-panel__dropdown {
  border: 1px solid #ddd;
  border-radius: 2px
}

.block-editor-global-styles__shadow-indicator {
  align-items: center;
  appearance: none;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  box-sizing: border-box;
  color: #2f2f2f;
  cursor: pointer;
  display: inline-flex;
  height: 26px;
  padding: 0;
  transform: scale(1);
  width: 26px;
  will-change: transform
}

@media not (prefers-reduced-motion) {
  .block-editor-global-styles__shadow-indicator {
    transition: transform .1s ease
  }
}

.block-editor-global-styles__shadow-indicator:focus {
  border: 2px solid #757575
}

.block-editor-global-styles__shadow-indicator:hover {
  transform: scale(1.2)
}

.block-editor-global-styles__shadow-indicator.unset {
  background: linear-gradient(-45deg, #0000 48%, #ddd 0, #ddd 52%, #0000 0)
}

.block-editor-global-styles-advanced-panel__custom-css-input textarea {
  direction: ltr;
  font-family: Menlo, Consolas, monaco, monospace
}

.block-editor-panel-duotone-settings__reset {
  margin: auto 8px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 8px
}

@media not (prefers-reduced-motion) {
  .block-editor-panel-duotone-settings__reset {
    transition: opacity .1s ease-in-out
  }
}

.block-editor-global-styles-filters-panel__dropdown:hover .block-editor-panel-duotone-settings__reset,
.block-editor-panel-duotone-settings__reset:focus,
.block-editor-panel-duotone-settings__reset:hover {
  opacity: 1
}

@media (hover:none) {
  .block-editor-panel-duotone-settings__reset {
    opacity: 1
  }
}

.block-editor-grid-visualizer.block-editor-grid-visualizer.block-editor-grid-visualizer {
  z-index: 30
}

.block-editor-grid-visualizer.block-editor-grid-visualizer.block-editor-grid-visualizer .components-popover__content * {
  pointer-events: none
}

.block-editor-grid-visualizer.block-editor-grid-visualizer.block-editor-grid-visualizer.is-dropping-allowed .block-editor-grid-visualizer__drop-zone {
  pointer-events: all
}

.block-editor-grid-visualizer.block-editor-grid-visualizer.block-editor-grid-visualizer .block-editor-inserter * {
  pointer-events: auto
}

.block-editor-grid-visualizer__grid {
  display: grid;
  position: absolute
}

.block-editor-grid-visualizer__cell {
  display: grid;
  position: relative
}

.block-editor-grid-visualizer__cell .block-editor-inserter {
  bottom: 0;
  color: inherit;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 32
}

.block-editor-grid-visualizer__cell .block-editor-inserter .block-editor-grid-visualizer__appender {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 20%, #0000);
  color: inherit;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  padding: 0 !important;
  width: 100%
}

.block-editor-grid-visualizer__cell.is-highlighted .block-editor-grid-visualizer__drop-zone,
.block-editor-grid-visualizer__cell.is-highlighted .block-editor-inserter {
  background: var(--wp-admin-theme-color)
}

.block-editor-grid-visualizer__cell .block-editor-grid-visualizer__appender:focus,
.block-editor-grid-visualizer__cell:hover .block-editor-grid-visualizer__appender {
  background-color: color-mix(in srgb, currentColor 20%, #0000);
  opacity: 1
}

.block-editor-grid-visualizer__drop-zone {
  background: #cccccc1a;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 8px;
  min-width: 8px;
  width: 100%
}

.block-editor-grid-item-resizer.block-editor-grid-item-resizer.block-editor-grid-item-resizer {
  z-index: 30
}

.block-editor-grid-item-resizer.block-editor-grid-item-resizer.block-editor-grid-item-resizer .components-popover__content * {
  pointer-events: none
}

.block-editor-grid-item-resizer__box {
  border: 1px solid var(--wp-admin-theme-color)
}

.block-editor-grid-item-resizer__box .components-resizable-box__handle.components-resizable-box__handle.components-resizable-box__handle {
  pointer-events: all
}

.block-editor-grid-item-mover__move-button-container {
  border: none;
  display: flex;
  justify-content: center;
  padding: 0
}

.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button {
  min-width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  width: 24px
}

.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button svg {
  min-width: 24px
}

.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button:before {
  border-radius: 2px;
  content: "";
  display: block;
  height: 32px;
  left: 8px;
  position: absolute;
  right: 8px;
  z-index: -1
}

@media not (prefers-reduced-motion) {
  .block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button:before {
    animation: components-button__appear-animation .1s ease;
    animation-fill-mode: forwards
  }
}

.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button:focus,
.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button:focus:before,
.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button:focus:enabled {
  box-shadow: none;
  outline: none
}

.block-editor-grid-item-mover__move-button-container .block-editor-grid-item-mover-button:focus-visible:before {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.block-editor-grid-item-mover__move-vertical-button-container {
  display: flex;
  position: relative
}

@media (min-width:600px) {
  .block-editor-grid-item-mover__move-vertical-button-container {
    flex-direction: column;
    justify-content: space-around
  }

  .block-editor-grid-item-mover__move-vertical-button-container>.block-editor-grid-item-mover-button.block-editor-grid-item-mover-button {
    height: 20px !important;
    min-width: 0 !important;
    width: 100%
  }

  .block-editor-grid-item-mover__move-vertical-button-container>.block-editor-grid-item-mover-button.block-editor-grid-item-mover-button:before {
    height: calc(100% - 4px)
  }

  .block-editor-grid-item-mover__move-vertical-button-container .block-editor-grid-item-mover-button.is-down-button svg,
  .block-editor-grid-item-mover__move-vertical-button-container .block-editor-grid-item-mover-button.is-up-button svg {
    flex-shrink: 0;
    height: 20px
  }

  .editor-collapsible-block-toolbar .block-editor-grid-item-mover__move-vertical-button-container {
    height: 40px;
    position: relative;
    top: -5px
  }
}

.show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container {
  position: relative
}

@media (min-width:600px) {
  .show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container:before {
    background: #e0e0e0;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 1px
  }
}

@media (min-width:782px) {
  .show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container:before {
    background: #1e1e1e
  }
}

.show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container.is-left {
  padding-right: 6px
}

.show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container.is-left:before {
  right: 0
}

.show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container.is-right {
  padding-left: 6px
}

.show-icon-labels .block-editor-grid-item-mover__move-horizontal-button-container.is-right:before {
  left: 0
}

@media (min-width:600px) {
  .show-icon-labels .block-editor-grid-item-mover__move-vertical-button-container:before {
    background: #e0e0e0;
    content: "";
    height: 1px;
    left: 50%;
    margin-top: -.5px;
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    width: 100%
  }
}

@media (min-width:782px) {
  .show-icon-labels .block-editor-grid-item-mover__move-vertical-button-container:before {
    background: #1e1e1e
  }
}

.show-icon-labels .block-editor-grid-item-mover-button {
  white-space: nowrap
}

.show-icon-labels .editor-collapsible-block-toolbar .block-editor-grid-item-mover__move-horizontal-button-container:before {
  background: #ddd;
  height: 24px;
  top: 4px
}

.show-icon-labels .editor-collapsible-block-toolbar .block-editor-grid-item-mover__move-vertical-button-container:before {
  background: #ddd;
  width: calc(100% - 24px)
}

.block-editor-height-control {
  border: 0;
  margin: 0;
  padding: 0
}

.block-editor-iframe__container {
  height: 100%;
  width: 100%
}

.block-editor-iframe__scale-container {
  height: 100%
}

.block-editor-iframe__scale-container.is-zoomed-out {
  position: absolute;
  right: 0;
  width: var(--wp-block-editor-iframe-zoom-out-scale-container-width, 100vw)
}

.block-editor-image-size-control {
  margin-bottom: 1em
}

.block-editor-image-size-control .block-editor-image-size-control__height,
.block-editor-image-size-control .block-editor-image-size-control__width {
  margin-bottom: 1.115em
}

.block-editor-block-types-list__list-item {
  display: block;
  margin: 0;
  padding: 0;
  width: 33.33%
}

.block-editor-block-types-list__list-item.is-synced .components-button.block-editor-block-types-list__item:not(:disabled) .block-editor-block-icon.has-colors {
  color: var(--wp-block-synced-color)
}

.block-editor-block-types-list__list-item.is-synced .components-button.block-editor-block-types-list__item:not(:disabled):hover .block-editor-block-types-list__item-title {
  color: var(--wp-block-synced-color) !important;
  filter: brightness(.95)
}

.block-editor-block-types-list__list-item.is-synced .components-button.block-editor-block-types-list__item:not(:disabled):hover svg {
  color: var(--wp-block-synced-color) !important
}

.block-editor-block-types-list__list-item.is-synced .components-button.block-editor-block-types-list__item:not(:disabled):after {
  background: var(--wp-block-synced-color)
}

.components-button.block-editor-block-types-list__item {
  align-items: stretch;
  background: #0000;
  color: #1e1e1e;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  height: auto;
  justify-content: center;
  padding: 8px;
  position: relative;
  width: 100%;
  word-break: break-word
}

@media not (prefers-reduced-motion) {
  .components-button.block-editor-block-types-list__item {
    transition: all .05s ease-in-out
  }
}

.components-button.block-editor-block-types-list__item:disabled {
  cursor: default;
  opacity: .6
}

.components-button.block-editor-block-types-list__item:not(:disabled):hover .block-editor-block-types-list__item-title {
  color: var(--wp-admin-theme-color) !important;
  filter: brightness(.95)
}

.components-button.block-editor-block-types-list__item:not(:disabled):hover svg {
  color: var(--wp-admin-theme-color) !important
}

.components-button.block-editor-block-types-list__item:not(:disabled):hover:after {
  background: var(--wp-admin-theme-color);
  border-radius: 2px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: .04;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.components-button.block-editor-block-types-list__item:not(:disabled):focus {
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.components-button.block-editor-block-types-list__item:not(:disabled).is-active {
  background: #1e1e1e;
  color: #fff;
  outline: 2px solid #0000;
  outline-offset: -2px
}

.block-editor-block-types-list__item-icon {
  color: #1e1e1e;
  padding: 12px 20px
}

@media not (prefers-reduced-motion) {
  .block-editor-block-types-list__item-icon {
    transition: all .05s ease-in-out
  }
}

.block-editor-block-types-list__item-icon .block-editor-block-icon {
  margin-left: auto;
  margin-right: auto
}

@media not (prefers-reduced-motion) {
  .block-editor-block-types-list__item-icon svg {
    transition: all .15s ease-out
  }
}

.block-editor-block-types-list__list-item[draggable=true] .block-editor-block-types-list__item-icon {
  cursor: grab
}

.block-editor-block-types-list__item-title {
  font-size: 12px;
  hyphens: auto;
  padding: 4px 2px 8px
}

.block-editor-block-inspector__tabs [role=tablist] {
  width: 100%
}

.block-editor-inspector-popover-header {
  margin-bottom: 16px
}

.items-justified-left {
  justify-content: flex-start
}

.items-justified-center {
  justify-content: center
}

.items-justified-right {
  justify-content: flex-end
}

.items-justified-space-between {
  justify-content: space-between
}

@keyframes loadingpulse {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.block-editor-link-control {
  min-width: 350px;
  position: relative
}

.components-popover__content .block-editor-link-control {
  max-width: 350px;
  min-width: auto;
  width: 90vw
}

.show-icon-labels .block-editor-link-control .components-button.has-icon svg {
  display: none
}

.show-icon-labels .block-editor-link-control .components-button.has-icon:before {
  content: attr(aria-label)
}

.show-icon-labels .block-editor-link-control .block-editor-link-control__search-item-top {
  flex-wrap: wrap;
  gap: 4px
}

.show-icon-labels .block-editor-link-control .block-editor-link-control__search-item-top .components-button.has-icon {
  padding: 4px;
  width: auto
}

.show-icon-labels .block-editor-link-control .is-preview .block-editor-link-control__search-item-header {
  margin-right: 0;
  min-width: 100%
}

.block-editor-link-control__search-input-wrapper {
  margin-bottom: 8px;
  position: relative
}

.block-editor-link-control__search-input-container,
.block-editor-link-control__search-input-wrapper {
  position: relative
}

.block-editor-link-control__field {
  margin: 16px
}

.block-editor-link-control__field .components-base-control__label {
  color: #1e1e1e
}

.block-editor-link-control__search-error {
  margin: -8px 16px 16px
}

.block-editor-link-control__search-actions {
  padding: 8px 16px 16px
}

.block-editor-link-control__search-results-wrapper {
  position: relative
}

.block-editor-link-control__search-results-wrapper:after,
.block-editor-link-control__search-results-wrapper:before {
  content: "";
  display: block;
  left: -1px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  z-index: 100
}

.block-editor-link-control__search-results-wrapper:before {
  bottom: auto;
  height: 8px;
  top: 0
}

.block-editor-link-control__search-results-wrapper:after {
  bottom: 0;
  height: 16px;
  top: auto
}

.block-editor-link-control__search-results {
  margin-top: -16px;
  max-height: 200px;
  overflow-y: auto;
  padding: 8px
}

.block-editor-link-control__search-results.is-loading {
  opacity: .2
}

.block-editor-link-control__search-item.components-button.components-menu-item__button {
  height: auto;
  text-align: left
}

.block-editor-link-control__search-item .components-menu-item__item {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%
}

.block-editor-link-control__search-item .components-menu-item__item mark {
  background-color: initial;
  color: inherit;
  font-weight: 600
}

.block-editor-link-control__search-item .components-menu-item__shortcut {
  color: #757575;
  text-transform: capitalize;
  white-space: nowrap
}

.block-editor-link-control__search-item[aria-selected] {
  background: #f0f0f0
}

.block-editor-link-control__search-item.is-current {
  background: #0000;
  border: 0;
  cursor: default;
  flex-direction: column;
  padding: 16px;
  width: 100%
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-header {
  align-items: center;
  display: block;
  flex-direction: row;
  gap: 8px;
  margin-right: 8px;
  overflow-wrap: break-word;
  white-space: pre-wrap
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-info {
  color: #757575;
  font-size: 12px;
  line-height: 1.1;
  word-break: break-all
}

.block-editor-link-control__search-item.is-preview .block-editor-link-control__search-item-header {
  display: flex;
  flex: 1
}

.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-header {
  align-items: center
}

.block-editor-link-control__search-item.is-url-title .block-editor-link-control__search-item-title {
  word-break: break-all
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-header .block-editor-link-control__search-item-icon {
  background-color: #f0f0f0;
  border-radius: 2px;
  height: 32px;
  width: 32px
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  position: relative
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-icon img {
  width: 16px
}

.block-editor-link-control__search-item.is-error .block-editor-link-control__search-item-icon {
  max-height: 32px;
  top: 0;
  width: 32px
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-title {
  line-height: 1.1
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-title:focus {
  box-shadow: none
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-title:focus-visible {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000;
  text-decoration: none
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-title mark {
  background-color: initial;
  color: inherit;
  font-weight: 600
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-title span {
  font-weight: 400
}

.block-editor-link-control__search-item .block-editor-link-control__search-item-title .components-external-link__icon {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.block-editor-link-control__search-item-top {
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 100%
}

.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon img,
.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon svg {
  opacity: 0
}

.block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon:before {
  background-color: #f0f0f0;
  border-radius: 100%;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

@media not (prefers-reduced-motion) {
  .block-editor-link-control__search-item.is-fetching .block-editor-link-control__search-item-icon:before {
    animation: loadingpulse 1s linear infinite;
    animation-delay: .5s
  }
}

.block-editor-link-control__loading {
  align-items: center;
  display: flex;
  margin: 16px
}

.block-editor-link-control__loading .components-spinner {
  margin-top: 0
}

.components-button+.block-editor-link-control__search-create {
  overflow: visible;
  padding: 12px 16px
}

.components-button+.block-editor-link-control__search-create:before {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -10px;
  width: 100%
}

.block-editor-link-control__search-create {
  align-items: center
}

.block-editor-link-control__search-create .block-editor-link-control__search-item-title {
  margin-bottom: 0
}

.block-editor-link-control__search-create .block-editor-link-control__search-item-icon {
  top: 0
}

.block-editor-link-control__drawer-inner {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  position: relative
}

.block-editor-link-control__setting {
  flex: 1;
  margin-bottom: 0;
  padding: 8px 0 8px 24px
}

.block-editor-link-control__setting .components-base-control__field {
  display: flex
}

.block-editor-link-control__setting .components-base-control__field .components-checkbox-control__label {
  color: #1e1e1e
}

.block-editor-link-control__setting input {
  margin-left: 0
}

.is-preview .block-editor-link-control__setting {
  padding: 20px 8px 8px 0
}

.block-editor-link-control__tools {
  margin-top: -16px;
  padding: 8px 8px 0
}

.block-editor-link-control__tools .components-button.block-editor-link-control__drawer-toggle {
  gap: 0;
  padding-left: 0
}

.block-editor-link-control__tools .components-button.block-editor-link-control__drawer-toggle[aria-expanded=true] {
  color: #1e1e1e
}

.block-editor-link-control__tools .components-button.block-editor-link-control__drawer-toggle[aria-expanded=true] svg {
  transform: rotate(90deg);
  visibility: visible
}

@media not (prefers-reduced-motion) {
  .block-editor-link-control__tools .components-button.block-editor-link-control__drawer-toggle[aria-expanded=true] svg {
    transition: transform .1s ease
  }
}

.block-editor-link-control__tools .components-button.block-editor-link-control__drawer-toggle[aria-expanded=false] svg {
  transform: rotate(0deg);
  visibility: visible
}

@media not (prefers-reduced-motion) {
  .block-editor-link-control__tools .components-button.block-editor-link-control__drawer-toggle[aria-expanded=false] svg {
    transition: transform .1s ease
  }
}

.block-editor-link-control .block-editor-link-control__search-input .components-spinner {
  display: block
}

.block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner {
  bottom: auto;
  left: auto;
  position: absolute;
  right: 40px;
  top: calc(50% - 8px)
}

.block-editor-link-control .block-editor-link-control__search-input-wrapper.has-actions .components-spinner {
  right: 12px;
  top: calc(50% + 4px)
}

.block-editor-list-view-tree {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%
}

.components-modal__content .block-editor-list-view-tree {
  margin: -12px -6px 0;
  width: calc(100% + 12px)
}

.block-editor-list-view-tree.is-dragging tbody {
  pointer-events: none
}

.block-editor-list-view-leaf {
  position: relative;
  transform: translateY(0)
}

.block-editor-list-view-leaf.is-draggable,
.block-editor-list-view-leaf.is-draggable .block-editor-list-view-block-contents {
  cursor: grab
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button[aria-expanded=true] {
  color: inherit
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button:hover {
  color: var(--wp-admin-theme-color)
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button svg {
  fill: currentColor
}

@media (forced-colors:active) {
  .block-editor-list-view-leaf .block-editor-list-view-block-select-button svg {
    fill: CanvasText
  }
}

.is-dragging-components-draggable .block-editor-list-view-leaf:not(.is-selected) .block-editor-list-view-block-select-button:hover {
  color: inherit
}

.block-editor-list-view-leaf.is-selected td {
  background: var(--wp-admin-theme-color)
}

.block-editor-list-view-leaf.is-selected.is-synced td {
  background: var(--wp-block-synced-color)
}

.block-editor-list-view-leaf.is-synced:not(.is-selected) .block-editor-list-view-block-contents .block-editor-block-icon,
.block-editor-list-view-leaf.is-synced:not(.is-selected) .block-editor-list-view-block-contents:focus,
.block-editor-list-view-leaf.is-synced:not(.is-selected) .block-editor-list-view-block-contents:hover {
  color: var(--wp-block-synced-color)
}

.block-editor-list-view-leaf.is-synced:not(.is-selected) .block-editor-list-view-block-contents:focus:after {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-block-synced-color)
}

.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents,
.block-editor-list-view-leaf.is-selected .components-button.has-icon {
  color: #fff
}

.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents:focus:after {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.block-editor-list-view-leaf.is-selected.is-synced .block-editor-list-view-block-contents:focus:after {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-block-synced-color)
}

.block-editor-list-view-leaf.is-selected .block-editor-list-view-block__menu:focus {
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) #fff
}

.block-editor-list-view-leaf.is-first-selected td:first-child {
  border-top-left-radius: 2px
}

.block-editor-list-view-leaf.is-first-selected td:last-child {
  border-top-right-radius: 2px
}

.block-editor-list-view-leaf.is-last-selected td:first-child {
  border-bottom-left-radius: 2px
}

.block-editor-list-view-leaf.is-last-selected td:last-child {
  border-bottom-right-radius: 2px
}

.block-editor-list-view-leaf.is-branch-selected:not(.is-selected):not(.is-synced-branch) {
  background: rgba(var(--wp-admin-theme-color--rgb), .04)
}

.block-editor-list-view-leaf.is-synced-branch.is-branch-selected {
  background: rgba(var(--wp-block-synced-color--rgb), .04)
}

.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:first-child {
  border-top-left-radius: 2px
}

.block-editor-list-view-leaf.is-branch-selected.is-first-selected td:last-child {
  border-top-right-radius: 2px
}

.block-editor-list-view-leaf[data-expanded=false].is-branch-selected.is-first-selected td:first-child {
  border-top-left-radius: 2px
}

.block-editor-list-view-leaf[data-expanded=false].is-branch-selected.is-first-selected td:last-child {
  border-top-right-radius: 2px
}

.block-editor-list-view-leaf[data-expanded=false].is-branch-selected.is-last-selected td:first-child {
  border-bottom-left-radius: 2px
}

.block-editor-list-view-leaf[data-expanded=false].is-branch-selected.is-last-selected td:last-child {
  border-bottom-right-radius: 2px
}

.block-editor-list-view-leaf.is-branch-selected:not(.is-selected) td {
  border-radius: 0
}

.block-editor-list-view-leaf.is-displacement-normal {
  transform: translateY(0)
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-displacement-normal {
    transition: transform .2s
  }
}

.block-editor-list-view-leaf.is-displacement-up {
  transform: translateY(-32px)
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-displacement-up {
    transition: transform .2s
  }
}

.block-editor-list-view-leaf.is-displacement-down {
  transform: translateY(32px)
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-displacement-down {
    transition: transform .2s
  }
}

.block-editor-list-view-leaf.is-after-dragged-blocks {
  transform: translateY(calc(var(--wp-admin--list-view-dragged-items-height, 32px)*-1))
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-after-dragged-blocks {
    transition: transform .2s
  }
}

.block-editor-list-view-leaf.is-after-dragged-blocks.is-displacement-up {
  transform: translateY(calc(-32px + var(--wp-admin--list-view-dragged-items-height, 32px)*-1))
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-after-dragged-blocks.is-displacement-up {
    transition: transform .2s
  }
}

.block-editor-list-view-leaf.is-after-dragged-blocks.is-displacement-down {
  transform: translateY(calc(32px + var(--wp-admin--list-view-dragged-items-height, 32px)*-1))
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-after-dragged-blocks.is-displacement-down {
    transition: transform .2s
  }
}

.block-editor-list-view-leaf.is-dragging {
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -9999
}

.block-editor-list-view-leaf .block-editor-list-view-block-contents {
  align-items: center;
  border-radius: 2px;
  box-sizing: border-box;
  color: inherit;
  display: flex;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  height: 32px;
  margin: 0;
  padding: 6px 4px 6px 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  width: 100%
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf .block-editor-list-view-block-contents {
    transition: box-shadow .1s linear
  }
}

.components-modal__content .block-editor-list-view-leaf .block-editor-list-view-block-contents {
  padding-left: 0;
  padding-right: 0
}

.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus,
.block-editor-list-view-leaf.is-nesting .block-editor-list-view-block-contents {
  box-shadow: none
}

.block-editor-list-view-leaf .block-editor-list-view-block-contents:focus:after,
.block-editor-list-view-leaf.is-nesting .block-editor-list-view-block-contents:after {
  border-radius: inherit;
  bottom: 0;
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: -29px;
  top: 0;
  z-index: 2
}

.block-editor-list-view-leaf.has-single-cell .block-editor-list-view-block-contents:focus:after {
  right: 0
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu:focus,
.block-editor-list-view-leaf.is-nesting .block-editor-list-view__menu {
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  z-index: 1
}

.block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
  opacity: 1
}

@keyframes __wp-base-styles-fade-in {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf.is-visible .block-editor-list-view-block-contents {
    animation: __wp-base-styles-fade-in .08s linear 0s;
    animation-fill-mode: forwards
  }
}

.block-editor-list-view-leaf .block-editor-block-icon {
  flex: 0 0 24px;
  margin-right: 4px
}

.block-editor-list-view-leaf .block-editor-list-view-block__contents-cell,
.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
  padding: 0
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell {
  line-height: 0;
  vertical-align: middle;
  width: 36px
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell>*,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell>* {
  opacity: 0
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell.is-visible>*,
.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:focus-within>*,
.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell:hover>*,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell.is-visible>*,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:focus-within>*,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell:hover>* {
  opacity: 1
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell,
.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell,
.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell .components-button.has-icon {
  min-width: 24px;
  padding: 0;
  width: 24px
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell {
  padding-right: 4px
}

.block-editor-list-view-leaf .block-editor-list-view-block__menu-cell .components-button.has-icon {
  height: 24px
}

.block-editor-list-view-leaf .block-editor-list-view-block__mover-cell-alignment-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%
}

.block-editor-list-view-leaf .block-editor-block-mover-button {
  height: 24px;
  position: relative;
  width: 36px
}

.block-editor-list-view-leaf .block-editor-block-mover-button svg {
  height: 24px;
  position: relative
}

.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button {
  align-items: flex-end;
  margin-top: -6px
}

.block-editor-list-view-leaf .block-editor-block-mover-button.is-up-button svg {
  bottom: -4px
}

.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button {
  align-items: flex-start;
  margin-bottom: -6px
}

.block-editor-list-view-leaf .block-editor-block-mover-button.is-down-button svg {
  top: -4px
}

.block-editor-list-view-leaf .block-editor-block-mover-button:before {
  height: 16px;
  left: 0;
  min-width: 100%;
  right: 0
}

.block-editor-list-view-leaf .block-editor-inserter__toggle {
  background: #1e1e1e;
  color: #fff;
  height: 24px;
  margin: 6px 6px 6px 1px;
  min-width: 24px
}

.block-editor-list-view-leaf .block-editor-inserter__toggle:active {
  color: #fff
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__label-wrapper svg {
  left: 2px;
  position: relative
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__title {
  flex: 1;
  position: relative
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__title .components-truncate {
  position: absolute;
  transform: translateY(-50%);
  width: 100%
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor-wrapper {
  max-width: min(110px, 40%);
  position: relative;
  width: 100%
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__anchor {
  position: absolute;
  right: 0;
  transform: translateY(-50%)
}

.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__anchor {
  background: #0000004d;
  color: #fff
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__lock,
.block-editor-list-view-leaf .block-editor-list-view-block-select-button__sticky {
  line-height: 0
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__images {
  display: flex
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__image {
  background-size: cover;
  border-radius: 1px;
  height: 18px;
  width: 18px
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__image:not(:only-child) {
  box-shadow: 0 0 0 2px #fff
}

.block-editor-list-view-leaf .block-editor-list-view-block-select-button__image:not(:first-child) {
  margin-left: -6px
}

.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-select-button__image:not(:only-child) {
  box-shadow: 0 0 0 2px var(--wp-admin-theme-color)
}

.block-editor-list-view-draggable-chip {
  opacity: .8
}

.block-editor-list-view-appender__cell .block-editor-list-view-appender__container,
.block-editor-list-view-appender__cell .block-editor-list-view-block__contents-container,
.block-editor-list-view-block__contents-cell .block-editor-list-view-appender__container,
.block-editor-list-view-block__contents-cell .block-editor-list-view-block__contents-container {
  display: flex
}

.block-editor-list-view__expander {
  cursor: pointer;
  height: 24px;
  width: 24px
}

.block-editor-list-view-leaf[aria-level] .block-editor-list-view__expander {
  margin-left: 192px
}

.block-editor-list-view-leaf[aria-level="1"] .block-editor-list-view__expander {
  margin-left: 0
}

.block-editor-list-view-leaf[aria-level="2"] .block-editor-list-view__expander {
  margin-left: 24px
}

.block-editor-list-view-leaf[aria-level="3"] .block-editor-list-view__expander {
  margin-left: 48px
}

.block-editor-list-view-leaf[aria-level="4"] .block-editor-list-view__expander {
  margin-left: 72px
}

.block-editor-list-view-leaf[aria-level="5"] .block-editor-list-view__expander {
  margin-left: 96px
}

.block-editor-list-view-leaf[aria-level="6"] .block-editor-list-view__expander {
  margin-left: 120px
}

.block-editor-list-view-leaf[aria-level="7"] .block-editor-list-view__expander {
  margin-left: 144px
}

.block-editor-list-view-leaf[aria-level="8"] .block-editor-list-view__expander {
  margin-left: 168px
}

.block-editor-list-view-leaf .block-editor-list-view__expander {
  visibility: hidden
}

.block-editor-list-view-leaf[data-expanded=true] .block-editor-list-view__expander svg {
  transform: rotate(90deg);
  visibility: visible
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf[data-expanded=true] .block-editor-list-view__expander svg {
    transition: transform .2s ease
  }
}

.block-editor-list-view-leaf[data-expanded=false] .block-editor-list-view__expander svg {
  transform: rotate(0deg);
  visibility: visible
}

@media not (prefers-reduced-motion) {
  .block-editor-list-view-leaf[data-expanded=false] .block-editor-list-view__expander svg {
    transition: transform .2s ease
  }
}

.block-editor-list-view-drop-indicator {
  pointer-events: none
}

.block-editor-list-view-drop-indicator .block-editor-list-view-drop-indicator__line {
  background: var(--wp-admin-theme-color);
  border-radius: 4px;
  height: 4px
}

.block-editor-list-view-drop-indicator--preview {
  pointer-events: none
}

.block-editor-list-view-drop-indicator--preview .components-popover__content {
  overflow: hidden !important
}

.block-editor-list-view-drop-indicator--preview .block-editor-list-view-drop-indicator__line {
  background: rgba(var(--wp-admin-theme-color--rgb), .04);
  border-radius: 4px;
  height: 32px;
  overflow: hidden
}

.block-editor-list-view-drop-indicator--preview .block-editor-list-view-drop-indicator__line--darker {
  background: rgba(var(--wp-admin-theme-color--rgb), .09)
}

.block-editor-list-view-placeholder {
  height: 32px;
  margin: 0;
  padding: 0
}

.list-view-appender .block-editor-inserter__toggle {
  background-color: #1e1e1e;
  color: #fff;
  height: 24px;
  margin: 8px 0 0 24px;
  padding: 0
}

.list-view-appender .block-editor-inserter__toggle.has-icon.is-next-40px-default-size {
  min-width: 24px
}

.list-view-appender .block-editor-inserter__toggle:focus,
.list-view-appender .block-editor-inserter__toggle:hover {
  background: var(--wp-admin-theme-color);
  color: #fff
}

.list-view-appender__description {
  display: none
}

.block-editor-media-placeholder__url-input-form {
  min-width: 260px
}

@media (min-width:600px) {
  .block-editor-media-placeholder__url-input-form {
    width: 300px
  }
}

.modal-open .block-editor-media-replace-flow__options {
  display: none
}

.block-editor-media-replace-flow__indicator {
  margin-left: 4px
}

.block-editor-media-replace-flow__media-upload-menu:not(:empty)+.block-editor-media-flow__url-input {
  border-top: 1px solid #1e1e1e;
  margin-top: 8px;
  padding-bottom: 8px
}

.block-editor-media-flow__url-input {
  margin-left: -8px;
  margin-right: -8px;
  padding: 16px
}

.block-editor-media-flow__url-input .block-editor-media-replace-flow__image-url-label {
  display: block;
  margin-bottom: 8px;
  top: 16px
}

.block-editor-media-flow__url-input .block-editor-link-control {
  width: 300px
}

.block-editor-media-flow__url-input .block-editor-link-control .block-editor-url-input {
  margin: 0;
  padding: 0
}

.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-info,
.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item-title {
  max-width: 200px;
  white-space: nowrap
}

.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__tools {
  justify-content: flex-end;
  padding: 16px var(--wp-admin-border-width-focus) var(--wp-admin-border-width-focus)
}

.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-item.is-current {
  padding: 0;
  width: auto
}

.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type=text] {
  margin: 0;
  width: 100%
}

.block-editor-media-flow__url-input .block-editor-link-control .block-editor-link-control__search-actions {
  padding: 8px 0 0
}

.block-editor-media-flow__error {
  max-width: 255px;
  padding: 0 20px 20px
}

.block-editor-media-flow__error .components-with-notices-ui {
  max-width: 255px
}

.block-editor-media-flow__error .components-with-notices-ui .components-notice__content {
  overflow: hidden;
  word-wrap: break-word
}

.block-editor-media-flow__error .components-with-notices-ui .components-notice__dismiss {
  position: absolute;
  right: 10px
}

.block-editor-multi-selection-inspector__card {
  padding: 16px
}

.block-editor-multi-selection-inspector__card-title {
  font-weight: 500
}

.block-editor-multi-selection-inspector__card .block-editor-block-icon {
  height: 24px;
  margin-left: -2px;
  padding: 0 3px;
  width: 36px
}

.block-editor-responsive-block-control {
  border-bottom: 1px solid #ccc;
  margin-bottom: 28px;
  padding-bottom: 14px
}

.block-editor-responsive-block-control:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.block-editor-responsive-block-control__title {
  margin: 0 0 .6em -3px
}

.block-editor-responsive-block-control__label {
  font-weight: 600;
  margin-bottom: .6em;
  margin-left: -3px
}

.block-editor-responsive-block-control__inner {
  margin-left: -1px
}

.block-editor-responsive-block-control__toggle {
  margin-left: 1px
}

.block-editor-responsive-block-control .components-base-control__help {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important
}

.components-popover.block-editor-rich-text__inline-format-toolbar {
  z-index: 99998
}

.components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content {
  border-radius: 2px;
  box-shadow: none;
  margin-bottom: 8px;
  min-width: auto;
  outline: none;
  width: auto
}

.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar {
  border-radius: 2px
}

.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar-group {
  background: none
}

.components-popover.block-editor-rich-text__inline-format-toolbar .components-dropdown-menu__toggle,
.components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar__control {
  min-height: 48px;
  min-width: 48px;
  padding-left: 12px;
  padding-right: 12px
}

.block-editor-rich-text__inline-format-toolbar-group .components-dropdown-menu__toggle {
  justify-content: center
}

.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon {
  width: auto
}

.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon svg {
  display: none
}

.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button.has-icon:after {
  content: attr(aria-label)
}

.block-editor-skip-to-selected-block {
  position: absolute;
  top: -9999em
}

.block-editor-skip-to-selected-block:focus {
  background: #f1f1f1;
  font-size: 14px;
  font-weight: 600;
  z-index: 100000
}

.block-editor-tabbed-sidebar {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  overflow: hidden
}

.block-editor-tabbed-sidebar__tablist-and-close-button {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding-right: 8px
}

.block-editor-tabbed-sidebar__close-button {
  align-self: center;
  background: #fff;
  order: 1
}

.block-editor-tabbed-sidebar__tablist {
  margin-bottom: -1px
}

.block-editor-tabbed-sidebar__tabpanel {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-gutter: auto
}

.block-editor-tool-selector__help {
  border-top: 1px solid #ddd;
  color: #757575;
  margin: 8px -8px -8px;
  min-width: 280px;
  padding: 16px
}

.block-editor-tool-selector__menu .components-menu-item__info {
  margin-left: 36px;
  text-align: left
}

.block-editor-block-list__block .block-editor-url-input,
.block-editor-url-input,
.components-popover .block-editor-url-input {
  flex-grow: 1;
  padding: 1px;
  position: relative
}

@media (min-width:600px) {

  .block-editor-block-list__block .block-editor-url-input,
  .block-editor-url-input,
  .components-popover .block-editor-url-input {
    min-width: 300px;
    width: auto
  }
}

.block-editor-block-list__block .block-editor-url-input.is-full-width,
.block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions,
.block-editor-url-input.is-full-width,
.block-editor-url-input.is-full-width__suggestions,
.components-popover .block-editor-url-input.is-full-width,
.components-popover .block-editor-url-input.is-full-width__suggestions {
  width: 100%
}

.block-editor-block-list__block .block-editor-url-input .components-spinner,
.block-editor-url-input .components-spinner,
.components-popover .block-editor-url-input .components-spinner {
  margin: 0;
  position: absolute;
  right: 8px;
  top: calc(50% - 8px)
}

.block-editor-url-input__suggestions {
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
  width: 302px
}

@media not (prefers-reduced-motion) {
  .block-editor-url-input__suggestions {
    transition: all .15s ease-in-out
  }
}

.block-editor-url-input .components-spinner,
.block-editor-url-input__suggestions {
  display: none
}

@media (min-width:600px) {

  .block-editor-url-input .components-spinner,
  .block-editor-url-input__suggestions {
    display: grid
  }
}

.block-editor-url-input__suggestion {
  background: #fff;
  border: none;
  box-shadow: none;
  color: #757575;
  cursor: pointer;
  display: block;
  font-size: 13px;
  height: auto;
  min-height: 36px;
  text-align: left;
  width: 100%
}

.block-editor-url-input__suggestion:hover {
  background: #ddd
}

.block-editor-url-input__suggestion.is-selected,
.block-editor-url-input__suggestion:focus {
  background: var(--wp-admin-theme-color-darker-20);
  color: #fff;
  outline: none
}

.components-toolbar-group>.block-editor-url-input__button,
.components-toolbar>.block-editor-url-input__button {
  position: inherit
}

.block-editor-url-input__button .block-editor-url-input__back {
  margin-right: 4px;
  overflow: visible
}

.block-editor-url-input__button .block-editor-url-input__back:after {
  background: #ddd;
  content: "";
  display: block;
  height: 24px;
  position: absolute;
  right: -1px;
  width: 1px
}

.block-editor-url-input__button-modal {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 1px 1px #00000008, 0 1px 2px #00000005, 0 3px 3px #00000005, 0 4px 4px #00000003
}

.block-editor-url-input__button-modal-line {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0
}

.block-editor-url-popover__additional-controls {
  border-top: 1px solid #1e1e1e;
  padding: 8px
}

.block-editor-url-popover__input-container {
  padding: 8px
}

.block-editor-url-popover__row {
  align-items: center;
  display: flex;
  gap: 4px
}

.block-editor-url-popover__row>:not(.block-editor-url-popover__settings-toggle) {
  flex-grow: 1;
  gap: 8px
}

.block-editor-url-popover__additional-controls .components-button.has-icon {
  height: auto;
  padding-left: 8px;
  padding-right: 8px;
  text-align: left
}

.block-editor-url-popover__additional-controls .components-button.has-icon>svg {
  margin-right: 8px
}

.block-editor-url-popover__settings-toggle {
  flex-shrink: 0
}

.block-editor-url-popover__settings-toggle[aria-expanded=true] .dashicon {
  transform: rotate(180deg)
}

.block-editor-url-popover__settings {
  border-top: 1px solid #1e1e1e;
  display: block;
  padding: 16px
}

.block-editor-url-popover__link-editor,
.block-editor-url-popover__link-viewer {
  display: flex
}

.block-editor-url-popover__link-viewer-url {
  align-items: center;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  margin-right: 8px;
  max-width: 350px;
  min-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.block-editor-url-popover__link-viewer-url.has-invalid-link {
  color: #cc1818
}

.block-editor-url-popover__expand-on-click {
  align-items: center;
  display: flex;
  min-width: 350px;
  white-space: nowrap
}

.block-editor-url-popover__expand-on-click .text {
  flex-grow: 1
}

.block-editor-url-popover__expand-on-click .text p {
  line-height: 16px;
  margin: 0
}

.block-editor-url-popover__expand-on-click .text p.description {
  color: #757575;
  font-size: 12px
}

.block-editor-hooks__block-hooks .components-toggle-control .components-h-stack .components-h-stack {
  flex-direction: row
}

.block-editor-hooks__block-hooks .block-editor-hooks__block-hooks-helptext {
  color: #757575;
  font-size: 12px;
  margin-bottom: 16px
}

div.block-editor-bindings__panel {
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr))
}

div.block-editor-bindings__panel button:hover .block-editor-bindings__item span {
  color: inherit
}

.border-block-support-panel .single-column {
  grid-column: span 1
}

.color-block-support-panel .block-editor-contrast-checker {
  grid-column: span 2;
  margin-top: 16px
}

.color-block-support-panel .block-editor-contrast-checker .components-notice__content {
  margin-right: 0
}

.color-block-support-panel.color-block-support-panel .color-block-support-panel__inner-wrapper {
  row-gap: 0
}

.color-block-support-panel .block-editor-tools-panel-color-gradient-settings__item.first {
  margin-top: 0
}

.dimensions-block-support-panel .single-column {
  grid-column: span 1
}

.block-editor-hooks__layout-constrained .components-base-control {
  margin-bottom: 0
}

.block-editor-hooks__layout-constrained-helptext {
  color: #757575;
  font-size: 12px;
  margin-bottom: 0
}

.block-editor-hooks__flex-layout-justification-controls,
.block-editor-hooks__flex-layout-orientation-controls {
  margin-bottom: 12px
}

.block-editor-hooks__flex-layout-justification-controls legend,
.block-editor-hooks__flex-layout-orientation-controls legend {
  margin-bottom: 8px
}

.block-editor__spacing-visualizer {
  border-color: var(--wp-admin-theme-color);
  border-style: solid;
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  opacity: .5;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.typography-block-support-panel .single-column {
  grid-column: span 1
}

.block-editor-block-toolbar {
  display: flex;
  flex-grow: 1;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  width: 100%
}

@media not (prefers-reduced-motion) {
  .block-editor-block-toolbar {
    transition: border-color .1s linear, box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .block-editor-block-toolbar {
    overflow: inherit
  }
}

.block-editor-block-toolbar .components-toolbar,
.block-editor-block-toolbar .components-toolbar-group {
  background: none;
  border: 0;
  border-right: 1px solid #ddd;
  margin-bottom: -1px;
  margin-top: -1px
}

.block-editor-block-toolbar.is-connected .block-editor-block-switcher .components-button:before {
  background: color-mix(in srgb, var(--wp-block-synced-color) 10%, #0000);
  border-radius: 2px
}

.block-editor-block-toolbar.is-connected .block-editor-block-switcher .components-button .block-editor-block-icon,
.block-editor-block-toolbar.is-connected .components-toolbar-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors,
.block-editor-block-toolbar.is-synced .block-editor-block-switcher .components-button .block-editor-block-icon,
.block-editor-block-toolbar.is-synced .components-toolbar-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors {
  color: var(--wp-block-synced-color)
}

.block-editor-block-toolbar:has(>:last-child:empty)>:nth-last-child(2),
.block-editor-block-toolbar:has(>:last-child:empty)>:nth-last-child(2) .components-toolbar,
.block-editor-block-toolbar:has(>:last-child:empty)>:nth-last-child(2) .components-toolbar-group,
.block-editor-block-toolbar>:last-child,
.block-editor-block-toolbar>:last-child .components-toolbar,
.block-editor-block-toolbar>:last-child .components-toolbar-group {
  border-right: none
}

.block-editor-block-toolbar .components-toolbar-group:empty {
  display: none
}

.block-editor-block-contextual-toolbar {
  background-color: #fff;
  display: block;
  flex-shrink: 3;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 31
}

.block-editor-block-contextual-toolbar.components-accessible-toolbar {
  border: none;
  border-radius: 0
}

.block-editor-block-contextual-toolbar.is-unstyled {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .133)
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar {
  overflow: auto;
  overflow-y: hidden;
  scrollbar-color: #e0e0e0 #0000;
  scrollbar-gutter: stable both-edges;
  scrollbar-gutter: auto;
  scrollbar-width: thin;
  will-change: transform
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar::-webkit-scrollbar {
  height: 12px;
  width: 12px
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar::-webkit-scrollbar-track {
  background-color: initial
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #e0e0e0;
  border: 3px solid #0000;
  border-radius: 8px
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar:focus-within::-webkit-scrollbar-thumb,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar:focus::-webkit-scrollbar-thumb,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar:hover::-webkit-scrollbar-thumb {
  background-color: #949494
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar:focus,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar:focus-within,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar:hover {
  scrollbar-color: #949494 #0000
}

@media (hover:none) {
  .block-editor-block-contextual-toolbar .block-editor-block-toolbar {
    scrollbar-color: #949494 #0000
  }
}

.block-editor-block-contextual-toolbar .block-editor-block-toolbar>:last-child .components-toolbar-group:after,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar>:last-child .components-toolbar:after,
.block-editor-block-contextual-toolbar .block-editor-block-toolbar>:last-child:after {
  display: none
}

.block-editor-block-contextual-toolbar>.block-editor-block-toolbar {
  flex-grow: 0;
  width: auto
}

.block-editor-block-contextual-toolbar .block-editor-block-parent-selector {
  margin-bottom: -1px;
  margin-top: -1px;
  position: relative
}

.block-editor-block-contextual-toolbar .block-editor-block-parent-selector:after {
  align-items: center;
  background-color: #1e1e1e;
  border-radius: 100%;
  content: "";
  display: inline-flex;
  height: 2px;
  position: absolute;
  right: 0;
  top: 15px;
  width: 2px
}

.block-editor-block-toolbar__block-controls .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
.block-editor-block-toolbar__block-controls .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
  margin: 0 !important;
  width: 24px !important
}

.block-editor-block-toolbar__block-controls .components-toolbar-group {
  padding: 0
}

.block-editor-block-toolbar .components-toolbar,
.block-editor-block-toolbar .components-toolbar-group,
.block-editor-rich-text__inline-format-toolbar-group .components-toolbar,
.block-editor-rich-text__inline-format-toolbar-group .components-toolbar-group {
  display: flex;
  flex-wrap: nowrap
}

.block-editor-block-toolbar__slot {
  display: inline-flex
}

.show-icon-labels .block-editor-block-toolbar .components-button.has-icon {
  width: auto
}

.show-icon-labels .block-editor-block-toolbar .components-button.has-icon svg {
  display: none
}

.show-icon-labels .block-editor-block-toolbar .components-button.has-icon:after {
  content: attr(aria-label);
  font-size: 12px
}

.show-icon-labels .components-accessible-toolbar .components-toolbar-group>div:first-child:last-child>.components-button.has-icon {
  padding-left: 6px;
  padding-right: 6px
}

.show-icon-labels .block-editor-block-switcher .components-dropdown-menu__toggle .block-editor-block-icon,
.show-icon-labels .block-editor-block-switcher__no-switcher-icon .block-editor-block-icon {
  height: 0 !important;
  min-width: 0 !important;
  width: 0 !important
}

.show-icon-labels .block-editor-block-parent-selector .block-editor-block-parent-selector__button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding-left: 12px;
  padding-right: 12px;
  text-wrap: nowrap
}

.show-icon-labels .block-editor-block-parent-selector .block-editor-block-parent-selector__button .block-editor-block-icon {
  width: 0
}

.show-icon-labels .block-editor-block-mover .block-editor-block-mover__move-button-container {
  position: relative;
  width: auto
}

@media (min-width:600px) {
  .show-icon-labels .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container:before {
    background: #e0e0e0;
    content: "";
    height: 1px;
    left: 50%;
    margin-top: -.5px;
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    width: 100%
  }
}

@media (min-width:782px) {
  .show-icon-labels .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container:before {
    background: #1e1e1e
  }
}

.show-icon-labels .block-editor-block-mover.is-horizontal .block-editor-block-mover-button,
.show-icon-labels .block-editor-block-mover.is-horizontal .block-editor-block-mover__move-button-container {
  padding-left: 6px;
  padding-right: 6px
}

.show-icon-labels .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover-button {
  padding-left: 8px;
  padding-right: 8px
}

.show-icon-labels .block-editor-block-toolbar__block-controls .block-editor-block-mover {
  border-left: 1px solid #ddd;
  margin-left: 6px;
  margin-right: -6px;
  white-space: nowrap
}

.show-icon-labels .block-editor-block-mover .block-editor-block-mover__drag-handle.has-icon {
  padding-left: 12px;
  padding-right: 12px
}

.show-icon-labels .block-editor-block-contextual-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button.block-editor-block-mover-button {
  width: auto
}

.show-icon-labels .components-toolbar,
.show-icon-labels .components-toolbar-group {
  flex-shrink: 1
}

.show-icon-labels .block-editor-rich-text__inline-format-toolbar-group .components-button+.components-button {
  margin-left: 6px
}

.block-editor-block-toolbar-change-design-content-wrapper {
  padding: 12px;
  width: 320px
}

.block-editor-block-toolbar-change-design-content-wrapper .block-editor-block-patterns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px
}

.block-editor-block-toolbar-change-design-content-wrapper .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
  margin-bottom: 0
}

.block-editor-block-toolbar-change-design-content-wrapper .block-editor-block-patterns-list .block-editor-inserter__media-list__list-item {
  min-height: 100px
}

.block-editor-inserter {
  background: none;
  border: none;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  line-height: 0;
  padding: 0
}

@media (min-width:782px) {
  .block-editor-inserter {
    position: relative
  }
}

.block-editor-inserter__main-area {
  gap: 16px;
  height: 100%;
  position: relative
}

.block-editor-inserter__main-area.show-as-tabs {
  gap: 0
}

@media (min-width:782px) {
  .block-editor-inserter__main-area .block-editor-tabbed-sidebar {
    width: 350px
  }
}

.block-editor-inserter__popover.is-quick .components-popover__content {
  border: none;
  box-shadow: 0 1px 1px #00000008, 0 1px 2px #00000005, 0 3px 3px #00000005, 0 4px 4px #00000003;
  outline: none
}

.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>* {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc
}

.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>:first-child {
  border-radius: 4px 4px 0 0;
  border-top: 1px solid #ccc
}

.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>:last-child {
  border-bottom: 1px solid #ccc;
  border-radius: 0 0 4px 4px
}

.block-editor-inserter__popover.is-quick .components-popover__content .block-editor-inserter__quick-inserter>.components-button {
  border: 1px solid #1e1e1e
}

.block-editor-inserter__popover .block-editor-inserter__menu {
  margin: -12px
}

.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__tablist {
  top: 60px
}

.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__main-area {
  height: auto;
  overflow: visible
}

.block-editor-inserter__popover .block-editor-inserter__menu .block-editor-inserter__preview-container {
  display: none
}

.block-editor-inserter__toggle.components-button {
  align-items: center;
  border: none;
  cursor: pointer;
  display: inline-flex;
  outline: none;
  padding: 0
}

@media not (prefers-reduced-motion) {
  .block-editor-inserter__toggle.components-button {
    transition: color .2s ease
  }
}

.block-editor-inserter__menu {
  height: 100%;
  overflow: visible;
  position: relative
}

@media (min-width:782px) {
  .block-editor-inserter__menu.show-panel {
    width: 630px
  }
}

.block-editor-inserter__inline-elements {
  margin-top: -1px
}

.block-editor-inserter__menu.is-bottom:after {
  border-bottom-color: #fff
}

.components-popover.block-editor-inserter__popover {
  z-index: 99999
}

.block-editor-inserter__search {
  padding: 16px 16px 0
}

.block-editor-inserter__no-tab-container {
  flex-grow: 1;
  overflow-y: auto;
  position: relative
}

.block-editor-inserter__panel-header {
  align-items: center;
  display: inline-flex;
  padding: 16px 16px 0;
  position: relative
}

.block-editor-inserter__panel-content {
  padding: 16px
}

.block-editor-inserter__panel-title,
.block-editor-inserter__panel-title button {
  color: #757575;
  font-size: 11px;
  font-weight: 500;
  margin: 0 12px 0 0;
  text-transform: uppercase
}

.block-editor-inserter__panel-dropdown select.components-select-control__input.components-select-control__input.components-select-control__input {
  height: 36px;
  line-height: 36px
}

.block-editor-inserter__panel-dropdown select {
  border: none
}

.block-editor-inserter__reusable-blocks-panel {
  position: relative;
  text-align: right
}

.block-editor-inserter__no-results,
.block-editor-inserter__patterns-loading {
  padding: 32px;
  text-align: center
}

.block-editor-inserter__child-blocks {
  padding: 0 16px
}

.block-editor-inserter__parent-block-header {
  align-items: center;
  display: flex
}

.block-editor-inserter__parent-block-header h2 {
  font-size: 13px
}

.block-editor-inserter__parent-block-header .block-editor-block-icon {
  margin-right: 8px
}

.block-editor-inserter__preview-container__popover {
  top: 16px !important
}

.block-editor-inserter__preview-container {
  display: none;
  max-height: calc(100% - 32px);
  overflow-y: hidden;
  padding: 16px;
  width: 280px
}

@media (min-width:782px) {
  .block-editor-inserter__preview-container {
    display: block
  }
}

.block-editor-inserter__preview-container .block-editor-inserter__media-list__list-item {
  height: 100%
}

.block-editor-inserter__preview-container .block-editor-block-card {
  padding-bottom: 4px;
  padding-left: 0;
  padding-right: 0
}

.block-editor-inserter__insertable-blocks-at-selection {
  border-bottom: 1px solid #e0e0e0
}

.block-editor-inserter__block-patterns-tabs-container,
.block-editor-inserter__media-tabs-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 16px
}

.block-editor-inserter__category-tablist {
  margin-bottom: 8px
}

.block-editor-inserter__category-panel {
  display: flex;
  flex-direction: column;
  outline: 1px solid #0000;
  padding: 0 16px
}

@media (min-width:782px) {
  .block-editor-inserter__category-panel {
    background: #f0f0f0;
    border-left: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    height: calc(100% + 1px);
    left: 350px;
    padding: 0;
    position: absolute;
    top: -1px;
    width: 280px
  }

  .block-editor-inserter__category-panel .block-editor-block-patterns-list,
  .block-editor-inserter__category-panel .block-editor-inserter__media-list {
    padding: 0 24px 16px
  }
}

.block-editor-inserter__patterns-category-panel-header {
  padding: 8px 0
}

@media (min-width:782px) {
  .block-editor-inserter__patterns-category-panel-header {
    padding: 8px 24px
  }
}

.block-editor-inserter__patterns-category-no-results {
  margin-top: 24px
}

.block-editor-inserter__patterns-filter-help {
  border-top: 1px solid #ddd;
  color: #757575;
  min-width: 280px;
  padding: 16px
}

.block-editor-block-patterns-list,
.block-editor-inserter__media-list {
  flex-grow: 1;
  height: 100%;
  overflow-y: auto
}

.block-editor-inserter__preview-content {
  align-items: center;
  background: #f0f0f0;
  display: grid;
  flex-grow: 1
}

.block-editor-inserter__preview-content-missing {
  align-items: center;
  background: #f0f0f0;
  border-radius: 2px;
  color: #757575;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 144px
}

.block-editor-inserter__tips {
  border-top: 1px solid #ddd;
  flex-shrink: 0;
  padding: 16px;
  position: relative
}

.block-editor-inserter__quick-inserter {
  max-width: 100%;
  width: 100%
}

@media (min-width:782px) {
  .block-editor-inserter__quick-inserter {
    width: 350px
  }
}

.block-editor-inserter__quick-inserter-results .block-editor-inserter__panel-header {
  float: left;
  height: 0;
  padding: 0
}

.block-editor-inserter__quick-inserter.has-expand .block-editor-inserter__panel-content,
.block-editor-inserter__quick-inserter.has-search .block-editor-inserter__panel-content {
  padding: 16px
}

.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px
}

.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
  margin-bottom: 0
}

.block-editor-inserter__quick-inserter-patterns .block-editor-block-patterns-list .block-editor-inserter__media-list__list-item {
  min-height: 100px
}

.block-editor-inserter__quick-inserter-separator {
  border-top: 1px solid #ddd
}

.block-editor-inserter__popover.is-quick>.components-popover__content {
  padding: 0
}

.block-editor-inserter__quick-inserter-expand.components-button {
  background: #1e1e1e;
  border-radius: 0;
  color: #fff;
  display: block;
  width: 100%
}

.block-editor-inserter__quick-inserter-expand.components-button:hover {
  color: #fff
}

.block-editor-inserter__quick-inserter-expand.components-button:active {
  color: #ccc
}

.block-editor-inserter__quick-inserter-expand.components-button.components-button:focus:not(:disabled) {
  background: var(--wp-admin-theme-color);
  border-color: var(--wp-admin-theme-color);
  box-shadow: none
}

.block-editor-block-patterns-explorer__sidebar {
  bottom: 0;
  left: 0;
  overflow-x: visible;
  overflow-y: scroll;
  padding: 24px 32px 32px;
  position: absolute;
  top: 72px;
  width: 280px
}

.block-editor-block-patterns-explorer__sidebar__categories-list__item {
  display: block;
  height: 48px;
  text-align: left;
  width: 100%
}

.block-editor-block-patterns-explorer__search {
  margin-bottom: 32px
}

.block-editor-block-patterns-explorer__search-results-count {
  padding-bottom: 32px
}

.block-editor-block-patterns-explorer__list {
  margin-left: 280px;
  padding: 24px 0 32px
}

.block-editor-block-patterns-explorer__list .block-editor-patterns__sync-status-filter .components-input-control__container {
  width: 380px
}

.block-editor-block-patterns-explorer .block-editor-block-patterns-list {
  display: grid;
  grid-gap: 32px;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 16px
}

@media (min-width:1080px) {
  .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width:1440px) {
  .block-editor-block-patterns-explorer .block-editor-block-patterns-list {
    grid-template-columns: repeat(3, 1fr)
  }
}

.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
  min-height: 240px
}

.block-editor-block-patterns-explorer .block-editor-block-patterns-list .block-editor-inserter__media-list__list-item {
  height: inherit;
  max-height: 800px;
  min-height: 100px
}

.components-heading.block-editor-inserter__patterns-category-panel-title {
  font-weight: 500
}

.block-editor-inserter__media-library-button.components-button,
.block-editor-inserter__patterns-explore-button.components-button {
  justify-content: center;
  margin-top: 16px;
  padding: 16px;
  width: 100%
}

.block-editor-inserter__media-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 16px
}

@media (min-width:782px) {
  .block-editor-inserter__media-panel {
    padding: 0
  }
}

.block-editor-inserter__media-panel .block-editor-inserter__media-panel-spinner {
  align-items: center;
  display: flex;
  flex: 1;
  height: 100%;
  justify-content: center
}

.block-editor-inserter__media-panel .block-editor-inserter__media-panel-search {
  margin-bottom: 24px
}

@media (min-width:782px) {
  .block-editor-inserter__media-panel .block-editor-inserter__media-panel-search {
    margin-bottom: 0;
    padding: 16px 24px
  }

  .block-editor-inserter__media-panel .block-editor-inserter__media-panel-search:not(:focus-within) {
    --wp-components-color-background: #fff
  }
}

.block-editor-inserter__media-list__list-item {
  cursor: pointer;
  margin-bottom: 24px;
  position: relative
}

.block-editor-inserter__media-list__list-item.is-placeholder {
  min-height: 100px
}

.block-editor-inserter__media-list__list-item[draggable=true] .block-editor-inserter__media-list__list-item {
  cursor: grab
}

.block-editor-inserter__media-list__list-item.is-hovered .block-editor-inserter__media-list__item-preview>* {
  outline-color: #0000004d
}

.block-editor-inserter__media-list__list-item.is-hovered .block-editor-inserter__media-list__item-preview-options>button {
  display: block
}

.block-editor-inserter__media-list__list-item .block-editor-inserter__media-list__item-preview-options {
  position: absolute;
  right: 8px;
  top: 8px
}

.block-editor-inserter__media-list__list-item .block-editor-inserter__media-list__item-preview-options>button {
  background: #fff;
  display: none
}

.block-editor-inserter__media-list__list-item .block-editor-inserter__media-list__item-preview-options>button.is-opened,
.block-editor-inserter__media-list__list-item .block-editor-inserter__media-list__item-preview-options>button:focus {
  display: block
}

.block-editor-inserter__media-list__list-item .block-editor-inserter__media-list__item-preview-options>button:hover {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.block-editor-inserter__media-list__item {
  height: 100%
}

.block-editor-inserter__media-list__item .block-editor-inserter__media-list__item-preview {
  align-items: center;
  border-radius: 2px;
  display: flex;
  overflow: hidden
}

.block-editor-inserter__media-list__item .block-editor-inserter__media-list__item-preview>* {
  margin: 0 auto;
  max-width: 100%;
  outline: 1px solid #0000001a;
  outline-offset: -1px
}

.block-editor-inserter__media-list__item .block-editor-inserter__media-list__item-preview .block-editor-inserter__media-list__item-preview-spinner {
  align-items: center;
  background: #ffffffb3;
  display: flex;
  height: 100%;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  width: 100%
}

.block-editor-inserter__media-list__item:focus .block-editor-inserter__media-list__item-preview>* {
  outline-color: var(--wp-admin-theme-color);
  outline-offset: calc(var(--wp-admin-border-width-focus)*-1);
  outline-width: var(--wp-admin-border-width-focus)
}

@media not (prefers-reduced-motion) {
  .block-editor-inserter__media-list__item:focus .block-editor-inserter__media-list__item-preview>* {
    transition: outline .1s linear
  }
}

.block-editor-inserter__media-list__item-preview-options__popover .components-menu-item__button .components-menu-item__item {
  min-width: auto
}

.block-editor-inserter__mobile-tab-navigation {
  height: 100%;
  padding: 16px
}

.block-editor-inserter__mobile-tab-navigation>* {
  height: 100%
}

@media (min-width:600px) {
  .block-editor-inserter-media-tab-media-preview-inserter-external-image-modal {
    max-width: 480px
  }
}

.block-editor-inserter-media-tab-media-preview-inserter-external-image-modal p {
  margin: 0
}

.block-editor-inserter__hint {
  margin: 16px 16px 0
}

.block-editor-patterns__sync-status-filter .components-input-control__container select.components-select-control__input {
  height: 40px
}

.block-editor-inserter__pattern-panel-placeholder {
  display: none
}

.block-editor-inserter__menu.is-zoom-out {
  display: flex
}

@media (min-width:782px) {
  .block-editor-inserter__menu.is-zoom-out.show-panel:after {
    content: "";
    display: block;
    height: 100%;
    width: 300px
  }
}

@media (max-width:959px) {

  .show-icon-labels .block-editor-block-patterns-explorer .block-editor-patterns__grid-pagination,
  .show-icon-labels .block-editor-block-patterns-explorer .block-editor-patterns__grid-pagination .block-editor-patterns__grid-pagination-next,
  .show-icon-labels .block-editor-block-patterns-explorer .block-editor-patterns__grid-pagination .block-editor-patterns__grid-pagination-previous {
    flex-direction: column
  }
}

.show-icon-labels .block-editor-inserter__category-panel .block-editor-patterns__grid-pagination,
.show-icon-labels .block-editor-inserter__category-panel .block-editor-patterns__grid-pagination .block-editor-patterns__grid-pagination-next,
.show-icon-labels .block-editor-inserter__category-panel .block-editor-patterns__grid-pagination .block-editor-patterns__grid-pagination-previous {
  flex-direction: column
}

.block-editor-tabbed-sidebar__tabpanel .block-editor-inserter__help-text {
  display: none;
  padding: 0 24px 16px
}

@media (min-width:480px) {
  .block-editor-tabbed-sidebar__tabpanel .block-editor-inserter__help-text {
    display: block
  }
}

.spacing-sizes-control .spacing-sizes-control__custom-value-input,
.spacing-sizes-control .spacing-sizes-control__label {
  margin-bottom: 0
}

.spacing-sizes-control .spacing-sizes-control__custom-value-range,
.spacing-sizes-control .spacing-sizes-control__range-control {
  flex: 1;
  margin-bottom: 0
}

.spacing-sizes-control__header {
  height: 16px;
  margin-bottom: 12px
}

.spacing-sizes-control__dropdown {
  height: 24px
}

.spacing-sizes-control__custom-select-control,
.spacing-sizes-control__custom-value-input {
  flex: 1
}

.spacing-sizes-control__custom-toggle,
.spacing-sizes-control__icon {
  flex: 0 0 auto
}

.spacing-sizes-control__icon {
  margin-left: -4px
}

body.admin-color-light {
  --wp-admin-theme-color: #0085ba;
  --wp-admin-theme-color--rgb: 0, 133, 186;
  --wp-admin-theme-color-darker-10: #0073a1;
  --wp-admin-theme-color-darker-10--rgb: 0, 115, 161;
  --wp-admin-theme-color-darker-20: #006187;
  --wp-admin-theme-color-darker-20--rgb: 0, 97, 135;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-light {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-modern {
  --wp-admin-theme-color: #3858e9;
  --wp-admin-theme-color--rgb: 56, 88, 233;
  --wp-admin-theme-color-darker-10: #2145e6;
  --wp-admin-theme-color-darker-10--rgb: 33, 69, 230;
  --wp-admin-theme-color-darker-20: #183ad6;
  --wp-admin-theme-color-darker-20--rgb: 24, 58, 214;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-modern {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-blue {
  --wp-admin-theme-color: #096484;
  --wp-admin-theme-color--rgb: 9, 100, 132;
  --wp-admin-theme-color-darker-10: #07526c;
  --wp-admin-theme-color-darker-10--rgb: 7, 82, 108;
  --wp-admin-theme-color-darker-20: #064054;
  --wp-admin-theme-color-darker-20--rgb: 6, 64, 84;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-blue {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-coffee {
  --wp-admin-theme-color: #46403c;
  --wp-admin-theme-color--rgb: 70, 64, 60;
  --wp-admin-theme-color-darker-10: #383330;
  --wp-admin-theme-color-darker-10--rgb: 56, 51, 48;
  --wp-admin-theme-color-darker-20: #2b2724;
  --wp-admin-theme-color-darker-20--rgb: 43, 39, 36;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-coffee {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-ectoplasm {
  --wp-admin-theme-color: #523f6d;
  --wp-admin-theme-color--rgb: 82, 63, 109;
  --wp-admin-theme-color-darker-10: #46365d;
  --wp-admin-theme-color-darker-10--rgb: 70, 54, 93;
  --wp-admin-theme-color-darker-20: #3a2c4d;
  --wp-admin-theme-color-darker-20--rgb: 58, 44, 77;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-ectoplasm {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-midnight {
  --wp-admin-theme-color: #e14d43;
  --wp-admin-theme-color--rgb: 225, 77, 67;
  --wp-admin-theme-color-darker-10: #dd382d;
  --wp-admin-theme-color-darker-10--rgb: 221, 56, 45;
  --wp-admin-theme-color-darker-20: #d02c21;
  --wp-admin-theme-color-darker-20--rgb: 208, 44, 33;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-midnight {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-ocean {
  --wp-admin-theme-color: #627c83;
  --wp-admin-theme-color--rgb: 98, 124, 131;
  --wp-admin-theme-color-darker-10: #576e74;
  --wp-admin-theme-color-darker-10--rgb: 87, 110, 116;
  --wp-admin-theme-color-darker-20: #4c6066;
  --wp-admin-theme-color-darker-20--rgb: 76, 96, 102;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-ocean {
    --wp-admin-border-width-focus: 1.5px
  }
}

body.admin-color-sunrise {
  --wp-admin-theme-color: #dd823b;
  --wp-admin-theme-color--rgb: 221, 130, 59;
  --wp-admin-theme-color-darker-10: #d97426;
  --wp-admin-theme-color-darker-10--rgb: 217, 116, 38;
  --wp-admin-theme-color-darker-20: #c36922;
  --wp-admin-theme-color-darker-20--rgb: 195, 105, 34;
  --wp-admin-border-width-focus: 2px
}

@media (min-resolution:192dpi) {
  body.admin-color-sunrise {
    --wp-admin-border-width-focus: 1.5px
  }
}

:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color)
}

@media (min-resolution:192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px
  }
}

.reusable-blocks-menu-items__convert-modal {
  z-index: 1000001
}

:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color)
}

@media (min-resolution:192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px
  }
}

.patterns-menu-items__convert-modal {
  z-index: 1000001
}

.patterns-menu-items__convert-modal [role=dialog]>[role=document] {
  width: 350px
}

.patterns-menu-items__convert-modal .patterns-menu-items__convert-modal-categories {
  position: relative
}

.patterns-menu-items__convert-modal .components-form-token-field__suggestions-list:not(:empty) {
  background-color: #fff;
  border: 1px solid var(--wp-admin-theme-color);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  box-shadow: 0 0 .5px .5px var(--wp-admin-theme-color);
  box-sizing: border-box;
  left: -1px;
  max-height: 96px;
  min-width: auto;
  position: absolute;
  width: calc(100% + 2px);
  z-index: 1
}

.patterns-create-modal__name-input input[type=text] {
  margin: 0
}

.patterns-rename-pattern-category-modal__validation-message {
  color: #cc1818
}

@media (min-width:782px) {
  .patterns-rename-pattern-category-modal__validation-message {
    width: 320px
  }
}

.pattern-overrides-control__allow-overrides-button {
  justify-content: center;
  width: 100%
}

.patterns-pattern-overrides-toolbar-indicator__popover .components-popover__content {
  min-width: 260px;
  padding: 16px
}

.patterns-pattern-overrides-toolbar-indicator .patterns-pattern-overrides-toolbar-indicator-icon.has-colors svg {
  fill: var(--wp-block-synced-color)
}

.editor-collapsible-block-toolbar .patterns-pattern-overrides-toolbar-indicator {
  height: 32px
}

:root {
  --wp-admin-theme-color: #007cba;
  --wp-admin-theme-color--rgb: 0, 124, 186;
  --wp-admin-theme-color-darker-10: #006ba1;
  --wp-admin-theme-color-darker-10--rgb: 0, 107, 161;
  --wp-admin-theme-color-darker-20: #005a87;
  --wp-admin-theme-color-darker-20--rgb: 0, 90, 135;
  --wp-admin-border-width-focus: 2px;
  --wp-block-synced-color: #7a00df;
  --wp-block-synced-color--rgb: 122, 0, 223;
  --wp-bound-block-color: var(--wp-block-synced-color)
}

@media (min-resolution:192dpi) {
  :root {
    --wp-admin-border-width-focus: 1.5px
  }
}

.interface-complementary-area-header {
  background: #fff;
  gap: 4px;
  padding-right: 8px
}

.interface-complementary-area-header .interface-complementary-area-header__title {
  margin: 0 auto 0 0
}

.interface-complementary-area {
  background: #fff;
  color: #1e1e1e;
  height: 100%;
  overflow: auto
}

@media (min-width:600px) {
  .interface-complementary-area {
    -webkit-overflow-scrolling: touch
  }
}

@media (min-width:782px) {
  .interface-complementary-area {
    width: 280px
  }
}

.interface-complementary-area .components-panel {
  border: none;
  position: relative;
  z-index: 0
}

.interface-complementary-area .components-panel__header {
  position: sticky;
  top: 0;
  z-index: 1
}

.interface-complementary-area .components-panel__header.editor-sidebar__panel-tabs {
  top: 0
}

.interface-complementary-area p:not(.components-base-control__help, .components-form-token-field__help) {
  margin-top: 0
}

.interface-complementary-area h2 {
  color: #1e1e1e;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1.5em
}

.interface-complementary-area h3 {
  color: #1e1e1e;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 1.5em;
  text-transform: uppercase
}

.interface-complementary-area hr {
  border-bottom: 1px solid #f0f0f0;
  border-top: none;
  margin: 1.5em 0
}

.interface-complementary-area div.components-toolbar,
.interface-complementary-area div.components-toolbar-group {
  box-shadow: none;
  margin-bottom: 1.5em
}

.interface-complementary-area div.components-toolbar-group:last-child,
.interface-complementary-area div.components-toolbar:last-child {
  margin-bottom: 0
}

.interface-complementary-area .block-editor-skip-to-selected-block:focus {
  bottom: 10px;
  left: auto;
  right: 10px;
  top: auto
}

.interface-complementary-area__fill {
  height: 100%
}

@media (min-width:782px) {
  body.js.is-fullscreen-mode {
    height: calc(100% + 32px);
    margin-top: -32px
  }

  body.js.is-fullscreen-mode #adminmenumain,
  body.js.is-fullscreen-mode #wpadminbar {
    display: none
  }

  body.js.is-fullscreen-mode #wpcontent,
  body.js.is-fullscreen-mode #wpfooter {
    margin-left: 0
  }
}

html.interface-interface-skeleton__html-container {
  position: fixed;
  width: 100%
}

@media (min-width:782px) {
  html.interface-interface-skeleton__html-container:not(:has(.is-zoom-out)) {
    position: static;
    width: auto
  }
}

.interface-interface-skeleton {
  bottom: 0;
  display: flex;
  flex-direction: row;
  height: auto;
  max-height: 100%;
  position: fixed;
  right: 0;
  top: 46px
}

@media (min-width:783px) {
  .interface-interface-skeleton {
    top: 32px
  }

  .is-fullscreen-mode .interface-interface-skeleton {
    top: 0
  }
}

.interface-interface-skeleton__editor {
  display: flex;
  flex: 0 1 100%;
  flex-direction: column;
  overflow: hidden
}

.interface-interface-skeleton {
  left: 0
}

@media (min-width:783px) {
  .interface-interface-skeleton {
    left: 160px
  }
}

@media (min-width:783px) {
  .auto-fold .interface-interface-skeleton {
    left: 36px
  }
}

@media (min-width:961px) {
  .auto-fold .interface-interface-skeleton {
    left: 160px
  }
}

.folded .interface-interface-skeleton {
  left: 0
}

@media (min-width:783px) {
  .folded .interface-interface-skeleton {
    left: 36px
  }
}

body.is-fullscreen-mode .interface-interface-skeleton {
  left: 0 !important
}

.interface-interface-skeleton__body {
  display: flex;
  flex-grow: 1;
  overflow: auto;
  overscroll-behavior-y: none;
  position: relative
}

@media (min-width:782px) {
  .has-footer .interface-interface-skeleton__body {
    padding-bottom: 25px
  }
}

.interface-interface-skeleton__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
  z-index: 20
}

@media (min-width:782px) {
  .interface-interface-skeleton__content {
    z-index: auto
  }
}

.interface-interface-skeleton__secondary-sidebar,
.interface-interface-skeleton__sidebar {
  background: #fff;
  bottom: 0;
  color: #1e1e1e;
  flex-shrink: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: auto;
  z-index: 100000
}

@media (min-width:782px) {

  .interface-interface-skeleton__secondary-sidebar,
  .interface-interface-skeleton__sidebar {
    position: relative !important
  }
}

.interface-interface-skeleton__sidebar {
  border-top: 1px solid #e0e0e0;
  overflow: hidden
}

@media (min-width:782px) {
  .interface-interface-skeleton__sidebar {
    box-shadow: -1px 0 0 0 rgba(0, 0, 0, .133);
    outline: 1px solid #0000
  }
}

.interface-interface-skeleton__secondary-sidebar {
  border-top: 1px solid #e0e0e0;
  right: 0
}

@media (min-width:782px) {
  .interface-interface-skeleton__secondary-sidebar {
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, .133);
    outline: 1px solid #0000
  }
}

.interface-interface-skeleton__header {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .133);
  color: #1e1e1e;
  flex-shrink: 0;
  height: auto;
  outline: 1px solid #0000;
  z-index: 30
}

.interface-interface-skeleton__footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  bottom: 0;
  color: #1e1e1e;
  display: none;
  flex-shrink: 0;
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 90
}

@media (min-width:782px) {
  .interface-interface-skeleton__footer {
    display: flex
  }
}

.interface-interface-skeleton__footer .block-editor-block-breadcrumb {
  align-items: center;
  background: #fff;
  display: flex;
  font-size: 13px;
  height: 24px;
  padding: 0 18px;
  z-index: 30
}

.interface-interface-skeleton__actions {
  background: #fff;
  bottom: auto;
  color: #1e1e1e;
  left: auto;
  position: fixed !important;
  right: 0;
  top: -9999em;
  width: 100vw;
  z-index: 100000
}

@media (min-width:782px) {
  .interface-interface-skeleton__actions {
    width: 280px
  }
}

.interface-interface-skeleton__actions:focus,
.interface-interface-skeleton__actions:focus-within {
  bottom: 0;
  top: auto
}

.is-entity-save-view-open .interface-interface-skeleton__actions:focus,
.is-entity-save-view-open .interface-interface-skeleton__actions:focus-within {
  top: 46px
}

@media (min-width:782px) {

  .is-entity-save-view-open .interface-interface-skeleton__actions:focus,
  .is-entity-save-view-open .interface-interface-skeleton__actions:focus-within {
    border-left: 1px solid #ddd;
    top: 32px
  }

  .is-fullscreen-mode .is-entity-save-view-open .interface-interface-skeleton__actions:focus,
  .is-fullscreen-mode .is-entity-save-view-open .interface-interface-skeleton__actions:focus-within {
    top: 0
  }
}

.interface-pinned-items {
  display: flex;
  gap: 8px
}

.interface-pinned-items .components-button {
  display: none;
  margin: 0
}

.interface-pinned-items .components-button[aria-controls="edit-post:block"],
.interface-pinned-items .components-button[aria-controls="edit-post:document"],
.interface-pinned-items .components-button[aria-controls="edit-site:block-inspector"],
.interface-pinned-items .components-button[aria-controls="edit-site:template"] {
  display: flex
}

.interface-pinned-items .components-button svg {
  max-height: 24px;
  max-width: 24px
}

@media (min-width:600px) {
  .interface-pinned-items .components-button {
    display: flex
  }
}

.editor-autocompleters__user .editor-autocompleters__no-avatar:before {
  content: "\f110";
  font: normal 20px/1 dashicons;
  margin-right: 5px;
  vertical-align: middle
}

.editor-autocompleters__user .editor-autocompleters__user-avatar {
  flex-grow: 0;
  flex-shrink: 0;
  height: 24px;
  margin-right: 8px;
  max-width: none;
  width: 24px
}

.editor-autocompleters__user .editor-autocompleters__user-name {
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.editor-autocompleters__user .editor-autocompleters__user-slug {
  color: #757575;
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 8px;
  max-width: 100px;
  overflow: none;
  text-overflow: ellipsis;
  white-space: nowrap
}

.editor-autocompleters__user:hover .editor-autocompleters__user-slug {
  color: var(--wp-admin-theme-color)
}

.interface-interface-skeleton__sidebar:has(.editor-collab-sidebar) {
  box-shadow: none
}

.interface-interface-skeleton__sidebar:has(.editor-collab-sidebar) .interface-complementary-area-header {
  display: none
}

.editor-collab-sidebar {
  height: 100%
}

.editor-collab-sidebar-panel {
  height: 100%;
  padding: 16px
}

.editor-collab-sidebar-panel__thread {
  background-color: #f0f0f0;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px;
  position: relative
}

.editor-collab-sidebar-panel__active-thread {
  border: 1.5px solid #3858e9
}

.editor-collab-sidebar-panel__focus-thread {
  background-color: #fff;
  border: 1.5px solid #3858e9;
  box-shadow: 0 5.5px 7.8px -.3px rgba(0, 0, 0, .102)
}

.editor-collab-sidebar-panel__comment-field {
  flex: 1
}

.editor-collab-sidebar-panel__child-thread {
  margin-top: 15px
}

.editor-collab-sidebar-panel__user-name {
  text-transform: capitalize
}

.editor-collab-sidebar-panel__user-name,
.editor-collab-sidebar-panel__user-time {
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left
}

.editor-collab-sidebar-panel__user-comment {
  color: #1e1e1e;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-align: left
}

.editor-collab-sidebar-panel__user-comment p {
  margin-bottom: 0
}

.editor-collab-sidebar-panel__user-avatar {
  border-radius: 50%;
  flex-shrink: 0
}

.editor-collab-sidebar-panel__thread-overlay {
  background-color: #000000b3;
  border-radius: 8px;
  color: #fff;
  height: 100%;
  left: 0;
  padding: 15px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1
}

.editor-collab-sidebar-panel__thread-overlay p {
  margin-bottom: 15px
}

.editor-collab-sidebar-panel__thread-overlay button {
  color: #fff;
  padding: 4px 10px
}

.editor-collab-sidebar-panel__comment-status {
  margin-left: auto
}

.editor-collab-sidebar-panel__comment-status button.has-icon:not(.has-text) {
  flex-shrink: 0;
  height: 24px;
  min-width: 24px;
  padding: 0;
  width: 24px
}

.editor-collab-sidebar-panel__comment-dropdown-menu {
  flex-shrink: 0
}

.editor-collab-sidebar-panel__comment-dropdown-menu button.has-icon {
  height: 24px;
  min-width: 24px;
  padding: 0;
  width: 24px
}

.editor-collab-sidebar-panel__show-more-reply {
  font-style: italic;
  font-weight: 500;
  padding: 0
}

.editor-collapsible-block-toolbar {
  align-items: center;
  display: flex;
  height: 60px;
  overflow: hidden
}

.editor-collapsible-block-toolbar .block-editor-block-contextual-toolbar {
  background: #0000;
  border-bottom: 0;
  height: 100%
}

.editor-collapsible-block-toolbar .block-editor-block-toolbar {
  height: 100%;
  padding-top: 15px
}

.editor-collapsible-block-toolbar .block-editor-block-toolbar .components-button:not(.block-editor-block-mover-button) {
  height: 32px
}

.editor-collapsible-block-toolbar:after {
  background-color: #ddd;
  content: "";
  height: 24px;
  margin-right: 7px;
  width: 1px
}

.editor-collapsible-block-toolbar .components-toolbar,
.editor-collapsible-block-toolbar .components-toolbar-group {
  border-right: none;
  position: relative
}

.editor-collapsible-block-toolbar .components-toolbar-group:after,
.editor-collapsible-block-toolbar .components-toolbar:after {
  background-color: #ddd;
  content: "";
  height: 24px;
  position: absolute;
  right: -1px;
  top: 4px;
  width: 1px
}

.editor-collapsible-block-toolbar .components-toolbar .components-toolbar-group.components-toolbar-group:after,
.editor-collapsible-block-toolbar .components-toolbar-group .components-toolbar-group.components-toolbar-group:after {
  display: none
}

.editor-collapsible-block-toolbar .block-editor-block-mover.is-horizontal .block-editor-block-mover-button {
  height: 32px;
  overflow: visible
}

@media (min-width:600px) {
  .editor-collapsible-block-toolbar .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__move-button-container {
    height: 40px;
    position: relative;
    top: -5px
  }
}

.editor-collapsible-block-toolbar.is-collapsed {
  display: none
}

.editor-content-only-settings-menu__description {
  min-width: 235px;
  padding: 8px
}

.editor-blog-title-dropdown__content .components-popover__content {
  min-width: 320px;
  padding: 16px
}

.editor-document-bar {
  align-items: center;
  background: #f0f0f0;
  border-radius: 4px;
  display: flex;
  height: 32px;
  justify-content: space-between;
  min-width: 0;
  width: min(100%, 450px)
}

.editor-document-bar:hover {
  background-color: #e0e0e0
}

.editor-document-bar .components-button {
  border-radius: 4px
}

@media not (prefers-reduced-motion) {
  .editor-document-bar .components-button {
    transition: all .1s ease-out
  }
}

.editor-document-bar .components-button:hover {
  background: #e0e0e0
}

@media screen and (min-width:782px) and (max-width:960px) {
  .editor-document-bar.has-back-button .editor-document-bar__post-type-label {
    display: none
  }
}

.editor-document-bar__command {
  color: var(--wp-block-synced-color);
  flex-grow: 1;
  overflow: hidden
}

.editor-document-bar__title {
  color: #1e1e1e;
  margin: 0 auto;
  max-width: 70%;
  overflow: hidden
}

@media (min-width:782px) {
  .editor-document-bar__title {
    padding-left: 24px
  }
}

.editor-document-bar__title h1 {
  align-items: center;
  display: flex;
  font-weight: 400;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap
}

.editor-document-bar__post-title {
  color: currentColor;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis
}

.editor-document-bar__post-type-label {
  color: #2f2f2f;
  flex: 0;
  padding-left: 4px
}

@media screen and (max-width:600px) {
  .editor-document-bar__post-type-label {
    display: none
  }
}

.editor-document-bar__shortcut {
  color: #2f2f2f;
  display: none;
  min-width: 24px
}

@media (min-width:782px) {
  .editor-document-bar__shortcut {
    display: initial
  }
}

.editor-document-bar__back.components-button.has-icon.has-text {
  color: #757575;
  flex-shrink: 0;
  gap: 0;
  min-width: 36px;
  position: absolute;
  z-index: 1
}

.editor-document-bar__back.components-button.has-icon.has-text:hover {
  background-color: initial;
  color: #1e1e1e
}

.editor-document-bar__icon-layout.editor-document-bar__icon-layout {
  display: none;
  margin-left: 12px;
  pointer-events: none;
  position: absolute
}

.editor-document-bar__icon-layout.editor-document-bar__icon-layout svg {
  fill: #949494
}

@media (min-width:600px) {
  .editor-document-bar__icon-layout.editor-document-bar__icon-layout {
    display: flex
  }
}

.document-outline {
  margin: 20px 0
}

.document-outline ul {
  margin: 0;
  padding: 0
}

.document-outline__item {
  display: flex;
  margin: 4px 0
}

.document-outline__item a {
  text-decoration: none
}

.document-outline__item .document-outline__emdash:before {
  color: #ddd;
  margin-right: 4px
}

.document-outline__item.is-h2 .document-outline__emdash:before {
  content: "â€”"
}

.document-outline__item.is-h3 .document-outline__emdash:before {
  content: "â€”â€”"
}

.document-outline__item.is-h4 .document-outline__emdash:before {
  content: "â€”â€”â€”"
}

.document-outline__item.is-h5 .document-outline__emdash:before {
  content: "â€”â€”â€”â€”"
}

.document-outline__item.is-h6 .document-outline__emdash:before {
  content: "â€”â€”â€”â€”â€”"
}

.document-outline__button {
  align-items: flex-start;
  background: none;
  border: none;
  border-radius: 2px;
  color: #1e1e1e;
  cursor: pointer;
  display: flex;
  margin: 0 0 0 -1px;
  padding: 2px 5px 2px 1px;
  text-align: left
}

.document-outline__button:disabled,
.document-outline__button[aria-disabled=true] {
  color: #757575;
  cursor: default
}

.document-outline__button:focus {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.document-outline__level {
  background: #ddd;
  border-radius: 3px;
  color: #1e1e1e;
  font-size: 13px;
  margin-right: 4px;
  padding: 1px 6px
}

.is-invalid .document-outline__level {
  background: #f0b849
}

.document-outline__item-content {
  padding: 1px 0
}

.editor-document-outline.has-no-headings {
  color: #757575;
  text-align: center
}

.editor-document-outline.has-no-headings>svg {
  margin-top: 28px
}

.editor-document-outline.has-no-headings>p {
  padding-left: 32px;
  padding-right: 32px
}

.editor-document-tools {
  align-items: center;
  display: inline-flex
}

.editor-document-tools .editor-document-tools__left>.editor-history__redo,
.editor-document-tools .editor-document-tools__left>.editor-history__undo {
  display: none
}

@media (min-width:782px) {

  .editor-document-tools .editor-document-tools__left>.editor-history__redo,
  .editor-document-tools .editor-document-tools__left>.editor-history__undo {
    display: inline-flex
  }
}

.editor-document-tools .editor-document-tools__left>.editor-document-tools__inserter-toggle {
  display: inline-flex
}

@media not (prefers-reduced-motion) {
  .editor-document-tools .editor-document-tools__left>.editor-document-tools__inserter-toggle svg {
    transition: transform .2s cubic-bezier(.165, .84, .44, 1)
  }
}

.editor-document-tools .editor-document-tools__left>.editor-document-tools__inserter-toggle.is-pressed svg {
  transform: rotate(45deg)
}

.editor-document-tools .block-editor-list-view {
  display: none
}

@media (min-width:600px) {
  .editor-document-tools .block-editor-list-view {
    display: flex
  }
}

.editor-document-tools .editor-document-tools__left>.components-button.has-icon,
.editor-document-tools .editor-document-tools__left>.components-dropdown>.components-button.has-icon {
  height: 32px;
  min-width: 32px;
  padding: 4px
}

.editor-document-tools .editor-document-tools__left>.components-button.has-icon.is-pressed,
.editor-document-tools .editor-document-tools__left>.components-dropdown>.components-button.has-icon.is-pressed {
  background: #1e1e1e
}

.editor-document-tools .editor-document-tools__left>.components-button.has-icon:focus:not(:disabled),
.editor-document-tools .editor-document-tools__left>.components-dropdown>.components-button.has-icon:focus:not(:disabled) {
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color), inset 0 0 0 1px #fff;
  outline: 1px solid #0000
}

.editor-document-tools .editor-document-tools__left>.components-button.has-icon:before,
.editor-document-tools .editor-document-tools__left>.components-dropdown>.components-button.has-icon:before {
  display: none
}

.editor-document-tools__left {
  align-items: center;
  display: inline-flex;
  gap: 8px
}

.editor-document-tools__left:not(:last-child) {
  margin-inline-end: 8px
}

.show-icon-labels .editor-document-tools .editor-document-tools__left>.editor-document-tools__inserter-toggle.has-icon {
  padding: 0 8px;
  width: auto
}

.show-icon-labels .editor-document-tools__left>*+* {
  margin-left: 8px
}

.editor-editor-interface .entities-saved-states__panel-header {
  height: 61px
}

.editor-editor-interface .interface-interface-skeleton__content {
  isolation: isolate
}

.editor-visual-editor {
  flex: 1 0 auto
}

.components-editor-notices__dismissible,
.components-editor-notices__pinned {
  color: #1e1e1e;
  left: 0;
  position: relative;
  right: 0;
  top: 0
}

.components-editor-notices__dismissible .components-notice,
.components-editor-notices__pinned .components-notice {
  border-bottom: 1px solid #0003;
  box-sizing: border-box;
  min-height: 60px;
  padding: 0 12px
}

.components-editor-notices__dismissible .components-notice .components-notice__dismiss,
.components-editor-notices__pinned .components-notice .components-notice__dismiss {
  margin-top: 12px
}

.entities-saved-states__panel-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  height: 60px;
  padding-left: 16px;
  padding-right: 16px
}

.entities-saved-states__text-prompt {
  padding: 16px 16px 4px
}

.entities-saved-states__text-prompt .entities-saved-states__text-prompt--header {
  display: block;
  margin-bottom: 12px
}

.entities-saved-states__panel.is-inline .entities-saved-states__text-prompt {
  padding: 0
}

.entities-saved-states__panel.is-inline .entities-saved-states__panel-body {
  border: 0;
  padding-left: 0;
  padding-right: 0
}

.entities-saved-states__panel.is-inline .entities-saved-states__panel-body>h2 {
  margin-bottom: 0;
  margin-left: -16px;
  margin-right: -16px
}

.entities-saved-states__panel.is-inline .entities-saved-states__panel-body>h2 button {
  font-size: 11px;
  text-transform: uppercase
}

.entities-saved-states__panel.is-inline .entities-saved-states__text-prompt--header-wrapper {
  display: none
}

.entities-saved-states__panel.is-inline .entities-saved-states__text-prompt--changes-count {
  margin-bottom: 8px;
  margin-top: 0
}

.entities-saved-states__panel.is-inline .entities-saved-states__panel-footer {
  margin-top: 16px
}

.entities-saved-states__change-control {
  flex: 1
}

.entities-saved-states__changes {
  font-size: 13px;
  list-style: disc;
  margin: 4px 16px 0 24px
}

.entities-saved-states__changes li {
  margin-bottom: 4px
}

.editor-error-boundary {
  background-color: #fff;
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  box-shadow: 0 5px 15px #00000014, 0 15px 27px #00000012, 0 30px 36px #0000000a, 0 50px 43px #00000005;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  margin: 60px auto auto;
  max-width: 780px;
  padding: 1em
}

.editor-header {
  align-items: center;
  background: #fff;
  display: grid;
  grid-auto-flow: row;
  grid-template: auto/60px minmax(0, max-content) minmax(min-content, 1fr) 60px;
  height: 60px;
  justify-content: space-between;
  max-width: 100vw
}

.editor-header:has(>.editor-header__center) {
  grid-template: auto/60px min-content 1fr min-content 60px
}

@media (min-width:782px) {
  .editor-header:has(>.editor-header__center) {
    grid-template: auto/60px minmax(min-content, 2fr) 2.5fr minmax(min-content, 2fr) 60px
  }
}

@media (min-width:480px) {
  .editor-header {
    gap: 16px
  }
}

@media (min-width:280px) {
  .editor-header {
    flex-wrap: nowrap
  }
}

.editor-header__toolbar {
  align-items: center;
  clip-path: inset(-2px);
  display: flex;
  grid-column: 1/3;
  min-width: 0
}

.editor-header__toolbar>:first-child {
  margin-inline: 16px 0
}

.editor-header__back-button+.editor-header__toolbar {
  grid-column: 2/3
}

@media (min-width:480px) {
  .editor-header__back-button+.editor-header__toolbar>:first-child {
    margin-inline: 0
  }

  .editor-header__toolbar {
    clip-path: none
  }
}

.editor-header__toolbar .table-of-contents {
  display: none
}

@media (min-width:600px) {
  .editor-header__toolbar .table-of-contents {
    display: block
  }
}

.editor-header__toolbar .editor-collapsible-block-toolbar,
.editor-header__toolbar .editor-collapsible-block-toolbar.is-collapsed~.editor-collapsible-block-toolbar__toggle {
  margin-inline: 8px 0
}

.editor-header__center {
  align-items: center;
  clip-path: inset(-2px);
  display: flex;
  grid-column: 3/4;
  justify-content: center;
  min-width: 0
}

@media (max-width:479px) {
  .editor-header__center>:first-child {
    margin-inline-start: 8px
  }

  .editor-header__center>:last-child {
    margin-inline-end: 8px
  }
}

.editor-header__settings {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 8px;
  grid-column: 3/-1;
  justify-self: end;
  padding-right: 4px
}

.editor-header:has(>.editor-header__center) .editor-header__settings {
  grid-column: 4/-1
}

@media (min-width:600px) {
  .editor-header__settings {
    padding-right: 8px
  }
}

.show-icon-labels .editor-header .components-button.has-icon,
.show-icon-labels.interface-pinned-items .components-button.has-icon {
  width: auto
}

.show-icon-labels .editor-header .components-button.has-icon svg,
.show-icon-labels.interface-pinned-items .components-button.has-icon svg {
  display: none
}

.show-icon-labels .editor-header .components-button.has-icon:after,
.show-icon-labels.interface-pinned-items .components-button.has-icon:after {
  content: attr(aria-label);
  white-space: nowrap
}

.show-icon-labels .editor-header .components-button.has-icon[aria-disabled=true],
.show-icon-labels.interface-pinned-items .components-button.has-icon[aria-disabled=true] {
  background-color: initial
}

.show-icon-labels .editor-header .is-tertiary:active,
.show-icon-labels.interface-pinned-items .is-tertiary:active {
  background-color: initial;
  box-shadow: 0 0 0 1.5px var(--wp-admin-theme-color)
}

.show-icon-labels .editor-header .components-button.has-icon.button-toggle svg,
.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle svg {
  display: block
}

.show-icon-labels .editor-header .components-button.has-icon.button-toggle:after,
.show-icon-labels.interface-pinned-items .components-button.has-icon.button-toggle:after {
  content: none
}

.show-icon-labels .editor-header .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon,
.show-icon-labels.interface-pinned-items .components-menu-items-choice .components-menu-items__item-icon.components-menu-items__item-icon {
  display: block
}

.show-icon-labels .editor-header .editor-document-tools__inserter-toggle.editor-document-tools__inserter-toggle,
.show-icon-labels .editor-header .interface-pinned-items .components-button,
.show-icon-labels.interface-pinned-items .editor-document-tools__inserter-toggle.editor-document-tools__inserter-toggle,
.show-icon-labels.interface-pinned-items .interface-pinned-items .components-button {
  padding-left: 8px;
  padding-right: 8px
}

@media (min-width:600px) {

  .show-icon-labels .editor-header .editor-document-tools__inserter-toggle.editor-document-tools__inserter-toggle,
  .show-icon-labels .editor-header .interface-pinned-items .components-button,
  .show-icon-labels.interface-pinned-items .editor-document-tools__inserter-toggle.editor-document-tools__inserter-toggle,
  .show-icon-labels.interface-pinned-items .interface-pinned-items .components-button {
    padding-left: 12px;
    padding-right: 12px
  }
}

.show-icon-labels .editor-header .editor-post-save-draft.editor-post-save-draft:after,
.show-icon-labels .editor-header .editor-post-saved-state.editor-post-saved-state:after,
.show-icon-labels.interface-pinned-items .editor-post-save-draft.editor-post-save-draft:after,
.show-icon-labels.interface-pinned-items .editor-post-saved-state.editor-post-saved-state:after {
  content: none
}

.show-icon-labels .editor-header__toolbar .block-editor-block-mover {
  border-left: none
}

.show-icon-labels .editor-header__toolbar .block-editor-block-mover:before {
  background-color: #ddd;
  content: "";
  height: 24px;
  margin-left: 8px;
  margin-top: 4px;
  width: 1px
}

.show-icon-labels .editor-header__toolbar .block-editor-block-mover .block-editor-block-mover__move-button-container:before {
  background: #ddd;
  left: calc(50% + 1px);
  width: calc(100% - 24px)
}

.show-icon-labels.interface-pinned-items {
  border-bottom: 1px solid #ccc;
  display: block;
  margin: 0 -12px;
  padding: 6px 12px 12px
}

.show-icon-labels.interface-pinned-items>.components-button.has-icon {
  justify-content: flex-start;
  margin: 0;
  padding: 6px 6px 6px 8px;
  width: 14.625rem
}

.show-icon-labels.interface-pinned-items>.components-button.has-icon[aria-expanded=true] svg {
  display: block;
  max-width: 24px
}

.show-icon-labels.interface-pinned-items>.components-button.has-icon[aria-expanded=false] {
  padding-left: 40px
}

.show-icon-labels.interface-pinned-items>.components-button.has-icon svg {
  margin-right: 8px
}

@media (min-width:480px) {
  .editor-header__post-preview-button {
    display: none
  }
}

.editor-editor-interface.is-distraction-free .interface-interface-skeleton__header {
  border-bottom: none
}

.editor-editor-interface.is-distraction-free .editor-header {
  background-color: #fff;
  width: 100%
}

@media (min-width:782px) {
  .editor-editor-interface.is-distraction-free .editor-header {
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .133);
    position: absolute
  }
}

.editor-editor-interface.is-distraction-free .editor-header>.edit-post-header__settings>.edit-post-header__post-preview-button {
  visibility: hidden
}

.editor-editor-interface.is-distraction-free .editor-header>.editor-header__settings>.editor-preview-dropdown,
.editor-editor-interface.is-distraction-free .editor-header>.editor-header__settings>.editor-zoom-out-toggle,
.editor-editor-interface.is-distraction-free .editor-header>.editor-header__settings>.interface-pinned-items,
.editor-editor-interface.is-distraction-free .editor-header>.editor-header__toolbar .editor-document-tools__document-overview-toggle {
  display: none
}

.editor-editor-interface.is-distraction-free .interface-interface-skeleton__header:focus-within {
  opacity: 1 !important
}

.editor-editor-interface.is-distraction-free .interface-interface-skeleton__header:focus-within div {
  transform: translateX(0) translateZ(0) !important
}

.editor-editor-interface.is-distraction-free .components-editor-notices__dismissible {
  position: absolute;
  z-index: 35
}

.components-popover.more-menu-dropdown__content {
  z-index: 99998
}

.editor-inserter-sidebar {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%
}

.editor-inserter-sidebar *,
.editor-inserter-sidebar :after,
.editor-inserter-sidebar :before {
  box-sizing: inherit
}

.editor-inserter-sidebar__content {
  height: 100%
}

.editor-keyboard-shortcut-help-modal__section {
  margin: 0 0 2rem
}

.editor-keyboard-shortcut-help-modal__section-title {
  font-size: .9rem;
  font-weight: 600
}

.editor-keyboard-shortcut-help-modal__shortcut {
  align-items: baseline;
  border-top: 1px solid #ddd;
  display: flex;
  margin-bottom: 0;
  padding: .6rem 0
}

.editor-keyboard-shortcut-help-modal__shortcut:last-child {
  border-bottom: 1px solid #ddd
}

.editor-keyboard-shortcut-help-modal__shortcut:empty {
  display: none
}

.editor-keyboard-shortcut-help-modal__shortcut-term {
  font-weight: 600;
  margin: 0 0 0 1rem;
  text-align: right
}

.editor-keyboard-shortcut-help-modal__shortcut-description {
  flex: 1;
  margin: 0
}

.editor-keyboard-shortcut-help-modal__shortcut-key-combination {
  background: none;
  display: block;
  margin: 0;
  padding: 0
}

.editor-keyboard-shortcut-help-modal__shortcut-key-combination+.editor-keyboard-shortcut-help-modal__shortcut-key-combination {
  margin-top: 10px
}

.editor-keyboard-shortcut-help-modal__shortcut-key {
  border-radius: 8%;
  margin: 0 .2rem;
  padding: .25rem .5rem
}

.editor-keyboard-shortcut-help-modal__shortcut-key:last-child {
  margin: 0 0 0 .2rem
}

.editor-list-view-sidebar {
  height: 100%
}

@media (min-width:782px) {
  .editor-list-view-sidebar {
    width: 350px
  }
}

.editor-list-view-sidebar__list-view-container>.document-outline,
.editor-list-view-sidebar__list-view-panel-content {
  height: 100%;
  overflow: auto;
  padding: 4px;
  scrollbar-color: #0000 #0000;
  scrollbar-gutter: stable both-edges;
  scrollbar-gutter: auto;
  scrollbar-width: thin;
  will-change: transform
}

.editor-list-view-sidebar__list-view-container>.document-outline::-webkit-scrollbar,
.editor-list-view-sidebar__list-view-panel-content::-webkit-scrollbar {
  height: 12px;
  width: 12px
}

.editor-list-view-sidebar__list-view-container>.document-outline::-webkit-scrollbar-track,
.editor-list-view-sidebar__list-view-panel-content::-webkit-scrollbar-track {
  background-color: initial
}

.editor-list-view-sidebar__list-view-container>.document-outline::-webkit-scrollbar-thumb,
.editor-list-view-sidebar__list-view-panel-content::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: initial;
  border: 3px solid #0000;
  border-radius: 8px
}

.editor-list-view-sidebar__list-view-container>.document-outline:focus-within::-webkit-scrollbar-thumb,
.editor-list-view-sidebar__list-view-container>.document-outline:focus::-webkit-scrollbar-thumb,
.editor-list-view-sidebar__list-view-container>.document-outline:hover::-webkit-scrollbar-thumb,
.editor-list-view-sidebar__list-view-panel-content:focus-within::-webkit-scrollbar-thumb,
.editor-list-view-sidebar__list-view-panel-content:focus::-webkit-scrollbar-thumb,
.editor-list-view-sidebar__list-view-panel-content:hover::-webkit-scrollbar-thumb {
  background-color: #949494
}

.editor-list-view-sidebar__list-view-container>.document-outline:focus,
.editor-list-view-sidebar__list-view-container>.document-outline:focus-within,
.editor-list-view-sidebar__list-view-container>.document-outline:hover,
.editor-list-view-sidebar__list-view-panel-content:focus,
.editor-list-view-sidebar__list-view-panel-content:focus-within,
.editor-list-view-sidebar__list-view-panel-content:hover {
  scrollbar-color: #949494 #0000
}

@media (hover:none) {

  .editor-list-view-sidebar__list-view-container>.document-outline,
  .editor-list-view-sidebar__list-view-panel-content {
    scrollbar-color: #949494 #0000
  }
}

.editor-list-view-sidebar__list-view-container {
  display: flex;
  flex-direction: column;
  height: 100%
}

.editor-list-view-sidebar__tab-panel {
  height: 100%
}

.editor-list-view-sidebar__outline {
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px
}

.editor-list-view-sidebar__outline>div>span:first-child {
  display: inline-block;
  width: 90px
}

.editor-list-view-sidebar__outline>div>span {
  color: #757575;
  font-size: 12px;
  line-height: 1.4
}

.editor-post-order__panel,
.editor-post-parent__panel {
  padding-top: 8px
}

.editor-post-order__panel .editor-post-panel__row-control>div,
.editor-post-parent__panel .editor-post-panel__row-control>div {
  width: 100%
}

.editor-post-order__panel-dialog .editor-post-order,
.editor-post-order__panel-dialog .editor-post-parent,
.editor-post-parent__panel-dialog .editor-post-order,
.editor-post-parent__panel-dialog .editor-post-parent {
  margin: 8px
}

.editor-post-order__panel-dialog .components-popover__content,
.editor-post-parent__panel-dialog .components-popover__content {
  min-width: 320px
}

.editor-post-author__panel {
  padding-top: 8px
}

.editor-post-author__panel .editor-post-panel__row-control>div {
  width: 100%
}

.editor-post-author__panel-dialog .editor-post-author {
  margin: 8px;
  min-width: 248px
}

.editor-action-modal {
  z-index: 1000001
}

.editor-post-card-panel__content {
  flex-grow: 1
}

.editor-post-card-panel__title {
  width: 100%
}

.editor-post-card-panel__title.editor-post-card-panel__title {
  align-items: center;
  column-gap: 8px;
  display: flex;
  flex-wrap: wrap;
  font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  row-gap: 4px;
  word-break: break-word
}

.editor-post-card-panel__icon {
  flex: 0 0 24px;
  height: 24px;
  width: 24px
}

.editor-post-card-panel__header {
  display: flex;
  justify-content: space-between
}

.editor-post-card-panel.has-description .editor-post-card-panel__header {
  margin-bottom: 8px
}

.editor-post-card-panel .editor-post-card-panel__title-name {
  padding: 2px 0
}

.editor-post-card-panel .editor-post-card-panel__description,
.editor-post-content-information {
  color: #757575
}

.editor-post-content-information .components-text {
  color: inherit
}

.editor-post-discussion__panel-dialog .editor-post-discussion {
  margin: 8px;
  min-width: 248px
}

.editor-post-discussion__panel-toggle .components-text {
  color: inherit
}

.editor-post-discussion__panel-dialog .components-popover__content {
  min-width: 320px
}

.editor-post-excerpt__textarea {
  margin-bottom: 10px;
  width: 100%
}

.editor-post-excerpt__dropdown__content .components-popover__content {
  min-width: 320px;
  padding: 16px
}

.editor-post-featured-image {
  padding: 0
}

.editor-post-featured-image .components-spinner {
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  position: absolute;
  top: 50%
}

.editor-post-featured-image__container {
  position: relative
}

.editor-post-featured-image__container:focus .editor-post-featured-image__actions:not(.editor-post-featured-image__actions-is-requesting-image),
.editor-post-featured-image__container:focus-within .editor-post-featured-image__actions:not(.editor-post-featured-image__actions-is-requesting-image),
.editor-post-featured-image__container:hover .editor-post-featured-image__actions:not(.editor-post-featured-image__actions-is-requesting-image) {
  opacity: 1
}

.editor-post-featured-image__container .editor-post-featured-image__actions.editor-post-featured-image__actions-missing-image {
  margin-top: 16px;
  opacity: 1
}

.editor-post-featured-image__container .components-drop-zone__content {
  border-radius: 2px
}

.editor-post-featured-image__container:has(.editor-post-featured-image__toggle) .components-drop-zone .components-drop-zone__content-inner {
  align-items: center;
  display: flex;
  gap: 8px
}

.editor-post-featured-image__container:has(.editor-post-featured-image__toggle) .components-drop-zone .components-drop-zone__content-inner .components-drop-zone__content-icon {
  margin: 0
}

.editor-post-featured-image__preview,
.editor-post-featured-image__toggle {
  box-shadow: 0 0 0 0 var(--wp-admin-theme-color);
  display: flex;
  justify-content: center;
  min-height: 40px;
  outline-offset: -1px;
  overflow: hidden;
  padding: 0;
  width: 100%
}

.editor-post-featured-image__preview {
  height: auto !important;
  outline: 1px solid #0000001a
}

.editor-post-featured-image__preview .editor-post-featured-image__preview-image {
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%
}

.editor-post-featured-image__toggle {
  box-shadow: inset 0 0 0 1px #ccc
}

.editor-post-featured-image__toggle:focus:not(:disabled) {
  box-shadow: 0 0 0 currentColor inset, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.editor-post-featured-image__actions:not(.editor-post-featured-image__actions-missing-image) {
  bottom: 0;
  opacity: 0;
  padding: 8px;
  position: absolute
}

@media not (prefers-reduced-motion) {
  .editor-post-featured-image__actions:not(.editor-post-featured-image__actions-missing-image) {
    transition: opacity 50ms ease-out
  }
}

.editor-post-featured-image__actions:not(.editor-post-featured-image__actions-missing-image) .editor-post-featured-image__action {
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  background: #ffffffbf
}

.editor-post-featured-image__actions .editor-post-featured-image__action {
  flex-grow: 1;
  justify-content: center
}

[class].editor-post-format__suggestion {
  margin: 4px 0 0
}

.editor-post-format__dialog .editor-post-format__dialog-content {
  margin: 8px;
  min-width: 248px
}

.editor-post-last-edited-panel {
  color: #757575
}

.editor-post-last-edited-panel .components-text {
  color: inherit
}

.editor-post-last-revision__title {
  font-weight: 500;
  width: 100%
}

.editor-post-last-revision__title.components-button.has-icon {
  height: 100%;
  justify-content: space-between
}

.editor-post-last-revision__title.components-button.has-icon:active,
.editor-post-last-revision__title.components-button.has-icon:hover {
  background: #f0f0f0
}

.editor-post-last-revision__title.components-button.has-icon:focus {
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.components-panel__body.is-opened.editor-post-last-revision__panel {
  height: 48px;
  padding: 0
}

.components-panel__body.is-opened.editor-post-last-revision__panel .editor-post-last-revision__title.components-button.components-button {
  padding: 16px
}

.editor-private-post-last-revision__button {
  display: inline-block
}

.editor-post-locked-modal__buttons {
  margin-top: 24px
}

.editor-post-locked-modal__avatar {
  border-radius: 50%;
  margin-top: 16px;
  min-width: auto !important
}

.editor-post-panel__row {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  min-height: 32px;
  width: 100%
}

.editor-post-panel__row-label {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  hyphens: auto;
  line-height: 20px;
  min-height: 32px;
  padding: 6px 0;
  width: 38%
}

.editor-post-panel__row-control {
  align-items: center;
  display: flex;
  flex-grow: 1;
  min-height: 32px
}

.editor-post-panel__row-control .components-button {
  height: auto;
  max-width: 100%;
  min-height: 32px;
  text-align: left;
  text-wrap: balance;
  text-wrap: pretty;
  white-space: normal
}

.editor-post-panel__row-control .components-dropdown {
  max-width: 100%
}

.editor-post-panel__section {
  padding: 16px
}

.editor-post-publish-panel__content {
  min-height: calc(100% - 144px)
}

.editor-post-publish-panel__content>.components-spinner {
  display: block;
  margin: 100px auto 0
}

.editor-post-publish-panel__header {
  align-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  height: 61px;
  padding-left: 16px;
  padding-right: 16px
}

.editor-post-publish-panel__header .components-button {
  justify-content: center;
  width: 100%
}

.editor-post-publish-panel__header .has-icon {
  margin-left: auto;
  width: auto
}

.components-site-card {
  align-items: center;
  display: flex;
  margin: 16px 0
}

.components-site-icon {
  border: none;
  border-radius: 2px;
  flex-shrink: 0;
  height: 36px;
  margin-right: 12px;
  width: 36px
}

.components-site-name {
  display: block;
  font-size: 14px
}

.components-site-home {
  color: #757575;
  display: block;
  font-size: 12px;
  word-break: break-word
}

.editor-post-publish-panel__header-cancel-button,
.editor-post-publish-panel__header-publish-button {
  flex: 1
}

@media (min-width:480px) {

  .editor-post-publish-panel__header-cancel-button,
  .editor-post-publish-panel__header-publish-button {
    max-width: 160px
  }
}

.editor-post-publish-panel__header-publish-button {
  justify-content: center;
  padding-left: 4px
}

.editor-post-publish-panel__header-cancel-button {
  padding-right: 4px
}

.editor-post-publish-panel__header-published {
  flex-grow: 1
}

.editor-post-publish-panel__footer {
  padding: 16px
}

.components-button.editor-post-publish-panel__toggle.is-primary {
  align-items: center;
  display: inline-flex
}

.components-button.editor-post-publish-panel__toggle.is-primary.is-busy .dashicon {
  display: none
}

.components-button.editor-post-publish-panel__toggle.is-primary .dashicon {
  margin-right: -4px
}

.editor-post-publish-panel__link {
  font-weight: 400;
  padding-left: 4px
}

.editor-post-publish-panel__prepublish {
  padding: 16px
}

.editor-post-publish-panel__prepublish strong {
  color: #1e1e1e
}

.editor-post-publish-panel__prepublish .components-panel__body {
  background: #fff;
  margin-left: -16px;
  margin-right: -16px
}

.editor-post-publish-panel__prepublish .editor-post-visibility__dialog-legend {
  display: none
}

.editor-post-publish-panel__prepublish .components-panel__body-title .components-button {
  align-items: flex-start;
  text-wrap: balance;
  text-wrap: pretty
}

.post-publish-panel__postpublish .components-panel__body {
  border-bottom: 1px solid #e0e0e0;
  border-top: none
}

.post-publish-panel__postpublish-buttons {
  align-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.post-publish-panel__postpublish-buttons .components-button {
  flex: 1;
  justify-content: center
}

.post-publish-panel__postpublish-buttons .components-clipboard-button {
  width: 100%
}

.post-publish-panel__postpublish-post-address-container {
  align-items: flex-end;
  display: flex;
  margin-bottom: 16px
}

.post-publish-panel__postpublish-post-address-container .post-publish-panel__postpublish-post-address {
  flex: 1
}

.post-publish-panel__postpublish-post-address-container input[readonly] {
  background: #f0f0f0;
  border-color: #ccc;
  height: 36px;
  overflow: hidden;
  padding: 12px;
  text-overflow: ellipsis
}

.post-publish-panel__postpublish-post-address__copy-button-wrap {
  flex-shrink: 0;
  margin-left: 16px
}

.post-publish-panel__postpublish-header {
  font-weight: 500
}

.post-publish-panel__postpublish-subheader {
  margin: 0 0 8px
}

.post-publish-panel__tip {
  color: #f0b849
}

@media screen and (max-width:782px) {
  .post-publish-panel__postpublish-post-address__button-wrap .components-button {
    height: 40px
  }
}

.editor-post-publish-panel {
  background: #fff;
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 46px;
  z-index: 100001
}

@media (min-width:782px) {
  .editor-post-publish-panel {
    border-left: 1px solid #ddd;
    left: auto;
    top: 32px;
    width: 281px;
    z-index: 99998
  }
}

@media (min-width:782px) and (not (prefers-reduced-motion)) {
  .editor-post-publish-panel {
    animation: editor-post-publish-panel__slide-in-animation .1s forwards;
    transform: translateX(100%)
  }
}

@media (min-width:782px) {
  body.is-fullscreen-mode .editor-post-publish-panel {
    top: 0
  }

  [role=region]:focus .editor-post-publish-panel {
    transform: translateX(0)
  }
}

@keyframes editor-post-publish-panel__slide-in-animation {
  to {
    transform: translateX(0)
  }
}

.editor-post-saved-state {
  align-items: center;
  color: #757575;
  display: flex;
  overflow: hidden;
  padding: 12px 4px;
  white-space: nowrap;
  width: 28px
}

.editor-post-saved-state.is-saved[aria-disabled=true],
.editor-post-saved-state.is-saved[aria-disabled=true]:hover,
.editor-post-saved-state.is-saving[aria-disabled=true],
.editor-post-saved-state.is-saving[aria-disabled=true]:hover {
  background: #0000;
  color: #757575
}

.editor-post-saved-state svg {
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
  margin-right: 8px
}

@media (min-width:600px) {
  .editor-post-saved-state {
    padding: 8px 12px;
    text-indent: inherit;
    width: auto
  }

  .editor-post-saved-state svg {
    margin-right: 0
  }
}

.editor-post-save-draft.has-text.has-icon svg {
  margin-right: 0
}

.editor-post-schedule__panel-dropdown {
  width: 100%
}

.editor-post-schedule__dialog .components-popover__content {
  min-width: 320px;
  padding: 16px
}

.editor-post-status {
  max-width: 100%
}

.editor-post-status.is-read-only {
  padding: 6px 12px
}

.editor-post-status .editor-post-status__toggle.editor-post-status__toggle {
  padding-bottom: 4px;
  padding-top: 4px
}

.editor-change-status__password-fieldset,
.editor-change-status__publish-date-wrapper {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px
}

.editor-change-status__content .components-popover__content {
  min-width: 320px;
  padding: 16px
}

.editor-change-status__content .editor-change-status__password-legend {
  margin-bottom: 8px;
  padding: 0
}

.editor-change-status__content p.components-base-control__help:has(.components-checkbox-control__help) {
  margin-top: 4px
}

.editor-post-sticky__checkbox-control {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px
}

.editor-post-sync-status__value {
  padding: 6px 0 6px 12px
}

.editor-post-taxonomies__hierarchical-terms-list {
  margin-left: -6px;
  margin-top: -6px;
  max-height: 14em;
  overflow: auto;
  padding-left: 6px;
  padding-top: 6px
}

.editor-post-taxonomies__hierarchical-terms-choice {
  margin-bottom: 8px
}

.editor-post-taxonomies__hierarchical-terms-choice:last-child {
  margin-bottom: 4px
}

.editor-post-taxonomies__hierarchical-terms-subchoices {
  margin-left: 16px;
  margin-top: 8px
}

.editor-post-taxonomies__flat-term-most-used .editor-post-taxonomies__flat-term-most-used-label {
  margin-bottom: 4px
}

.editor-post-taxonomies__flat-term-most-used-list {
  margin: 0
}

.editor-post-taxonomies__flat-term-most-used-list li {
  display: inline-block;
  margin-right: 8px
}

.editor-post-template__swap-template-modal {
  z-index: 1000001
}

.editor-post-template__swap-template-modal-content .block-editor-block-patterns-list {
  column-count: 2;
  column-gap: 24px;
  padding-top: 2px
}

@media (min-width:782px) {
  .editor-post-template__swap-template-modal-content .block-editor-block-patterns-list {
    column-count: 3
  }
}

@media (min-width:1280px) {
  .editor-post-template__swap-template-modal-content .block-editor-block-patterns-list {
    column-count: 4
  }
}

.editor-post-template__swap-template-modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
  break-inside: avoid-column
}

.editor-post-template__dropdown .components-popover__content {
  min-width: 240px
}

.editor-post-template__dropdown .components-button.is-pressed,
.editor-post-template__dropdown .components-button.is-pressed:hover {
  background: inherit;
  color: inherit
}

@media (min-width:782px) {
  .editor-post-template__create-form {
    width: 320px
  }
}

.editor-post-template__classic-theme-dropdown {
  padding: 8px
}

textarea.editor-post-text-editor {
  border: 1px solid #949494;
  border-radius: 0;
  box-shadow: none;
  display: block;
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: 16px !important;
  line-height: 2.4;
  margin: 0;
  min-height: 200px;
  overflow: hidden;
  padding: 16px;
  resize: none;
  width: 100%
}

@media not (prefers-reduced-motion) {
  textarea.editor-post-text-editor {
    transition: border .1s ease-out, box-shadow .1s linear
  }
}

@media (min-width:600px) {
  textarea.editor-post-text-editor {
    font-size: 15px !important;
    padding: 24px
  }
}

textarea.editor-post-text-editor:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  position: relative
}

textarea.editor-post-text-editor::-webkit-input-placeholder {
  color: #1e1e1e9e
}

textarea.editor-post-text-editor::-moz-placeholder {
  color: #1e1e1e9e
}

textarea.editor-post-text-editor:-ms-input-placeholder {
  color: #1e1e1e9e
}

.editor-post-title.is-raw-text {
  margin-bottom: 24px;
  margin-top: 2px;
  max-width: none
}

.editor-post-url__panel-dropdown {
  width: 100%
}

.editor-post-url__panel-dialog .editor-post-url {
  margin: 8px;
  min-width: 248px
}

.editor-post-url__front-page-link,
.editor-post-url__link {
  direction: ltr;
  word-break: break-word
}

.editor-post-url__front-page-link {
  padding: 6px 0 6px 12px
}

.editor-post-url__link-slug {
  font-weight: 600
}

.editor-post-url__input input.components-input-control__input {
  padding-inline-start: 0 !important
}

.editor-post-url__panel-toggle {
  word-break: break-word
}

.editor-post-url__intro {
  margin: 0
}

.editor-post-url__permalink {
  margin-bottom: 0;
  margin-top: 8px
}

.editor-post-url__permalink-visual-label {
  display: block
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio] {
  border: 1px solid #1e1e1e;
  border-radius: 2px;
  border-radius: 50%;
  box-shadow: 0 0 0 #0000;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  height: 24px;
  line-height: normal;
  margin-right: 12px;
  margin-top: 2px;
  max-width: 24px;
  min-width: 24px;
  padding: 6px 8px;
  position: relative;
  transition: none;
  width: 24px
}

@media not (prefers-reduced-motion) {
  .editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio] {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio] {
    font-size: 13px;
    line-height: normal
  }
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color)
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]::-moz-placeholder {
  color: #1e1e1e9e
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:-ms-input-placeholder {
  color: #1e1e1e9e
}

@media (min-width:600px) {
  .editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio] {
    height: 16px;
    max-width: 16px;
    min-width: 16px;
    width: 16px
  }
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked:before {
  background-color: #fff;
  border: 4px solid #fff;
  box-sizing: inherit;
  height: 12px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px
}

@media (min-width:600px) {
  .editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked:before {
    height: 8px;
    width: 8px
  }
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.editor-post-visibility__fieldset .editor-post-visibility__radio[type=radio]:checked {
  background: var(--wp-admin-theme-color);
  border: none
}

.editor-post-visibility__fieldset .editor-post-visibility__info {
  color: #757575;
  margin-left: 36px;
  margin-top: .5em
}

@media (min-width:600px) {
  .editor-post-visibility__fieldset .editor-post-visibility__info {
    margin-left: 28px
  }
}

.editor-post-visibility__fieldset .editor-post-visibility__choice:last-child .editor-post-visibility__info {
  margin-bottom: 0
}

.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text] {
  border: 1px solid #949494;
  border-radius: 2px;
  box-shadow: 0 0 0 #0000;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: normal;
  margin-left: 32px;
  padding: 6px 8px;
  width: calc(100% - 32px)
}

@media not (prefers-reduced-motion) {
  .editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text] {
    transition: box-shadow .1s linear
  }
}

@media (min-width:600px) {
  .editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text] {
    font-size: 13px;
    line-height: normal
  }
}

.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]:focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 .5px var(--wp-admin-theme-color);
  outline: 2px solid #0000
}

.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]::-webkit-input-placeholder {
  color: #1e1e1e9e
}

.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]::-moz-placeholder {
  color: #1e1e1e9e
}

.editor-post-visibility__fieldset .editor-post-visibility__password .editor-post-visibility__password-input[type=text]:-ms-input-placeholder {
  color: #1e1e1e9e
}

.editor-posts-per-page-dropdown__content .components-popover__content {
  min-width: 320px;
  padding: 16px
}

.editor-post-trash.components-button {
  flex-grow: 1;
  justify-content: center
}

.editor-preview-dropdown .editor-preview-dropdown__toggle.has-icon.has-text {
  padding-left: 6px;
  padding-right: 4px
}

.editor-preview-dropdown__button-external {
  display: flex;
  justify-content: space-between;
  width: 100%
}

.editor-resizable-editor.is-resizable {
  margin: 0 auto;
  overflow: visible
}

.editor-resizable-editor__resize-handle {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 9999px;
  bottom: 0;
  cursor: ew-resize;
  height: 100px;
  margin: auto 0;
  outline: none;
  padding: 0;
  position: absolute;
  top: 0;
  width: 12px
}

.editor-resizable-editor__resize-handle:after {
  background-color: #75757566;
  border-radius: 9999px;
  bottom: 16px;
  content: "";
  left: 4px;
  position: absolute;
  right: 0;
  top: 16px;
  width: 4px
}

.editor-resizable-editor__resize-handle.is-left {
  left: -18px
}

.editor-resizable-editor__resize-handle.is-right {
  right: -18px
}

.editor-resizable-editor__resize-handle:active,
.editor-resizable-editor__resize-handle:focus,
.editor-resizable-editor__resize-handle:hover {
  opacity: 1
}

.editor-resizable-editor__resize-handle:active:after,
.editor-resizable-editor__resize-handle:focus:after,
.editor-resizable-editor__resize-handle:hover:after {
  background-color: var(--wp-admin-theme-color)
}

.editor-layout__toggle-entities-saved-states-panel,
.editor-layout__toggle-publish-panel,
.editor-layout__toggle-sidebar-panel {
  background-color: #fff;
  border: 1px dotted #ddd;
  bottom: auto;
  box-sizing: border-box;
  display: flex;
  height: auto !important;
  justify-content: center;
  left: auto;
  padding: 24px;
  position: fixed !important;
  right: 0;
  top: -9999em;
  width: 280px;
  z-index: 100000
}

.interface-interface-skeleton__actions:focus .editor-layout__toggle-entities-saved-states-panel,
.interface-interface-skeleton__actions:focus .editor-layout__toggle-publish-panel,
.interface-interface-skeleton__actions:focus-within .editor-layout__toggle-entities-saved-states-panel,
.interface-interface-skeleton__actions:focus-within .editor-layout__toggle-publish-panel {
  bottom: 0;
  top: auto
}

.editor-start-page-options__modal .editor-start-page-options__modal__actions {
  background-color: #fff;
  border-top: 1px solid #ddd;
  bottom: 0;
  height: 92px;
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
  position: absolute;
  width: 100%;
  z-index: 1
}

.editor-start-page-options__modal .block-editor-block-patterns-list {
  padding-bottom: 92px
}

.editor-start-page-options__modal-content .block-editor-block-patterns-list {
  column-count: 2;
  column-gap: 24px
}

@media (min-width:782px) {
  .editor-start-page-options__modal-content .block-editor-block-patterns-list {
    column-count: 3
  }
}

@media (min-width:1280px) {
  .editor-start-page-options__modal-content .block-editor-block-patterns-list {
    column-count: 4
  }
}

.editor-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
  break-inside: avoid-column;
  margin-bottom: 24px
}

.editor-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__container {
  min-height: 100px
}

.editor-start-page-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-preview__content {
  width: 100%
}

.editor-start-template-options__modal .editor-start-template-options__modal__actions {
  background-color: #fff;
  border-top: 1px solid #ddd;
  bottom: 0;
  height: 92px;
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
  position: absolute;
  width: 100%;
  z-index: 1
}

.editor-start-template-options__modal .block-editor-block-patterns-list {
  padding-bottom: 92px
}

.editor-start-template-options__modal-content .block-editor-block-patterns-list {
  column-count: 2;
  column-gap: 24px
}

@media (min-width:782px) {
  .editor-start-template-options__modal-content .block-editor-block-patterns-list {
    column-count: 3
  }
}

@media (min-width:1280px) {
  .editor-start-template-options__modal-content .block-editor-block-patterns-list {
    column-count: 4
  }
}

.editor-start-template-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item {
  break-inside: avoid-column
}

.editor-start-template-options__modal-content .block-editor-block-patterns-list .block-editor-block-patterns-list__list-item .block-editor-block-patterns-list__item-title {
  display: none
}

.components-panel__header.editor-sidebar__panel-tabs {
  padding-left: 0;
  padding-right: 8px
}

.components-panel__header.editor-sidebar__panel-tabs .components-button.has-icon {
  padding: 0
}

@media (min-width:782px) {
  .components-panel__header.editor-sidebar__panel-tabs .components-button.has-icon {
    display: flex
  }
}

.editor-post-summary .components-v-stack:empty {
  display: none
}

.editor-site-discussion-dropdown__content .components-popover__content {
  min-width: 320px;
  padding: 16px
}

.table-of-contents__popover.components-popover .components-popover__content {
  min-width: 380px
}

.components-popover.table-of-contents__popover {
  z-index: 99998
}

.table-of-contents__popover .components-popover__content {
  padding: 16px
}

@media (min-width:600px) {
  .table-of-contents__popover .components-popover__content {
    max-height: calc(100vh - 120px);
    overflow-y: auto
  }
}

.table-of-contents__popover hr {
  margin: 10px -16px 0
}

.table-of-contents__wrapper:focus:before {
  bottom: 0;
  box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.table-of-contents__counts {
  display: flex;
  flex-wrap: wrap;
  margin: -8px 0 0
}

.table-of-contents__count {
  color: #1e1e1e;
  display: flex;
  flex-basis: 33%;
  flex-direction: column;
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 8px;
  padding-right: 8px
}

.table-of-contents__count:nth-child(4n) {
  padding-right: 0
}

.table-of-contents__number,
.table-of-contents__popover .word-count {
  color: #1e1e1e;
  font-size: 21px;
  font-weight: 400;
  line-height: 30px
}

.table-of-contents__title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px
}

.editor-text-editor {
  background-color: #fff;
  flex-grow: 1;
  position: relative;
  width: 100%
}

.editor-text-editor .editor-post-title.is-raw-text textarea,
.editor-text-editor .editor-post-title:not(.is-raw-text) {
  border: 1px solid #949494;
  border-radius: 0;
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.4;
  max-width: none;
  padding: 16px
}

@media (min-width:600px) {

  .editor-text-editor .editor-post-title.is-raw-text textarea,
  .editor-text-editor .editor-post-title:not(.is-raw-text) {
    padding: 24px
  }
}

.editor-text-editor .editor-post-title.is-raw-text textarea:focus,
.editor-text-editor .editor-post-title:not(.is-raw-text):focus {
  border-color: var(--wp-admin-theme-color);
  box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color)
}

.editor-text-editor__body {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  padding: 0 12px 12px;
  width: 100%
}

@media (min-width:960px) {
  .editor-text-editor__body {
    padding: 0 24px 24px
  }
}

.editor-text-editor__toolbar {
  background: #fffc;
  display: flex;
  left: 0;
  padding: 4px 12px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1
}

@media (min-width:600px) {
  .editor-text-editor__toolbar {
    padding: 12px
  }
}

@media (min-width:960px) {
  .editor-text-editor__toolbar {
    padding: 12px 24px
  }
}

.editor-text-editor__toolbar h2 {
  color: #1e1e1e;
  font-size: 13px;
  line-height: 40px;
  margin: 0 auto 0 0
}

.editor-visual-editor {
  align-items: center;
  background-color: #ddd;
  display: flex;
  position: relative
}

.editor-visual-editor iframe[name=editor-canvas] {
  background-color: initial
}

.editor-visual-editor.is-resizable {
  max-height: 100%
}

.editor-visual-editor.has-padding {
  padding: 24px 24px 0
}

.editor-visual-editor.is-iframed {
  overflow: hidden
}

.editor-visual-editor .components-button {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  padding: 6px 12px
}

.editor-visual-editor .components-button.has-icon,
.editor-visual-editor .components-button.is-tertiary {
  padding: 6px
}

.editor-fields-content-preview {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 100%
}

.dataviews-view-table .editor-fields-content-preview {
  flex-grow: 0;
  width: 96px
}

.editor-fields-content-preview .block-editor-block-preview__container,
.editor-fields-content-preview .editor-fields-content-preview__empty {
  margin-bottom: auto;
  margin-top: auto
}

.editor-fields-content-preview__empty {
  text-align: center
}

.chaty-agent-data,
.chaty-form,
.chaty-whatsapp-field input[type=text],
.chaty-whatsapp-form,
.chaty-whatsapp-message,
.chaty-whatsapp-message p {
  font-family: Segoe UI, Helvetica Neue, Helvetica, Lucida Grande, Arial, Ubuntu, Cantarell, Fira Sans, sans-serif
}

.chaty *,
.chaty-chat-view *,
.chaty-outer-forms * {
  box-sizing: border-box
}

.chaty-agent-header,
.chaty-channel,
.chaty-channels,
.chaty-form-body,
.chaty-tooltip {
  position: relative
}

.chaty-tooltip .on-hover-text,
.chaty-tooltip .on-hover-text:before,
.chaty-tooltip:after,
.chaty-tooltip:before {
  text-transform: none;
  font-size: .9em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0
}

.on-hover-text {
  display: none;
  white-space: pre
}

.chaty-tooltip .on-hover-text:before,
.chaty-tooltip:before {
  content: "";
  border: 5px solid transparent;
  z-index: 1001
}

.chaty-tooltip:after {
  content: attr(data-hover)
}

.chaty-tooltip .on-hover-text,
.chaty-tooltip:after {
  text-align: center;
  min-width: 1em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 15px;
  border-radius: 10px;
  background: #fff;
  color: #333;
  z-index: 1000;
  box-shadow: 0 1.93465px 7.73859px rgb(0 0 0 / 15%);
  font-size: 17px;
  line-height: 21px
}

.chaty-animation-shockwave:after,
.chaty-animation-shockwave:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0
}

.chaty-tooltip .on-hover-text {
  overflow: visible;
  white-space: pre
}

.chaty-tooltip.active .on-hover-text,
.chaty-tooltip.active .on-hover-text:before,
.chaty-tooltip.active:after,
.chaty-tooltip.active:before,
.chaty-tooltip:hover .on-hover-text,
.chaty-tooltip:hover .on-hover-text:before,
.chaty-tooltip:hover:after,
.chaty-tooltip:hover:before {
  display: block;
  opacity: 1
}

.chaty-tooltip.active .on-hover-text,
.chaty-tooltip.active .on-hover-text:before,
.chaty-tooltip.active:after,
.chaty-tooltip.active:before,
.chaty-tooltip.pos-left:hover .on-hover-text,
.chaty-tooltip.pos-left:hover .on-hover-text:before,
.chaty-tooltip.pos-left:hover:after,
.chaty-tooltip.pos-left:hover:before,
.chaty-tooltip.pos-right:hover .on-hover-text,
.chaty-tooltip.pos-right:hover .on-hover-text:before,
.chaty-tooltip.pos-right:hover:after,
.chaty-tooltip.pos-right:hover:before {
  animation: ease-out forwards tooltips-horz
}

.chaty-i-trigger.single-channel>.chaty-channel>.on-hover-text,
.chaty-tooltip.has-on-hover:after,
.chaty-tooltip.has-on-hover:before,
.chaty-whatsapp-field:not(.has_emoji) .chaty-wp-emoji-input,
.chaty-widget .chaty-i-trigger .chaty-cta-close.chaty-tooltip.chaty-tooltip:hover:after,
.chaty-widget .chaty-i-trigger .chaty-cta-close.chaty-tooltip:hover:before,
.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip:after,
.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip:before,
.chaty-widget.cssas-no-close-button.default-open .chaty-i-trigger,
.chaty.chaty-has-chat-view .has-chatway.chaty-open .Chatway-channel-link,
.eac-cval:empty,
.eac-sugg:empty,
.has-chat-view.active .chaty-widget.has-chatway.chaty-open .chaty-channel-list,
.on-hover-text:empty,
[data-hover=""]:after,
[data-hover=""]:before,
body.csaas-has-chatway.chatway-is-open .chaty,
body.csaas-has-chatway:not(.chatway-is-open) .chatway--trigger-container,
body:not(.chatway--active) .chaty-widget.has-chatway.above-chaty .Chatway-channel-link,
body:not(.chatway--active) .chaty-widget.inside-chaty .chaty-channels .Chatway-channel-link {
  display: none !important
}

.chaty-tooltip.pos-top .on-hover-text:before,
.chaty-tooltip.pos-top:before {
  border-bottom-width: 0;
  border-top-color: #fff;
  bottom: calc(100% + 5px)
}

.chaty-tooltip.pos-top .on-hover-text:after,
.chaty-tooltip.pos-top:after {
  bottom: calc(100% + 10px)
}

.chaty-tooltip.pos-top .on-hover-text,
.chaty-tooltip.pos-top:after,
.chaty-tooltip.pos-top:before {
  left: 50%;
  transform: translate(-50%, -.5em)
}

.chaty-tooltip.pos-down:before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #fff
}

.chaty-tooltip.pos-down:after {
  top: calc(100% + 5px)
}

.chaty-tooltip.pos-down:after,
.chaty-tooltip.pos-down:before {
  left: 50%;
  transform: translate(-50%, .5em)
}

.chaty-tooltip.pos-left .on-hover-text:before,
.chaty-tooltip.pos-left:before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #fff;
  left: calc(0em - 10px);
  transform: translate(-.5em, -50%)
}

.chaty-tooltip.pos-left .on-hover-text:before {
  left: auto;
  right: calc(0em - 5px)
}

.chaty-tooltip.pos-left .on-hover-text,
.chaty-tooltip.pos-left:after {
  top: 50%;
  right: calc(100% + 10px);
  transform: translate(-.5em, -50%)
}

.chaty-tooltip.pos-right .on-hover-text:before,
.chaty-tooltip.pos-right:before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #fff;
  right: calc(0em - 10px);
  transform: translate(.5em, -50%)
}

.chaty-tooltip.pos-right .on-hover-text:before {
  left: calc(0em - 5px);
  right: auto
}

.chaty-tooltip.pos-right .on-hover-text,
.chaty-tooltip.pos-right:after {
  top: 50%;
  left: calc(100% + 10px);
  transform: translate(.5em, -50%)
}

@keyframes tooltips-vert {
  to {
    opacity: 1;
    transform: translate(-50%, 0)
  }
}

@keyframes tooltips-horz {
  to {
    opacity: 1;
    transform: translate(0, -50%)
  }
}

.chaty-tooltip.pos-down:hover:after,
.chaty-tooltip.pos-down:hover:before,
.chaty-tooltip.pos-top:hover:after,
.chaty-tooltip.pos-top:hover:before {
  animation: ease-out forwards tooltips-vert
}

@-webkit-keyframes chaty-animation-shockwave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 2px rgba(0, 0, 0, .3), inset 0 0 1px rgba(0, 0, 0, .3)
  }

  95% {
    box-shadow: 0 0 50px transparent, inset 0 0 30px transparent
  }

  100% {
    transform: scale(2.25)
  }
}

@keyframes chaty-animation-shockwave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 2px rgba(0, 0, 0, .3), inset 0 0 1px rgba(0, 0, 0, .3)
  }

  95% {
    box-shadow: 0 0 50px transparent, inset 0 0 30px transparent
  }

  100% {
    transform: scale(2.25)
  }
}

@-webkit-keyframes chaty-animation-blink {

  0%,
  100% {
    opacity: 1
  }

  20% {
    opacity: .5
  }
}

@keyframes chaty-animation-blink {

  0%,
  100% {
    opacity: 1
  }

  20% {
    opacity: .5
  }
}

@-webkit-keyframes chaty-animation-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
    border-radius: 50%
  }

  100% {
    transform: scale(1.1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
    border-radius: 45%
  }
}

@keyframes chaty-animation-pulse {
  0% {
    transform: scale(1);
    border-radius: 50%
  }

  100% {
    transform: scale(1.1);
    border-radius: 45%
  }
}

.chaty-animation-shockwave:after {
  left: 0;
  -webkit-animation: 2s ease-out 1.3s infinite chaty-animation-shockwave;
  animation: 2s ease-out 1.3s infinite chaty-animation-shockwave
}

.chaty-animation-shockwave:before {
  left: 0;
  -webkit-animation: 2s ease-out .8s infinite chaty-animation-shockwave;
  animation: 2s ease-out .8s infinite chaty-animation-shockwave
}

.chaty-animation-blink {
  -webkit-animation: 1.33s ease-out infinite chaty-animation-blink;
  animation: 1.33s ease-out infinite chaty-animation-blink
}

.chaty-animation-pulse,
.chaty-animation-pulse-icon {
  -webkit-animation: .4s infinite alternate chaty-animation-pulse;
  animation: .4s infinite alternate chaty-animation-pulse
}

.chaty-animation-sheen {
  position: relative;
  overflow: hidden
}

.chaty-animation-sheen:after {
  animation: 5s infinite chaty-animation-sheen;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .5) 50%, transparent);
  transform: rotateZ(60deg) translate(0, 5em)
}

@keyframes chaty-animation-sheen {

  100%,
  20% {
    transform: rotateZ(60deg) translate(0, -80px)
  }
}

.chaty-animation-fade {
  animation: 5s infinite chaty-animation-fade
}

.chaty-animation-spin {
  animation: 5s cubic-bezier(.56, -.35, .22, 1.5) infinite chaty-animation-spin
}

@keyframes chaty-animation-fade {

  15%,
  5% {
    opacity: .25
  }

  10%,
  100%,
  20% {
    opacity: 1
  }
}

@keyframes chaty-animation-spin {
  10% {
    transform: rotateZ(-20deg);
    animation-timing-function: ease
  }

  100%,
  20% {
    transform: rotateZ(360deg)
  }
}

.chaty-animation-bounce,
.chaty-animation-jump {
  animation: 5s cubic-bezier(.84, -.54, .31, 1.19) infinite chaty-animation-bounce
}

@keyframes chaty-animation-bounce {

  0%,
  100%,
  20% {
    transform: none
  }

  10% {
    transform: translateY(-1em)
  }
}

@keyframes chaty-animation-waggle {
  0% {
    transform: none
  }

  10% {
    transform: rotateZ(-20deg) scale(1.2)
  }

  13% {
    transform: rotateZ(25deg) scale(1.2)
  }

  15% {
    transform: rotateZ(-15deg) scale(1.2)
  }

  17% {
    transform: rotateZ(15deg) scale(1.2)
  }

  20% {
    transform: rotateZ(-12deg) scale(1.2)
  }

  22% {
    transform: rotateZ(0) scale(1.2)
  }

  100%,
  24% {
    transform: rotateZ(0) scale(1)
  }
}

.chaty-animation-waggle {
  animation: 5s infinite chaty-animation-waggle
}

.chaty-animation-floating {
  -webkit-animation: 3s infinite chaty-animation-floating;
  animation: 3s infinite chaty-animation-floating
}

@keyframes chaty-animation-floating {

  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
}

.chaty {
  display: none;
  z-index: 99999
}

.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close.chaty-tooltip.chaty-tooltip:hover:after,
.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close.chaty-tooltip:hover:before,
.chaty.active,
.chaty.form-open .chaty-widget.cssas-no-close-button.default-open .chaty-i-trigger {
  display: block !important
}

.chaty *,
.chaty-form-body form {
  margin: 0;
  padding: 0
}

.chaty .sr-only,
.chaty-outer-forms .sr-only,
.hide-cht-svg-bg {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  outline: 0 !important
}

.chaty a,
.chaty a:focus,
.chaty a:hover,
.chaty button {
  border: none;
  text-decoration: none;
  outline: 0;
  box-shadow: none
}

.chaty-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10001
}

.chaty-widget.left-position {
  left: 25px;
  right: auto
}

.chaty-channel-list {
  display: flex;
  width: 62px;
  height: 124px;
  position: absolute;
  bottom: -4px;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none
}

.chaty-widget.left-position .chaty-channel-list {
  left: 0;
  right: auto
}

.chaty-widget.chaty-open .chaty-channel-list,
.chaty-widget.has-single .chaty-i-trigger .Phone-channel:after,
.chaty-widget.has-single .chaty-i-trigger .Phone-channel:before {
  pointer-events: auto
}

.chaty-channel-list .chaty-channel,
.chaty-channel.single .chaty-svg {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 4px;
  cursor: pointer;
  box-shadow: 0 16px 24px 0 rgb(73 104 126 / 16%)
}

.chaty-channel-list .chaty-channel {
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: .5s;
  -webkit-transition: .5s
}

.chaty-channel.single .chaty-svg,
.chaty-outer-forms form {
  margin: 0
}

.chaty-widget.chaty-open .chaty-channel-list .chaty-channel {
  opacity: 1
}

.chaty-channel a,
.chaty-channel button,
.chaty-svg {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  outline: 0;
  min-width: unset
}

* .chaty-channel button {
  min-width: unset;
  max-width: unset
}

.chaty-channel button {
  background: 0 0;
  border-radius: 50%
}

.chaty-channel a .chaty-custom-icon,
.chaty-channel button .chaty-custom-icon,
.chaty-svg .chaty-custom-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  font-size: 27px;
  line-height: 54px;
  color: #fff
}

.chaty-channel a:focus,
.chaty-channel button:focus,
.chaty-contact-form-box button.chaty-submit-button,
.chaty-wp-emoji-input:focus {
  outline: 0
}

.chaty-contact-form-box button.chaty-submit-button:disabled .chaty-loader,
.chaty-view-content p a {
  display: inline-block
}

.chaty-agent-icon svg,
.chaty-channel svg,
.chaty-view-channels .chaty-channel span svg {
  width: 100%;
  height: 100%
}

.chaty-channel img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%
}

.chaty-i-trigger .chaty-channel {
  position: absolute;
  bottom: 0;
  right: 4px;
  transition: .5s;
  border-radius: 50%;
  cursor: pointer
}

.chaty-cta-button {
  transition: .5s;
  box-shadow: 0 16px 24px 0 rgb(73 104 126 / 16%);
  border-radius: 50%
}

.chaty-widget.left-position .chaty-i-trigger .chaty-channel {
  left: 4px;
  right: auto
}

.chaty-widget .chaty-cta-main .chaty-cta-button {
  z-index: 1099;
  opacity: 1;
  position: relative
}

.chaty-widget.chaty-open .chaty-cta-main .chaty-cta-button {
  z-index: 999;
  opacity: 0;
  transform: rotate(540deg);
  visibility: hidden
}

.chaty-widget .chaty-i-trigger .chaty-cta-close {
  pointer-events: none
}

.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close {
  pointer-events: auto;
  z-index: 101
}

.chaty-widget .chaty-i-trigger .chaty-cta-close .chaty-cta-button {
  z-index: 999;
  opacity: 0;
  visibility: hidden
}

.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close .chaty-cta-button {
  z-index: 1099;
  opacity: 1;
  transform: rotate(180deg);
  visibility: visible
}

.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip {
  z-index: 91
}

.chaty-channel button.open-chaty-channel,
.chaty-widget.chaty-no-close-button:not(.has-single) .chaty-i-trigger:not(.single-channel),
.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip .on-hover-text,
.chaty.form-open .chaty-channel button.open-chaty,
.chaty.form-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip .on-hover-text,
.chaty.form-open .chaty-i-trigger .chaty-tooltip:after,
.chaty.form-open .chaty-i-trigger .chaty-tooltip:before,
.chaty.form-open .chaty-widget.has-single .chaty-i-trigger .on-hover-text,
.chaty.form-open.active .chaty-widget .chaty-i-trigger .chaty-cta-main {
  display: none
}

.chaty-channel span.chaty-icon,
.chaty-contact-input,
.chaty.form-open .chaty-channel button.open-chaty-channel,
.chaty.form-open .chaty-no-close-button.has-single .chaty-i-trigger,
.chaty.form-open.active .chaty-widget .chaty-i-trigger,
.wp-profile-img+.chaty-whatsapp-message:before,
body.csaas-has-chatway.has--chaty.chatway--active:not(.chatway--visible) .chatway--container {
  display: block
}

.chaty-widget.has-chatway .Chatway-channel-link,
.chaty.form-open.active .chaty-widget .chaty-i-trigger .chaty-cta-close .chaty-cta-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.chaty-widget .ch-pending-msg {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 16px;
  height: 16px;
  text-align: center;
  background: red;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  border-radius: 50%;
  z-index: 1101
}

.chaty-widget.left-position.hor-mode .chaty-channel-list {
  width: 136px;
  height: 62px;
  left: 0;
  bottom: 0
}

.chaty-widget.right-position.hor-mode .chaty-channel-list {
  width: 136px;
  height: 62px;
  right: 0;
  left: auto;
  bottom: 0
}

.chaty-widget.hor-mode .chaty-channel-list .chaty-channel {
  margin-top: 0;
  margin-bottom: 0
}

.chaty-widget.hor-mode.left-position .chaty-channel-list .chaty-channel {
  left: 0
}

.chaty-widget.hor-mode.right-position .chaty-channel-list .chaty-channel {
  right: 0;
  left: auto
}

.chaty-chat-view,
.chaty-outer-forms {
  vertical-align: bottom;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: fixed !important;
  bottom: -25px;
  left: 25px;
  padding: 0;
  width: 320px;
  max-width: 90%;
  -moz-transition: .5s linear;
  box-shadow: rgba(0, 0, 0, .16) 0 5px 40px;
  -webkit-box-shadow: rgba(0, 0, 0, .16) 0 5px 40px;
  -moz-box-shadow: rgba(0, 0, 0, .16) 0 5px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
  transition: .5s;
  -webkit-transition: .5s;
  animation-delay: -2s;
  -webkit-animation-delay: -2s
}

.chaty-chat-view.pos-left,
.chaty-outer-forms.pos-left {
  left: 25px
}

.chaty-chat-view.pos-right,
.chaty-outer-forms.pos-right {
  right: 25px;
  left: auto
}

.chaty-outer-forms.active,
.chaty:not(.form-open) .chaty-widget.chaty-open+.chaty-chat-view {
  -webkit-transform: translateY(-93px);
  transform: translateY(-93px);
  opacity: 1;
  z-index: 999999;
  visibility: visible;
  bottom: 0;
  pointer-events: auto
}

.chaty-whatsapp-body {
  padding: 0;
  min-height: 260px;
  position: relative;
  z-index: 2
}

.chaty-whatsapp-content {
  padding: 20px
}

.chaty-popup-whatsapp-form .chaty-whatsapp-body {
  height: 260px;
  min-height: auto
}

.chaty-popup-whatsapp-form .chaty-whatsapp-content {
  display: flex;
  align-items: flex-start
}

.chaty-form-body {
  background: #fff;
  z-index: 99999;
  min-height: 75px;
  border-radius: 10px
}

.qr-code-image {
  padding: 10px;
  text-align: center;
  border: 1px solid silver;
  border-radius: 4px
}

.qr-code-image img {
  max-width: 100%;
  max-height: 360px;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto
}

.chaty-whatsapp-form {
  position: relative;
  background-color: #f0ede7;
  border-radius: 8px;
  margin: 0
}

.chaty-whatsapp-form:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: .035;
  background-image: url("/wp-content/plugins/chaty/images/whatsapp.png")
}

.chaty-popup-whatsapp-form .chaty-whatsapp-body:before,
.chaty-popup-whatsapp-form .chaty-whatsapp-footer:before {
  background-image: url("/wp-content/plugins/chaty/images/whatsapp-welcome-popup.png");
  opacity: .7
}

.chaty-whatsapp-message {
  padding: 7px 14px 6px;
  background-color: #fff;
  border-radius: 0 10px 10px;
  position: relative;
  transform-origin: center top;
  z-index: 2;
  margin-top: 0;
  margin-left: 0;
  max-width: calc(100% - 40px);
  font-size: 14px;
  line-height: 18px;
  border: 1px solid
}

.chaty-whatsapp-message:before {
  content: "";
  display: none;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #fff;
  position: absolute;
  left: -12px;
  top: 0
}

.chaty-whatsapp-message p {
  margin: 0;
  padding: 0;
  color: #111b21;
  font-weight: 400;
  word-wrap: break-word
}

.chaty-whatsapp-footer {
  position: relative;
  padding: 20px 15px
}

.whatsapp-chaty-form {
  display: flex;
  margin: 0;
  padding: 0
}

button.chaty-whatsapp-button-button,
button.chaty-whatsapp-button-button:focus,
button.chaty-whatsapp-button-button:hover {
  text-align: center !important;
  height: 40px !important;
  width: 40px !important;
  padding: 0 !important;
  border-radius: 20px !important;
  outline: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  margin: 0 0 0 10px !important;
  text-decoration: none !important;
  border: none !important;
  min-width: 1px !important;
  flex: 0 0 40px
}

button.chaty-whatsapp-button-button {
  background: #c6d7e3 !important
}

.chaty-whatsapp-button-button:active,
.chaty-whatsapp-button-button:focus,
.chaty-whatsapp-button-button:hover,
button.chaty-whatsapp-button-button:focus,
button.chaty-whatsapp-button-button:hover {
  background: #a8c5da !important
}

.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button {
  background: #25d366 !important
}

.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button:focus,
.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button:hover {
  background: #22bf5b !important
}

.chaty-whatsapp-data {
  display: flex;
  flex: 1;
  z-index: 1
}

.chaty-whatsapp-field {
  padding-right: 0;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center
}

.chaty-whatsapp-button {
  flex: 0 0 48px
}

.chaty-whatsapp-button svg {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0
}

.chaty-whatsapp-field input[type=text] {
  height: 40px !important;
  line-height: normal;
  padding: 0 10px 0 15px;
  font-size: 16px;
  resize: none;
  width: 100%;
  border: none !important;
  border-radius: 24px;
  outline: 0;
  box-shadow: none !important;
  background: #fff !important;
  margin: 0;
  color: #111b21;
  flex: 1
}

.chaty-whatsapp-field input[type=text]:focus {
  outline: 0 !important;
  border: none !important;
  margin: 0;
  color: #111b21;
  box-shadow: none !important
}

.chaty-agent-data {
  font-size: 16px
}

.chaty-agent-header {
  font-size: 18px;
  padding: 20px 15px;
  background: #22bf5b;
  color: #fff;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px
}

.chaty-agent-data .close-chaty-form {
  right: 10px;
  top: 12px
}

.chaty-agent-data .chaty-agent {
  display: flex;
  align-items: center;
  padding: 15px
}

.chaty-agent-data .chaty-agent a {
  color: #49687e;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  width: 100%;
  align-items: center;
  outline: 0;
  font-weight: 400
}

.chaty-contact-input input.chaty-input-field,
.chaty-contact-input input[type=email].chaty-input-field,
.chaty-contact-input input[type=text].chaty-input-field,
.chaty-contact-input select.chaty-input-field,
.chaty-contact-input textarea.chaty-textarea-field {
  color: #28303d;
  font-family: BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans;
  margin: 0;
  background: #fff;
  outline: 0
}

.chaty-agent-data .chaty-agent+.chaty-agent {
  border-top: 2px solid #f6f8f9
}

.chaty-agent-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%
}

.chaty-agent-icon {
  width: 48px;
  height: 48px;
  margin: 0 15px 0 0
}

.chaty-agent-data .chaty-custom-icon {
  width: 48px;
  height: 48px;
  text-align: center;
  display: block;
  line-height: 48px;
  background: silver;
  border-radius: 50%;
  color: #fff;
  font-size: 28px
}

.chaty-close-agent-list {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 10;
  padding: 0 0 10px 10px
}

.chaty-agent-icon img {
  width: 48px;
  height: 48px;
  object-fit: cover
}

.chaty-close-agent-list svg {
  fill: #ffffff
}

.agent-sub-header {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400
}

.agent-main-header {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  position: relative
}

.chaty-agent-header:before,
.chaty-view-header:before {
  content: "";
  background: url(/wp-content/plugins/chaty/images/header-top.png) no-repeat;
  width: 215px;
  height: 41px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}

.chaty-agent-header:after,
.chaty-view-header:after {
  content: "";
  background: url(/wp-content/plugins/chaty/images/header-bottom.png) no-repeat;
  width: 44px;
  height: 41px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1
}

.chaty-custom-channel-icon {
  display: block;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 54px
}

.chaty-contact-form-title {
  padding: 10px 15px;
  text-align: left;
  font-size: 18px;
  color: #fff;
  border-radius: 8px 8px 0 0;
  justify-content: space-between;
  display: flex
}

.chaty-contact-form-button,
.chaty-contact-inputs {
  padding: 15px
}

.chaty-contact-input label.chaty-form-label {
  font-size: 14px;
  margin: 0;
  padding: 0 0 4px;
  line-height: 20px;
  display: flex;
  color: #28303d
}

.chaty-contact-input+.chaty-contact-input {
  margin: 10px 0 0
}

.chaty-contact-input input.chaty-input-field,
.chaty-contact-input input[type=email].chaty-input-field,
.chaty-contact-input input[type=text].chaty-input-field,
.chaty-contact-input select.chaty-input-field {
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px
}

.chaty-contact-input .has-chaty-error:focus,
.chaty-contact-input input.chaty-input-field:focus,
.chaty-contact-input input[type=email].chaty-input-field:focus,
.chaty-contact-input input[type=tel].chaty-input-field:focus,
.chaty-contact-input input[type=text].chaty-input-field:focus,
.chaty-contact-input select.chaty-input-field:focus,
.chaty-contact-input textarea.chaty-textarea-field:focus {
  outline: 0;
  box-shadow: none;
  border-color: #898989;
  background-color: #fff
}

.chaty-contact-input textarea.chaty-textarea-field {
  width: 100%;
  height: 100px;
  line-height: 20px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block
}

.chaty-contact-form-box .close-chaty-form {
  right: 9px;
  top: 9px
}

.chaty-contact-form-box button.chaty-submit-button[type=submit],
button#chaty-submit-button-0 {
  border: none;
  border-radius: 4px;
  color: #fff;
  background: #a886cd;
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: center;
  display: block
}

.chaty-contact-input input.chaty-input-field.has-chaty-error,
.chaty-contact-input select.chaty-input-field.has-chaty-error,
.chaty-contact-input textarea.has-chaty-error {
  border: 1px solid #d20000
}

.chaty-ajax-error-message,
.chaty-ajax-success-message {
  color: #00a700;
  padding: 10px 0 0;
  text-align: center;
  font-size: 16px
}

.chaty-ajax-error-message {
  color: #da0000
}

.chaty-view-header,
.chaty-view-header a,
.chaty-view-header a:focus,
.chaty-view-header a:hover {
  font-weight: 500;
  color: #fff;
  font-size: 24px
}

.chaty-exit-intent {
  position: fixed;
  z-index: -1
}

.chaty-exit-intent:before {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .8);
  visibility: hidden;
  z-index: 100;
  transition: .5s ease-in-out;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out
}

.chaty .chaty-widget.left-position .chaty-exit-intent:before {
  clip-path: circle(15px at 60px calc(100% - 60px))
}

.chaty .chaty-widget.right-position .chaty-exit-intent:before {
  clip-path: circle(15px at calc(100% - 60px) calc(100% - 60px))
}

.chaty .chaty-widget .chaty-exit-intent.animate:before {
  visibility: visible;
  clip-path: circle(100%)
}

.chaty-widget.has-single .chaty-i-trigger .chaty-channel:not(.chaty-agent-button).Phone-channel .chaty-tooltip:after,
.chaty-widget.has-single .chaty-i-trigger .chaty-channel:not(.chaty-agent-button).Phone-channel .chaty-tooltip:before {
  pointer-events: inherit
}

body.cht-in-mobile .chaty-outer-forms.chaty-agent-data.custom-cht-pos,
body.cht-in-mobile .chaty-outer-forms.chaty-contact-form-box.custom-cht-pos,
body.cht-in-mobile .chaty-outer-forms.chaty-wechat-form.custom-cht-pos,
body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form.custom-cht-pos {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translate(0, -50%);
  bottom: auto
}

body.cht-in-mobile .chaty-outer-forms.chaty-agent-data.custom-cht-pos .chaty-agent-body {
  max-height: calc(100vh - 164px) !important
}

.chaty-view-content p+p,
.chaty-whatsapp-message p+p {
  margin-top: 10px
}

body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form.custom-cht-pos .chaty-whatsapp-content {
  max-height: calc(100vh - 122px) !important;
  overflow-y: auto
}

body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form:not(.custom-cht-pos) .chaty-whatsapp-content {
  overflow-y: auto
}

.chaty.has-custom-pos.form-open .chaty-i-trigger {
  opacity: 0;
  visibility: hidden
}

body.cht-in-mobile .chaty-outer-forms.chaty-contact-form-box.custom-cht-pos .chaty-contact-inputs {
  max-height: calc(100vh - 150px) !important;
  overflow-y: auto
}

body.cht-in-mobile .chaty-outer-forms {
  max-width: calc(100vw - 50px) !important
}

.chaty-view-body {
  background: #fff;
  border-radius: 8px
}

.chaty-view-header {
  background: #b78deb;
  border-radius: 7px 7px 0 0;
  padding: 10px 15px;
  position: relative;
  word-break: break-word
}

.chaty-top-content {
  padding: 15px 15px 0;
  font-size: 16px
}

.chaty-view-content p,
.chaty-view-content p a,
.chaty-view-content p a:focus,
.chaty-view-content p a:hover {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 150%;
  color: #49687e;
  word-break: break-word
}

.chaty-view-channels .chaty-custom-channel-icon,
span.chaty-loader span.dashicons {
  font-size: 24px
}

.chaty-view-content p a:focus,
.chaty-view-content p a:hover,
.chaty-view-header a:focus,
.chaty-view-header a:hover {
  outline: 0;
  text-decoration: none
}

.chaty-close-view-list {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 12px;
  cursor: pointer;
  z-index: 11
}

.chaty-close-view-list svg {
  fill: #ffffff;
  display: inline-block;
  width: 100%
}

.chaty-view-channels .chaty-channel {
  height: 48px;
  display: inline-block;
  margin: 6px 0;
  width: 20%;
  text-align: center;
  vertical-align: top
}

.chaty-view-channels .chaty-channel a,
.chaty-view-channels .chaty-channel img,
.chaty-view-channels .chaty-channel span:not(.on-hover-text) {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto
}

.chaty-view-channels {
  padding: 10px 8px
}

.front-google-captcha {
  width: 100% !important;
  overflow: hidden
}

.front-google-captcha>div {
  width: 100%
}

span.chaty-loader,
span.chaty-loader span.dashicons {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px
}

.front-google-captcha iframe {
  transform: scaleX(.9);
  position: relative;
  left: -15px
}

.widget-fa-icon {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  color: #fff
}

span.chaty-loader {
  display: none;
  vertical-align: middle;
  color: #fff;
  animation: 1s linear infinite rotation;
  margin-left: 5px
}

@keyframes rotation {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(359deg)
  }
}

span.chaty-loader.active {
  display: inline-block;
  vertical-align: baseline
}

html[dir=rtl] .chaty-input-field,
html[dir=rtl] .chaty-submit-button,
html[dir=rtl] .chaty-tooltip,
html[dir=rtl] .chaty-tooltip:after,
html[dir=rtl] .chaty-whatsapp-message,
html[dir=rtl] .on-hover-text {
  direction: rtl
}

.add-bg-blur-effect {
  background-color: rgba(0, 0, 0, .4);
  overflow-x: hidden
}

.add-bg-blur-effect>:not(.chaty, .chaty-outer-forms, .picmo__popupContainer) {
  filter: blur(6px)
}

.email_suggestion,
.wp_email_suggestion {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #970029
}

.email_suggestion i,
.wp_email_suggestion i {
  color: #2596be;
  font-weight: 700;
  cursor: pointer
}

.chaty-custom-whatsapp-form .eac-sugg,
.chaty-form .eac-sugg {
  color: #c1c1c1;
  line-height: 34px !important
}

.chaty-custom-whatsapp-form .eac-input-wrap,
.chaty-form .eac-input-wrap {
  width: 100%;
  overflow: hidden
}

.chaty-custom-whatsapp-form .chaty-whatsapp-body:before {
  opacity: .05
}

.chaty-custom-whatsapp-form .chaty-whatsapp-body {
  border-radius: 0
}

.chaty-custom-whatsapp-form .chaty-whatsapp-footer {
  border-top: 1px solid #e1e1e1;
  min-height: 70px
}

.chaty-custom-whatsapp-form .chaty-whatsapp-data {
  display: block;
  z-index: 1
}

.chaty-custom-whatsapp-form .chaty-whatsapp-button-button {
  width: 100% !important;
  z-index: 1;
  position: relative
}

.chaty-custom-whatsapp-form .header-text {
  display: flex;
  align-items: center
}

.chaty-custom-whatsapp-form .header-text span {
  display: inline-block;
  vertical-align: super;
  padding-left: 5px
}

.chaty-custom-whatsapp-form .chaty-whatsapp-button svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  margin-right: 3px
}

.chaty-custom-whatsapp-form .chaty-whatsapp-button span {
  font-size: 15px;
  padding-left: 5px
}

.chaty-custom-whatsapp-form .chaty-whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px !important
}

.chaty-custom-whatsapp-form .chaty-whatsapp-content {
  padding: 15px;
  z-index: 101111;
  position: relative
}

.chaty-custom-whatsapp-form .chaty-whatsapp-body {
  min-height: auto
}

.chaty-outer-forms input[type=number]::-webkit-inner-spin-button,
.chaty-outer-forms input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0
}

.chaty-whatsapp-header {
  display: flex;
  align-items: center;
  background-color: #4aa485;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px 15px;
  position: relative;
  justify-content: space-between;
  box-shadow: 0 16px 32px 0 #1a0E3529
}

.chaty-whatsapp-header .header-wp-icon {
  height: 30px;
  width: 30px;
  margin-right: 7px
}

.chaty-whatsapp-header .header-wp-title {
  color: #fff;
  font-size: 15px;
  flex: 1;
  padding-right: 8px
}

.whatsapp-form-close-btn {
  flex: 0 0 16px;
  cursor: pointer
}

.whatsapp-form-close-btn svg {
  width: 16px;
  height: 16px
}

.chaty-whatsapp-body .wp-profile-img {
  height: 30px;
  width: 30px;
  margin-right: 15px
}

.chaty-whatsapp-body .wp-profile-img img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  object-fit: cover
}

.chaty-whatsapp-message-nickname {
  color: #489d81;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px
}

.chaty-whatsapp-message-time {
  color: #a1a1a9;
  font-size: 10px;
  line-height: 12px
}

.chaty-whatsapp-input::placeholder {
  color: #83a1b7;
  opacity: 40%
}

.chaty-whatsapp-input::-ms-input-placeholder {
  color: #83a1b7;
  opacity: 40%
}

button[type=button].chaty-wp-emoji-input,
button[type=button].chaty-wp-emoji-input:focus,
button[type=button].chaty-wp-emoji-input:hover {
  position: absolute !important;
  top: 9px;
  left: 8px;
  background: 0 0 !important;
  border: none !important;
  cursor: pointer;
  height: 24px !important;
  width: 24px !important;
  padding: 0 !important;
  min-width: 1px !important;
  margin: 0 !important;
  outline: 0 !important
}

.chaty-whatsapp-input {
  padding-left: 38px !important
}

.chaty-whatsapp-field:not(.has_emoji) .chaty-whatsapp-input {
  padding-left: 15px !important
}

.picmo__popupContainer {
  z-index: 1000000
}

body .picmo__emojiButton span {
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
  vertical-align: middle
}

body .picmo__picker .picmo__categoryButtons .picmo__categoryTab button.picmo__categoryButton {
  color: #8f8f8f;
  border: 1px solid transparent
}

body .picmo__picker .picmo__categoryButtons .picmo__categoryTab.picmo__categoryTabActive .picmo__categoryButton {
  border: 1px solid #a886cd;
  color: #a071d3;
  background: #fff
}

body .picmo__picker .picmo__emojiCategory .picmo__categoryName {
  display: flex;
  height: auto;
  padding: 10px 17px;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 700;
  background: #f3f3f3
}

body .picmo__picker .picmo__categoryButtons .picmo__categoryTab button.picmo__categoryButton:hover {
  background: #fff
}

body .picmo__emojiButton {
  border-radius: 4px
}

body .picmo__emojiButton:focus {
  outline: 0;
  border-radius: 5px
}

.chaty.form-open .chaty-widget.has-single .chaty-cta-close .chaty-cta-button {
  opacity: 1;
  visibility: visible;
  transform: rotate(360deg);
  z-index: 999
}

.chaty-custom-whatsapp-form .chaty-whatsapp-button button {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.chaty-contact-input input[type=file].chaty-input-field {
  line-height: 32px
}

.qr-code-header {
  display: flex;
  align-items: center;
  background-color: #a886cd;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px 15px;
  position: relative;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 16px 32px 0 #1a0E3529;
  z-index: 999999
}

.chaty-close-button {
  cursor: pointer
}

.qr-code-title {
  line-height: 1;
  padding: 15px 15px 0;
  font-size: 14px;
  color: #83a1b7
}

.qr-code-box {
  margin-top: 10px;
  padding: 0 15px 15px
}

.qr-code-head-title {
  display: inline-flex;
  align-items: center
}

.qr-code-head-title svg {
  margin-right: 5px
}

.mce-error {
  border: 1px solid #d00 !important
}

.required_indicate {
  color: red;
  font-size: 18px;
  margin-left: 2px
}

.chaty-whatsapp-button-button svg {
  display: inline-block;
  vertical-align: sub
}

.chaty-wp-emoji-input:hover {
  background-color: transparent;
  border-color: transparent
}

.chaty-whatsapp-input[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity .5s .5s;
  transition: opacity .5s .5s;
  opacity: 40% !important
}

[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity .5s .5s;
  transition: opacity .5s .5s;
  opacity: 1 !important
}

.chaty,
.chaty *,
.chaty-form,
.chaty-form *,
.chaty-whatsapp-form,
.chaty-whatsapp-form * {
  -webkit-tap-highlight-color: transparent
}

body.csaas-has-chatway:not(.chatway-is-open) .chatway--frame-container {
  opacity: 0;
  visibility: hidden
}

.chaty-channel.Chatway-channel-link.has-unread-message:after,
.chaty-widget:not(.has-chatway):not(.chaty-open) .csaas-widget-trigger.has-unread-message:after {
  content: attr(data-unread-message);
  width: 20px;
  height: 20px;
  background: #ff4545;
  position: absolute;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  bottom: 44px;
  z-index: 1111;
  right: -4px
}

.chaty-view-channels .chaty-channel.Chatway-channel.has-unread-message:after {
  right: 0;
  top: -8px;
  bottom: auto
}

.elementor-invisible {
  visibility: visible !important
}

.footer-top-area ul li a i {
  color: #fff !important
}

.menu-full-wrap {
  max-width: 1200px !important;
  margin: auto
}

.home .menu-full-wrap {
  padding: 0 15px
}

@media only screen and (max-width:1000px) {
  #footer-1 .footer-top-area .container {
    max-width: 1200px !important
  }
}

.site-header .site-branding a img,
.mean-container .mean-bar img {
  max-width: 100% !important
}

.home_banner_left .title-text-button {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.entry-banner {
  background: #14133b !important
}

.hire-web-developer ul li a:before,
.hire-javascript-developer ul li a:before,
.hire-mobile-developer ul li a:before,
.javascript-dev-service ul li a:before,
.web-dev-service ul li a:before,
.mobile-dev-service ul li a:before,
.creative-design-service ul li a:before,
.cloud-services ul li a:before,
.testing-services ul li a:before {
  width: 40px !important;
  font-size: 26px !important;
  line-height: 30px !important
}

#mega-menu-item-7988>a:first-child:before,
#mega-menu-item-8128>a:first-child:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f3cd";
  font-weight: 700 !important
}

#mega-menu-item-7989 a:before,
#mega-menu-item-7627 a:before {
  content: " " !important;
  height: 30px !important;
  background-repeat: no-repeat !important;
  width: 40px !important;
  transition: all .3s
}

#mega-menu-item-7989:hover a:before {
  transition: all .3s
}

#mega-menu-item-7627:hover a:before {
  transition: all .3s
}

#mega-menu-item-7990 a:before,
#mega-menu-item-7626 a:before {
  content: "\f41b" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-7991 a:before,
#mega-menu-item-7625 a:before {
  content: "\f17b" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-7992 a:before,
#mega-menu-item-7624 a:before {
  content: "\f179" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-7993>a:first-child:before,
#mega-menu-item-8127>a:first-child:before {
  content: "\f129" !important;
  font-family: flaticon !important
}

#mega-menu-item-7997 a:before,
#mega-menu-item-7590 a:before {
  content: "\f457" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-7996 a:before,
#mega-menu-item-7591 a:before {
  content: "\f3bd" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-7995 a:before,
#mega-menu-item-7592 a:before {
  content: " " !important;
  height: 30px !important;
  background-repeat: no-repeat !important;
  width: 40px !important;
  transition: all .3s
}

#mega-menu-item-7592:hover a:before {
  transition: all .3s
}

#mega-menu-item-7995:hover a:before {
  transition: all .3s
}

#mega-menu-item-7994 a:before,
#mega-menu-item-7593 a:before {
  content: "\f19a" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-9723 a:before {
  content: " " !important;
  height: 30px !important;
  background-repeat: no-repeat !important;
  width: 40px !important;
  transition: all .3s
}

#mega-menu-item-9723:hover a:before {
  transition: all .3s
}

#mega-menu-item-9724 a:before {
  content: "\f391" !important;
  font-family: "Font Awesome 5 Brands" !important
}

#mega-menu-item-7998>a:first-child:before,
.mega-menu-item-8126>a:first-child:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f3b8" !important
}

#mega-menu-item-7998>a:first-child:before,
.mega-menu-item-8126>a:first-child:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f3b8" !important
}

#mega-menu-item-8002 a:before,
.mega-menu-item-7583 a:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f420" !important
}

#mega-menu-item-8001 a:before,
#mega-menu-item-7584 a:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f419" !important
}

#mega-menu-item-8000 a:before,
#mega-menu-item-7585 a:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f41b" !important
}

#mega-menu-item-7999 a:before,
#mega-menu-item-7586 a:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f41f" !important
}

#mega-menu-item-8129>a:first-child:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f403" !important
}

#mega-menu-item-7630 a:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f24d"
}

#mega-menu-item-7631 a:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f7c6" !important
}

#mega-menu-item-8130>a:first-child:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f09d" !important
}

#mega-menu-item-7633 a:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f058" !important
}

#mega-menu-item-7632 a:before {
  content: "\f109" !important;
  font-family: Flaticon !important
}

#mega-menu-item-7634 a:before,
#mega-menu-item-7636 a:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f09d" !important
}

#mega-menu-item-7637 a:before {
  font-family: "Font Awesome 5 Brands" !important;
  content: "\f375" !important
}

#mega-menu-item-7638 a:before {
  content: " " !important;
  height: 30px !important;
  background-repeat: no-repeat !important;
  width: 40px !important;
  transition: all .3s
}

#mega-menu-item-7638:hover a:before {
  transition: all .3s
}

#mega-menu-item-8131>a:first-child:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f201";
  font-weight: 900 !important
}

#mega-menu-item-7640 a:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f885" !important;
  font-weight: 700 !important
}

#mega-menu-item-7641 a:before {
  content: "\f1e0" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 700 !important
}

#mega-menu-item-7642 a:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f256" !important
}

#mega-menu-item-9393 a:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f591" !important;
  font-weight: 700 !important
}

#mega-menu-wrap-primary #mega-menu-primary[data-effect=fade] li.mega-menu-item>ul.mega-sub-menu {
  transition: unset !important
}

#mega-menu-item-8100 a {
  background: #0554f2 !important;
  height: 50px !important;
  line-height: 50px !important;
  border-radius: 5px !important;
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 500 !imporatant;
  padding-left: 25px !important;
  padding-right: 15px !important;
  margin-left: 15px !important
}

#mega-menu-item-8100 a:before {
  border-bottom: 0 !important
}

#mega-menu-item-8100 a:hover:before {
  border-bottom: 0 !important
}

h1,
h2,
h3,
h4,
h5,
h6,
.button-style-1,
.button-style-2,
.button-style-3,
.topbar-style-2 .header-top-bar,
.site-header .main-navigation nav ul li a,
.additional-menu-area .sidenav ul li,
code,
kbd,
pre,
samp,
tt,
var,
blockquote p,
.wp-block-search .wp-block-search__button,
.rt_widget_recent_entries_with_image .topic-box .posted-date,
.post-tab-layout .post-box-date ul li,
.entry-header .share-links a .social-text,
.entry-footer .item-tags a,
.rt-drop,
.post-navigation .next-article,
.comments-area .main-comments .comment-meta .comment-author-name a,
.comments-area .main-comments .comment-meta .comment-author-name span,
#respond form .btn-send,
.fluentform .contact-form .ff-btn,
.fluentform .get-form .ff-btn,
.fluentform .newsletter-form .ff-el-group,
.fluentform .newsletter-form .ff-el-group,
.fluentform .newsletter-form .ff-btn,
.wp-block-code,
.wp-block-button .wp-block-button__link,
.rt-slide-nav .offscreen-navigation li>a,
.rt-slide-nav .offscreen-navigation li.menu-item-has-children>a:after,
.mobile-top-bar .header-top .info-text,
.btn-addto-cart a,
.woocommerce #respond input#submit.alt,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce button.button,
.woocommerce a.button.alt,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce-MyAccount-navigation ul li a {
  font-family: 'Rubik', sans-serif !important
}

.copyright {
  position: relative !important
}

.copyright a {
  z-index: 999
}

.footer-top-area {
  padding-top: 60px !important;
  padding-bottom: 0 !important
}

#footer-1 .widgettitle {
  font-size: 20px !important;
  line-height: 20px !important
}

.footer-area .footer-about {
  margin-right: 0 !important;
  color: #fff !important
}

#footer-1 .row ul li a {
  color: #fff !important
}

.rt-container-fluid,
.rt-container {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.tlp-col-md-6 {
  padding-left: 0 !important;
  padding-right: 30px !important
}

.tlp-portfolio-isotope-button.button-group.filter-button-group.option-set button {
  border-radius: 5px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 400 !important;
  padding: 11px 16px !important;
  align-items: center;
  letter-spacing: .16px;
  border-radius: 5px !important
}

.tlp-portfolio-thum.tlp-item img {
  object-fit: cover;
  object-position: center center
}

#tlp-portfolio-container-8899 .tlp-overlay {
  background: rgba(5, 84, 242, 0);
  border-bottom: none
}

.tlp-portfolio-item {
  border: 1px solid #0554f2
}

.tlp-pagination li span[aria-hidden=true] {
  color: #fff !important
}

ul.tlp-pagination li span {
  color: #fff !important
}

ul.tlp-pagination li a {
  color: #fff !important
}

.tlp-content-holder h3 a:after {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f35d" !important;
  font-weight: 600;
  margin-left: 10px;
  font-size: 20px;
  line-height: 38px
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>li {
  border-left: 1px solid #fff
}

.testimonial-height .rtin-item .rtin-content p {
  font-family: 'Rubik', sans-serif !important
}

a[aria-current=page] {
  color: #0554f2 !important
}

span.counter:after {
  content: "\2b" !important
}

.last-image-industry img {
  height: 227px !important;
  object-fit: cover
}

.contactform-common .rtin-item {
  padding: 31px !important
}

.node-service-portfolio .tlp-col-md-6 {
  padding-left: 5px !important
}

.content-area {
  padding-top: 0 !important;
  padding-bottom: 0 !important
}

.home-blog-list .rtin-img img {
  height: 266px;
  object-fit: cover
}

.single-post .content-area {
  margin-top: 40px
}

.single-post p {
  font-size: 16px !important;
  line-height: 30px !important
}

.post .rtrs-review-post-type-post {
  display: none
}

.blog .content-area {
  margin-top: 40px;
  margin-bottom: 40px
}

.category-technology .site-main {
  margin-top: 40px;
  margin-bottom: 40px
}

.vacancy-list .apply-item {
  margin-right: 0;
  margin-left: 0
}

.post .entry-thumbnail-area {
  text-align: center
}

.codeignator-icon-service-page .info-style2 .rtin-item .rtin-icon img {
  width: 42px
}

.flutter-icon-service-page .info-style2 .rtin-item .rtin-icon img {
  width: 45px
}

.tech-index-codeignator-icon .rtin-item .rtin-icon img {
  width: 33px !important
}

.tech-index-flutter-icon .rtin-item .rtin-icon img {
  width: 33px !important
}

.codeignator-icon-hire-page .rtin-item .rtin-icon img {
  width: 48px !important
}

.mega-toggle-blocks-left {
  margin-left: 10px
}

.tech-index-google-cloud-icon .rtin-item .rtin-icon img {
  width: 35px !important
}

.about-us-image .image-content {
  background: #0554f2b8 !important;
  bottom: 0 !important
}

.home-blog-list .rtin-content {
  padding: 15px !important
}

.home-blog-list .rtin-content .rtin-title a {
  font-size: 18px !important
}

.work-with-col .elementor-widget-image {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%)
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link {
  line-height: 30px !important;
  margin: 10px 0 !important
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:before,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:after {
  background-color: #14133b !important;
  border-radius: 0 !important
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
  line-height: 30px !important
}

.tech_icon .info-box.animted-bg-wrap.info-style7.hide.fadeInUp {
  padding: 15px !important
}

.rtin-logo-slider .rtin-item img {
  filter: unset !important;
  transition: unset !important
}

.rtin-logo-slider .rtin-item {
  text-align: center;
  transition: all .3s ease-in-out;
  margin: 0 !important
}

.client_logo .owl-carousel.owl-drag .owl-item {
  border: 1px solid #0554f2;
  height: 100px;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px
}

.client_logo .rtin-logo-slider .rt-owl-carousel .rtin-item img {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  position: absolute;
  padding: 10px
}

.client_logo .rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav>div {
  top: 80% !important;
  transform: unset !important
}

.scroll-wrap {
  left: 24px !important
}

.footer-area .copyright {
  color: #fff !important
}

.footer-area .copyright a {
  color: #fff !important
}

#rt-about-social-2 {
  margin-top: -38px
}

.hire-dev-benefits .elementor-col-33 .elementor-widget-wrap.elementor-element-populated {
  margin-top: 0 !important
}

.page-id-9478 .elementor-element-populated {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.case-stydy-section-home-page {
  display: none
}

@media only screen and (max-width:328px) {
  .mean-bar {
    display: none !important
  }

  .rt-slide-nav {
    display: block !important
  }

  .client_logo .owl-dots {
    display: none
  }

  .mega-toggle-blocks-center {
    display: none !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 !important
  }

  .hire-web-developer ul li a:before,
  .hire-javascript-developer ul a:before,
  .hire-mobile-developer ul li a:before,
  .javascript-dev-service ul li a:before,
  .web-dev-service ul li a:before,
  .mobile-dev-service ul li a:before,
  .creative-design-service ul li a:before,
  .cloud-services ul li a:before,
  .testing-services ul li a:before {
    height: 1px !important;
    font-size: 25px !important;
    opacity: 1 !important;
    visibility: visible !important
  }

  .mega-menu-item {
    padding-top: 0 !important
  }

  #mega-menu-item-8100 a {
    width: 200px !important;
    text-align: center !important;
    margin: auto !important;
    margin-left: 0 !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item-8672 {
    padding-top: 20px !important
  }

  a.mega-menu-link {
    font-size: 13px !important
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children:hover>a.mega-menu-link>span.mega-indicator:after {
    transform: rotate(359deg) translateX(0px) !important
  }

  #mega-menu-item-8100 a {
    padding-right: 12px !important
  }

  .mega-toggle-blocks-left {
    padding-left: 5px
  }

  .footer-top-area .widget {
    margin-bottom: 40px !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link {
    margin: 5px 0 !important
  }
}

@media only screen and (max-width:767px) {
  .industry-col .elementor-element-populated {
    padding: 0 !important
  }

  .service-portfolio-all-button .rtin-button,
  .service-portfolio-particular-button .rtin-button {
    text-align: center !important
  }

  .about-section-services {
    padding-top: 40px !important
  }

  .benefits-service-col-2 {
    margin-top: -26px
  }

  .last-service-name {
    width: 100% !important
  }

  .list-service-heading {
    padding: 0 !important
  }

  .heading-page-service-list {
    padding: 40px 0 !important
  }

  .dt_way_of_working {
    padding: 0 !important
  }

  .hire-dev-benefits-part-2 {
    padding-top: 0 !important
  }

  .hire-dev-benefits-part-1 {
    padding-bottom: 0 !important;
    padding-top: 10px !important
  }

  .about-us-para {
    padding: 0 !important
  }

  .about-us-top-section {
    padding: 20px 0 !important
  }

  .perks-and-benefits-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important
  }

  .hire-row-section .elementor-container .elementor-column .elementor-element-populated {
    margin-top: 0 !important
  }

  .hire-row-section-part-1 {
    padding-bottom: 0 !important
  }

  .hire-row-section-part-2 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .hire-row-section-part-3 {
    padding-top: 0 !important
  }

  .contact-us-form-part-1,
  .contact-us-form-part-2 {
    width: 100% !important
  }
}

@media only screen and (max-width:1024px) and (min-width:768px) {
  .last-service-name .elementor-element-populated {
    margin: 0 !important
  }

  .last-service-name {
    width: 50% !important
  }
}

@media only screen and (max-width:1024px) {
  .counter-row {
    padding: 0 !important
  }

  .counter-box {
    padding: 40px 0 !important
  }

  .service-heading-portfolio {
    padding: 0 !important
  }

  .technology-index .elementor-col-12 {
    width: 50% !important
  }

  .technology-index .elementor-widget-wrap.elementor-element-populated {
    margin-top: 30px !important
  }

  .technology-row-2 {
    padding: 0 !important
  }

  .about-image-col-services {
    order: -1 !important
  }

  .parks-and-benefits-col {
    width: 100% !important
  }

  .heading-br {
    display: none
  }
}

@media only screen and (max-width:990px) {
  #mega-menu-wrap-primary .mega-menu-toggle+#mega-menu-primary {
    padding-left: 15px !important
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding-left: 0 !important
  }

  .entry-banner-content {
    margin-top: 50px !important
  }
}

@media only screen and (max-width:991px) and (min-width:989px) {
  #site-navigation {
    display: none !important
  }

  #header-menu {
    padding: 0 !important
  }

  .site-branding {
    display: none !important
  }

  .menu-wrap {
    width: 100% !important
  }

  .mega-toggle-blocks-left {
    margin-left: 10px !important
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding-left: 0 !important
  }
}

@media only screen and (max-width:999px) and (min-width:991px) {
  #header-menu {
    padding: 0 !important
  }

  .site-branding {
    display: none !important
  }

  .menu-wrap {
    width: 100% !important
  }

  .mega-toggle-blocks-left {
    margin-left: 0 !important;
    padding-left: 0 !important
  }

  #mega-menu-item-8100 a span {
    margin-left: 10px
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding-left: 0 !important
  }
}

@media only screen and (max-width:1000px) and (min-width:999px) {
  .site-branding {
    display: none !important
  }

  .menu-wrap {
    width: 100% !important
  }

  .mega-toggle-blocks-left {
    margin-left: 0 !important;
    padding-left: 0 !important
  }

  #mega-menu-wrap-primary .mega-menu-toggle+#mega-menu-primary {
    padding-left: 0 !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 7px 0 0 !important
  }

  div#header-menu {
    padding: 0 !important
  }

  #mega-menu-item-8100 a span {
    margin-left: 10px
  }

  .testimonial-height .owl-dots {
    display: none
  }
}

@media only screen and (max-width:1000px) and (min-width:329px) {
  .mean-bar {
    display: none !important
  }

  .rt-slide-nav {
    display: block !important
  }

  .client_logo .owl-dots {
    display: none
  }

  .testimonial-height .owl-dots {
    display: none
  }

  .mega-toggle-blocks-center {
    display: none !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 !important
  }

  .hire-web-developer ul li a:before,
  .hire-javascript-developer ul a:before,
  .hire-mobile-developer ul li a:before,
  .javascript-dev-service ul li a:before,
  .web-dev-service ul li a:before,
  .mobile-dev-service ul li a:before,
  .creative-design-service ul li a:before,
  .cloud-services ul li a:before,
  .testing-services ul li a:before {
    height: 1px !important;
    font-size: 25px !important;
    opacity: 1 !important;
    visibility: visible !important
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:before {
    font-size: 25px !important
  }

  .mega-menu-item {
    padding-top: 0 !important
  }

  #mega-menu-item-8100 a {
    width: 200px !important;
    text-align: center !important;
    margin: auto !important;
    margin-left: 0 !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item-8672 {
    padding-top: 20px !important
  }

  a.mega-menu-link {
    font-size: 16px !important
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children:hover>a.mega-menu-link>span.mega-indicator:after {
    transform: rotate(359deg) translateX(0px) !important
  }

  #mega-menu-item-8100 a {
    padding-right: 12px !important
  }

  .mega-toggle-blocks-left {
    padding-left: 5px
  }

  .footer-top-area .widget {
    margin-bottom: 40px !important
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link {
    margin: 5px 0 !important
  }
}

@media only screen and (max-width:1028px) {
  .home_banner_left .title-text-button {
    padding-left: 15px !important;
    padding-right: 15px !important
  }
}

@media only screen and (max-width:1050px) and (min-width:1001px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 5px !important
  }

  div#header-menu {
    padding: 0 !important
  }

  #mega-menu-item-8100 a span {
    margin-left: 10px
  }

  .container {
    max-width: 1200px !important
  }
}

@media only screen and (max-width:1100px) and (min-width:1050px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 9px !important
  }

  li#mega-menu-item-8100 {
    margin-left: 10px !important
  }

  #mega-menu-item-8100 a span {
    margin-left: 10px
  }

  div#header-menu {
    padding: 0 !important
  }

  .container {
    max-width: 1200px !important
  }
}

@media only screen and (max-width:1200px) and (min-width:1100px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    padding: 0 10px !important
  }

  li#mega-menu-item-8100 {
    margin-left: 10px !important
  }

  #mega-menu-item-8100 a span {
    margin-left: 10px
  }

  div#header-menu {
    padding: 0 !important
  }

  .container {
    max-width: 1200px !important
  }
}

@media only screen and (max-width:1250px) and (min-width:1200px) {
  a.mega-menu-link {
    padding: 0 10px !important
  }

  div#header-menu {
    padding: 0 !important
  }

  .container {
    max-width: 1200px !important
  }
}

@media only screen and (max-width:1313px) and (min-width:1250px) {
  div#header-menu {
    padding: 0 !important
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:before {
  font-size: 26px !important;
  padding-right: 15px !important
}

.sjb-page .list-data .v2 {
  border-radius: 10px;
  border: 1px solid #14133B2f;
  padding: 30px 10px
}

h4 .job-title {
  font-size: 30px;
  font-family: rubik, sans-serif;
  color: #444;
  font-weight: 300
}

h4 .job-title:hover {
  font-size: 30px;
  font-family: rubik, sans-serif;
  color: #0554f2;
  font-weight: 300
}

.sjb-page .list-data .v2 .company-logo {
  float: left;
  width: 78px;
  max-width: 200px;
  margin-right: 10px;
  border: 3px #14133b solid;
  border-radius: 10px
}

.sjb-page .btn-primary,
.sjb-page .btn-primary:hover,
.sjb-page .btn-primary:active:hover,
.sjb-page .btn-primary:active:focus,
.sjb-page .sjb-detail .jobpost-form .file div,
.sjb-page .sjb-detail .jobpost-form .file:hover div {
  background-color: #0554f2 !important;
  color: #fff !important
}

.sjb-page .list-data .v2 .sjb-apply-now-btn a {
  border-radius: 0;
  font-size: 14px;
  padding: 10px 20px;
  margin-top: 5px;
  margin-left: 5px;
  border-radius: 5px
}

.sjb-page .list-data .v2 .sjb-apply-now-btn a {
  padding: 15px 25px;
  color: #fff;
  background: #0554f2;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 50;
  letter-spacing: .2px;
  position: relative;
  display: inline-flex;
  align-items: end;
  text-transform: uppercase;
  font-weight: 400
}

.sjb-page .list-data .v2 .job-type,
.sjb-page .list-data .v2 .job-location {
  color: #0554f2 !important;
  font-family: rubik, sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-left: -1px
}

.sjb-page .list-data .v2 .job-date {
  display: none;
  visibility: hidden
}

.sjb-page .list-data .v2 .job-type i,
.sjb-page .list-data .v2 .job-location i,
.sjb-page .list-data .v2 .job-date i {
  font-size: 16px;
  color: #0554f2 !important;
  margin-right: 5px
}

.sjb-page .sjb-listing .list-data .v2 .job-features .sjb-title-value h4 i,
.sjb-page .sjb-listing .list-data .v1 .job-features .sjb-title-value h4 i {
  color: #0554f2 !important;
  width: 30px
}

.sjb-page .job-description-list p {
  color: #14133b;
  font-size: 16px;
  margin: 0 0 10px;
  word-wrap: break-word;
  font-family: rubik, sans-serif;
  font-weight: 300
}

.sjb-page .list-data .v2 .job-description-list {
  float: left;
  width: 100%
}

.sjb-page .list-data .v2 .job-description {
  float: left;
  width: 100%;
  border-top: 0;
  padding-left: 0;
  padding-right: 5px
}

.sjb-page .list-data .sjb-job-type-location-date {
  border-top: 0 solid #ccc;
  padding: 0 20px 20px;
  overflow: hidden
}

.sjb-page .sjb-detail {
  margin: 0
}

.sjb-page .sjb-detail .list-data .v2 {
  border: 0;
  margin: 0;
  padding: 20px 0
}

.sjb-page .job-features h3 {
  color: #0554f2 !important;
  font-size: 18px;
  font-weight: 700;
  margin: 16px;
  font-family: rubik, sans-serif;
  font-weight: 400
}

.sjb-page .sjb-listing a.sjb_view_more_btn,
.sjb-page .sjb-listing a.sjb_view_less_btn {
  color: #0554f2 !important;
  font-family: rubik, sans-serif;
  font-weight: 400;
  border-radius: 5px
}

.sjb-page .sjb-listing a.sjb_view_more_btn,
.sjb-page .sjb-listing a.sjb_view_less_btn {
  color: #0554f2 !important;
  padding: 5px 15px;
  background-color: #0554f218
}

.entry-header .entry-meta ul li {
  display: none;
  margin-right: 15px;
  position: relative;
  font-size: 15px;
  color: #7a7a7a;
  margin-bottom: 0
}

.entry-thumbnail-area {
  margin-top: 20px
}

.entry-thumbnail-area img {
  border-radius: 10px;
  border: 1px #2b2a4e solid !important
}

.sjb-page .list-data .sjb-company-wrapper-details {
  padding: 0;
  overflow: hidden
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form h3 {
  color: #0554f2 !important;
  font-family: rubik, sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
  word-spacing: 2px;
  font-weight: 400;
  padding-bottom: 30px;
  text-align: center;
  text-transform: uppercase
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form label {
  font-size: 16px;
  font-family: rubik, sans-serif;
  font-weight: 400
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form {
  padding: 15px;
  border-radius: 5px;
  float: left;
  width: 100%;
  background-color: #f5faff
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .app-submit {
  padding: 15px 25px;
  color: #fff;
  background: #0554f2;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: medium;
  font-weight: 50;
  letter-spacing: .2px;
  position: relative;
  display: inline-flex;
  align-items: end;
  font-family: rubik, sans-serif
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-control {
  font-size: 16px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #c1c1c1;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.entry-footer .post-share .share-links {
  display: inline-block;
  opacity: 1;
  visibility: visible;
  transition: all .4s ease
}

.entry-footer .post-share>ul>li .tag-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  background: #f2f2f2;
  padding: 10px 16px;
  border-radius: 5px;
  color: #0554f2;
  margin-left: 8px
}

#mega-menu-item-8100 a svg {
  fill: currentColor;
  vertical-align: middle;
  margin-left: 15px;
  width: 26px;
  margin-top: -3px;
  visibility: visible
}

.app-submit svg {
  fill: currentColor;
  vertical-align: top;
  margin-left: 15px;
  width: 26px;
  margin-top: -3px
}

.sjb-page .col-md-3 {
  width: 25%
}

.sjb-page .list-data .sjb-job-characteristics {
  border-top: 0;
  margin-left: -18px
}

.post-default .rtin-item-post .rtin-content h3 a {
  color: #0554f2;
  font-size: 20px
}

.post-grid-style2 .rtin-item-post .rtin-content {
  padding: 30px 30px 25px;
  background: #fff;
  z-index: 2;
  position: relative;
  border-radius: 0 0 15px 15px
}

.sp-easy-accordion .sp-ea-single .ea-header a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  color: #444;
  font-size: 20px;
  line-height: 28px;
  box-shadow: none;
  font-family: 'Rubik'
}

.sp-easy-accordion .sp-ea-single .ea-body {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #2B2A4E99 !important
}

.sp-easy-accordion .sp-ea-single {
  background: #efefef;
  margin-bottom: 10px;
  border: 1px solid #2b2a4e !important;
  border-radius: 5px !important;
  padding: 3px
}

.sp-easy-accordion .ea-expand .ea-header {
  background-color: #fff;
  color: #000;
  border-radius: 5px
}

#sp-ea-13901.sp-easy-accordion>.sp-ea-single {
  background: #fff;
  border-radius: 5px
}

#sp-ea-13901.sp-easy-accordion>.ea-expand>.ea-header a {
  color: #444
}

#sp-ea-13901.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon {
  float: right;
  color: #444;
  font-size: 16px;
  padding: 2px;
  padding: 1px 5px
}

#sp-ea-13901.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body {
  border-top: .5px solid #999;
  background: #fff;
  color: #444;
  padding: 20px 30px 22px
}

#sp-ea-13901.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-icon-expand-minus {
  float: right;
  color: #444;
  font-size: 16px;
  padding: 2px;
  padding: 1px 5px
}

#sp-ea-13901.sp-easy-accordion>.sp-ea-single {
  margin-bottom: 10px;
  border: 1px solid #fff
}

#sp-ea-15305 .sp-easy-accordion>.sp-ea-single {
  background: #fff !important;
  border-radius: 5px
}

#sp-ea-15305.sp-easy-accordion>.ea-expand>.ea-header a {
  color: #444
}

#sp-ea-15305.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon {
  float: right;
  color: #444;
  font-size: 16px;
  padding: 2px;
  padding: 1px 5px
}

#sp-ea-15305.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body {
  border-top: .5px solid #999;
  background: #fff;
  color: #444;
  padding: 20px 30px 22px
}

#sp-ea-15305.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-icon-expand-minus {
  float: right;
  color: #444;
  font-size: 16px;
  padding: 2px;
  padding: 1px 5px
}

.home-blog-list .rtin-content .rtin-title a {
  font-size: 25px !important
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-control {
  background-color: #fff;
  box-shadow: none;
  color: #14133b;
  border: 1px solid #ededed;
  border-radius: 4px;
  font-size: 15px;
  height: 40px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form label {
  font-size: 16px;
  font-family: rubik, sans-serif;
  font-weight: 400;
  padding-left: 5px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .col-md-3,
.sjb-page .sjb-detail .list-data .v2 .jobpost-form .col-md-9 {
  width: 100%
}

.year-of-establishment span.counter:after {
  content: "" !important
}

.customer-retention span.counter:after {
  content: "%" !important
}

.codeIgniter-image .feature-style2 .rtin-item .rtin-icon img {
  height: 80px;
  width: 80px;
  padding: 5px
}

.codeIgniter-image:hover img {
  background-color: #fff;
  padding: 2px;
  border-radius: 50px;
  height: 80px;
  width: 80px
}

.flutter-image:hover img {
  transition: all .8s ease
}

.google-cloud-image:hover img {
  transition: all .8s ease
}

.godaddy-image .feature-style2 .rtin-item .rtin-icon img {
  height: 80px;
  width: 80px
}

.godaddy-image:hover img {
  transition: all .8s ease
}

.feature-box {
  visibility: visible;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-name: none
}

.dt-custom-link {
  text-transform: capitalize
}

.dt-custom-link:hover {
  color: #0554fa !important;
  text-transform: capitalize;
  border-bottom: 2px solid #0554fa
}

.dt-custom-bg-link {
  text-transform: capitalize;
  color: #9bf !important
}

.dt-custom-bg-link:hover {
  color: #fff !important;
  text-transform: capitalize;
  border-bottom: 2px solid #9bf
}

.sjb-page .sjb-detail .list-data .v2 ul li {
  font-size: 16px;
  line-height: 24px;
  padding-left: 25px;
  position: relative
}

.sjb-page .sjb-detail .list-data .v1 ul li:before,
.sjb-page .sjb-detail .list-data .v2 ul li:before {
  color: #0554fa;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  left: 0;
  position: absolute;
  top: 0
}

.info-box .rtin-title a:hover {
  color: #fff !important
}

a.button-style-1:hover {
  color: #fff !important
}

.rtin-contact-info .rtin-item {
  border-radius: 10px;
  background-color: #f8fcff;
  padding: 30px;
  display: flex
}

#social-row a {
  color: #444 !important
}

#social-row a:hover {
  color: #0554fa !important
}

.dt-text {
  text-align: left
}

.jobpost .rt-related-post {
  display: none;
  visibility: hidden
}

.blog-box .entry-content h3 {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: 500
}

.blog-layout-1 .blog-text p {
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px !important;
  line-height: 30px !important
}

@media only screen and (max-width:425px) {
  h4 .job-title {
    font-size: 20px !important;
    font-family: rubik, sans-serif;
    color: #444;
    font-weight: 300
  }

  h4 .job-title:hover {
    font-size: 25px;
    font-family: rubik, sans-serif;
    color: #0554f2;
    font-weight: 300
  }

  .sjb-page .list-data .v2 .job-info h4 {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    text-align: center
  }

  .sjb-page .list-data .v2 .sjb-apply-now-btn p {
    float: left;
    width: 100%
  }

  .sjb-page .list-data .v2 .sjb-apply-now-btn a {
    width: 100%;
    text-align: center;
    padding: 15px 30%
  }

  .sjb-page .col-md-3 {
    width: 100%
  }

  .sjb-page .list-data .sjb-company-wrapper-details-list {
    padding: 15px;
    overflow: hidden
  }

  .post-grid-style2 .rtin-item-post .rtin-content {
    padding: 30px 30px 25px;
    background: #fff;
    z-index: 2;
    position: relative;
    border-radius: 0 0 15px 15px
  }

  #mega-menu-item-7592 a:before,
  #mega-menu-item-7627 a:before,
  #mega-menu-item-9723 a:before,
  #mega-menu-item-7995 a:before,
  #mega-menu-item-7989 a:before {
    margin-top: 15px !important;
    height: 25px !important
  }

  #mega-menu-item-7638 a:before,
  #mega-menu-item-9724 a:before {
    margin-top: 10px !important;
    height: 25px !important
  }
}

@media only screen and (max-width:768px) {
  h4 .job-title {
    font-size: 40px
  }

  h4 .job-title:hover {
    font-size: 40px
  }

  .sjb-page .col-md-3 {
    width: 100%
  }

  #mega-menu-item-7592 a:before,
  #mega-menu-item-7627 a:before,
  #mega-menu-item-9723 a:before,
  #mega-menu-item-7995 a:before,
  #mega-menu-item-7989 a:before {
    margin-top: 15px !important;
    height: 25px !important
  }

  #mega-menu-item-7638 a:before,
  #mega-menu-item-9724 a:before {
    margin-top: 10px !important;
    height: 25px !important
  }

  .rt-masonry-grid .col-md-4,
  .rt-masonry-grid .col-md-4 .blog-box,
  .rt-masonry-grid .col-md-4 .blog-box .blog-img-holder,
  .rt-masonry-grid .col-md-4 .blog-box .blog-img-holder img {
    width: 100% !important
  }
}

.owl-wrap {
  margin-bottom: 60px
}

.tnp-subscription label {
  display: none !important
}

.tnp-subscription div.tnp-field {
  display: grid
}

.tnp-subscription div.tnp-field-email {
  width: 100%
}

.tnp-subscription input.tnp-submit {
  text-transform: uppercase;
  padding: 15px 25px;
  color: #fff;
  background: #0554f2;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 50;
  letter-spacing: .2px;
  font-weight: 400
}

.dt-custom-toc li a .elementor-icon-list-text {
  padding: 0 5px !important;
  line-height: 20px !important
}

.dt-custom-toc li .dt-custom-hover-link:hover {
  text-decoration: underline
}

.dt-custom-social a {
  color: #444
}

.dt-custom-social a:hover {
  color: #0554fa
}

.feature-style2 .rtin-item .rtin-title {
  margin-left: -5px;
  margin-right: -30px
}

.blog-box .blog-img-holder:before {
  background-image: none !important
}

.blog-box .blog-img-holder:after {
  background-image: none !important
}

.blog-box ul {
  left: 0 !important;
  right: 0 !important;
  bottom: -30px !important;
  z-index: 999 !important
}

.blog-box ul li,
.blog-box ul li a {
  color: #000
}

.blog-box .blog-img-holder ul {
  background-color: #f2f2f2 !important;
  padding: 5px 20px;
  margin-bottom: 10px
}

.blog-box .entry-content {
  padding: 40px 30px 25px !important
}

@font-face {
  font-display: swap;
  font-family: eap-fontello;
  src: url(/wp-content/plugins/easy-accordion-free/admin/font/fontello.eot?83449824);
  src: url(/wp-content/plugins/easy-accordion-free/admin/font/fontello.eot?83449824#iefix) format('embedded-opentype'), url(/wp-content/plugins/easy-accordion-free/admin/font/fontello.woff2?83449824) format('woff2'), url(/wp-content/plugins/easy-accordion-free/admin/font/fontello.woff?83449824) format('woff'), url(/wp-content/plugins/easy-accordion-free/admin/font/fontello.ttf?83449824) format('truetype'), url(/wp-content/plugins/easy-accordion-free/admin/font/fontello.svg?83449824#fontello) format('svg');
  font-weight: 400;
  font-style: normal
}

[class*=" eap-icon-"]:before,
[class^=eap-icon-]:before {
  font-family: eap-fontello;
  font-style: normal;
  font-weight: 400;
  speak: never;
  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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.eap-icon-external-link:before {
  content: '\e800'
}

.eap-icon-accordion-menu:before {
  content: '\e802'
}

.eap-icon-ajax-pagination:before {
  content: '\e806'
}

.eap-icon-basic-preferences:before {
  content: '\e808'
}

.eap-icon-product-cart:before {
  content: '\e809'
}

.eap-icon-animation:before {
  content: '\e80a'
}

.eap-icon-theme-settings:before {
  content: '\e80b'
}

.eap-icon-post-meta:before {
  content: '\e80c'
}

.eap-icon-expand-collapse:before {
  content: '\e80d'
}

.eap-icon-title:before {
  content: '\e80e'
}

.eap-icon-theme-styles:before {
  content: '\e80f'
}

.eap-icon-image-style:before {
  content: '\e810'
}

.eap-icon-ea-expand-plus:before {
  content: '+';
  font-size: 30px;
}

.eap-icon-ea-expand-minus:before {
  content: '\f068'
}

.eap-icon-general:before {
  content: '\e801'
}

.sp-easy-accordion * {
  box-sizing: border-box
}

#poststuff .eap_section_title,
.editor-styles-wrapper h2.eap_section_title,
.eap_section_title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px
}

.post-type-sp_easy_accordion #poststuff .eap_section_title {
  padding: 0
}

.sp-easy-accordion a:focus,
.sp-easy-accordion a {
  box-shadow: none;
  outline: none
}

.sp-easy-accordion .ea-header:before {
  content: none
}

.sp-easy-accordion .ea-header {
  margin-top: 0
}

.sp-easy-accordion .sp-ea-single .ea-header {
  margin-bottom: 0
}

.sp-easy-accordion .sp-ea-single .ea-header a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  color: #444;
  font-size: 20px;
  line-height: 28px;
  box-shadow: none
}

.sp-easy-accordion .ea-card {
  border: none;
  border-radius: 0
}

.sp-easy-accordion .sp-ea-single .ea-header a .ea-expand-icon {
  color: #444;
  margin-right: 10px;
  text-align: center;
  line-height: inherit;
  font-size: 20px
}

.sp-easy-accordion .sp-ea-single {
  background: #efefef;
  margin-bottom: 10px;
  border-radius: 3px
}

.sp-easy-accordion .sp-ea-single .ea-body {
  padding: 15px;
  background: #fff;
  border-top: none
}

.sp-easy-accordion .sp-ea-single .ea-body p:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0
}

.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body p:first-of-type {
  padding-top: 0;
  margin-top: 0
}

.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body {
  padding: 15px;
  overflow: hidden
}

.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
  padding: 15px;
  color: #444
}

.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a .ea-expand-icon {
  color: #444;
  font-size: 20px
}

.ea-youtube-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden
}

.ea-youtube-wrapper iframe,
.ea-youtube-wrapper object,
.ea-youtube-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.spcollapse:not(.show) {
  display: none
}

.spcollapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height;
  transition-duration: .5s;
  transition-timing-function: linear
}

.wp-easy-accordion-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%
}

.wp-ea-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important
}

.sp-easy-accordion .ea-body .wp-audio-shortcode,
.sp-easy-accordion video {
  max-width: 100%
}

.sp-easy-accordion audio {
  width: 100%
}


.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

.fa-xs {
  font-size: .75em;
}

.fa-sm {
  font-size: .875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.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(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-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);
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-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,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-display: swap;
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/wp-content/plugins/simple-job-board/includes/fonts/fa-brands-400.eot");
  src: url("/wp-content/plugins/simple-job-board/includes/fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-brands-400.woff2") format("woff2"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-brands-400.woff") format("woff"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-brands-400.ttf") format("truetype"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/wp-content/plugins/simple-job-board/includes/fonts/fa-regular-400.eot");
  src: url("/wp-content/plugins/simple-job-board/includes/fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-regular-400.woff2") format("woff2"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-regular-400.woff") format("woff"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-regular-400.ttf") format("truetype"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-regular-400.svg#fontawesome") format("svg");
}

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

@font-face {
  font-display: swap;
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/wp-content/plugins/simple-job-board/includes/fonts/fa-solid-900.eot");
  src: url("/wp-content/plugins/simple-job-board/includes/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-solid-900.woff2") format("woff2"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-solid-900.woff") format("woff"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-solid-900.ttf") format("truetype"), url("/wp-content/plugins/simple-job-board/includes/fonts/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}


.ui-helper-hidden {
  display: none
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse
}

.ui-helper-clearfix:after {
  clear: both
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0)
}

.ui-front {
  z-index: 100
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0
}

.ui-menu .ui-menu {
  position: absolute
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px
}

.ui-menu-icons {
  position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0
}

.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none
}

.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap
}

input.ui-button.ui-button-icon-only {
  text-indent: 0
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em
}

input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block
}

.ui-controlgroup>.ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus {
  z-index: 9999
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
  border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
  border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid
}

.ui-checkboxradio-disabled {
  pointer-events: none
}

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px
}

.ui-datepicker .ui-datepicker-next {
  right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: 700;
  border: 0
}

.ui-datepicker td {
  border: 0;
  padding: 1px
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em;
  width: auto;
  overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left
}

.ui-datepicker.ui-datepicker-multi {
  width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0
}

.ui-datepicker-rtl {
  direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px
}

.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0;
  padding: 1px;
  height: 20px
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: 0 0;
  overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none
}

.ui-resizable {
  position: relative
}

.ui-resizable-handle {
  position: absolute;
  font-size: .1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: .25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted #000
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  padding: 2px .4em;
  margin: .5em 0 0;
  height: auto;
  border: 0
}

.ui-selectmenu-open {
  display: block
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0
}

.ui-slider {
  position: relative;
  text-align: left
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit
}

.ui-slider-horizontal {
  height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0
}

.ui-slider-vertical {
  width: .8em;
  height: 100px
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle
}

.ui-spinner-input {
  border: none;
  background: 0 0;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0
}

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none
}

.ui-spinner-up {
  top: 0
}

.ui-spinner-down {
  bottom: 0
}

.ui-tabs {
  position: relative;
  padding: .2em
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: 0 0
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px
}

body .ui-tooltip {
  border-width: 2px
}

.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em
}

.ui-widget .ui-widget {
  font-size: 1em
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333
}

.ui-widget-content a {
  color: #333
}

.ui-widget-header {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: 700
}

.ui-widget-header a {
  color: #333
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: 400;
  color: #454545
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #ccc;
  background: #ededed;
  font-weight: 400;
  color: #2b2b2b
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: 400;
  color: #fff
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #fff
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #fff;
  text-decoration: none
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: 700
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: 400
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35)
}

.ui-icon {
  width: 16px;
  height: 16px
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_444444_256x240.png")
}

.ui-widget-header .ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_444444_256x240.png")
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_555555_256x240.png")
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_ffffff_256x240.png")
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_777620_256x240.png")
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_cc0000_256x240.png")
}

.ui-button .ui-icon {
  background-image: url("/wp-content/plugins/simple-job-board/public/images/ui-icons_777777_256x240.png")
}

.ui-icon-blank {
  background-position: 16px 16px
}

.ui-icon-caret-1-n {
  background-position: 0 0
}

.ui-icon-caret-1-ne {
  background-position: -16px 0
}

.ui-icon-caret-1-e {
  background-position: -32px 0
}

.ui-icon-caret-1-se {
  background-position: -48px 0
}

.ui-icon-caret-1-s {
  background-position: -65px 0
}

.ui-icon-caret-1-sw {
  background-position: -80px 0
}

.ui-icon-caret-1-w {
  background-position: -96px 0
}

.ui-icon-caret-1-nw {
  background-position: -112px 0
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px
}

.ui-icon-arrow-4 {
  background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px
}

.ui-icon-extlink {
  background-position: -32px -80px
}

.ui-icon-newwin {
  background-position: -48px -80px
}

.ui-icon-refresh {
  background-position: -64px -80px
}

.ui-icon-shuffle {
  background-position: -80px -80px
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px
}

.ui-icon-folder-open {
  background-position: -16px -96px
}

.ui-icon-document {
  background-position: -32px -96px
}

.ui-icon-document-b {
  background-position: -48px -96px
}

.ui-icon-note {
  background-position: -64px -96px
}

.ui-icon-mail-closed {
  background-position: -80px -96px
}

.ui-icon-mail-open {
  background-position: -96px -96px
}

.ui-icon-suitcase {
  background-position: -112px -96px
}

.ui-icon-comment {
  background-position: -128px -96px
}

.ui-icon-person {
  background-position: -144px -96px
}

.ui-icon-print {
  background-position: -160px -96px
}

.ui-icon-trash {
  background-position: -176px -96px
}

.ui-icon-locked {
  background-position: -192px -96px
}

.ui-icon-unlocked {
  background-position: -208px -96px
}

.ui-icon-bookmark {
  background-position: -224px -96px
}

.ui-icon-tag {
  background-position: -240px -96px
}

.ui-icon-home {
  background-position: 0 -112px
}

.ui-icon-flag {
  background-position: -16px -112px
}

.ui-icon-calendar {
  background-position: -32px -112px
}

.ui-icon-cart {
  background-position: -48px -112px
}

.ui-icon-pencil {
  background-position: -64px -112px
}

.ui-icon-clock {
  background-position: -80px -112px
}

.ui-icon-disk {
  background-position: -96px -112px
}

.ui-icon-calculator {
  background-position: -112px -112px
}

.ui-icon-zoomin {
  background-position: -128px -112px
}

.ui-icon-zoomout {
  background-position: -144px -112px
}

.ui-icon-search {
  background-position: -160px -112px
}

.ui-icon-wrench {
  background-position: -176px -112px
}

.ui-icon-gear {
  background-position: -192px -112px
}

.ui-icon-heart {
  background-position: -208px -112px
}

.ui-icon-star {
  background-position: -224px -112px
}

.ui-icon-link {
  background-position: -240px -112px
}

.ui-icon-cancel {
  background-position: 0 -128px
}

.ui-icon-plus {
  background-position: -16px -128px
}

.ui-icon-plusthick {
  background-position: -32px -128px
}

.ui-icon-minus {
  background-position: -48px -128px
}

.ui-icon-minusthick {
  background-position: -64px -128px
}

.ui-icon-close {
  background-position: -80px -128px
}

.ui-icon-closethick {
  background-position: -96px -128px
}

.ui-icon-key {
  background-position: -112px -128px
}

.ui-icon-lightbulb {
  background-position: -128px -128px
}

.ui-icon-scissors {
  background-position: -144px -128px
}

.ui-icon-clipboard {
  background-position: -160px -128px
}

.ui-icon-copy {
  background-position: -176px -128px
}

.ui-icon-contact {
  background-position: -192px -128px
}

.ui-icon-image {
  background-position: -208px -128px
}

.ui-icon-video {
  background-position: -224px -128px
}

.ui-icon-script {
  background-position: -240px -128px
}

.ui-icon-alert {
  background-position: 0 -144px
}

.ui-icon-info {
  background-position: -16px -144px
}

.ui-icon-notice {
  background-position: -32px -144px
}

.ui-icon-help {
  background-position: -48px -144px
}

.ui-icon-check {
  background-position: -64px -144px
}

.ui-icon-bullet {
  background-position: -80px -144px
}

.ui-icon-radio-on {
  background-position: -96px -144px
}

.ui-icon-radio-off {
  background-position: -112px -144px
}

.ui-icon-pin-w {
  background-position: -128px -144px
}

.ui-icon-pin-s {
  background-position: -144px -144px
}

.ui-icon-play {
  background-position: 0 -160px
}

.ui-icon-pause {
  background-position: -16px -160px
}

.ui-icon-seek-next {
  background-position: -32px -160px
}

.ui-icon-seek-prev {
  background-position: -48px -160px
}

.ui-icon-seek-end {
  background-position: -64px -160px
}

.ui-icon-seek-start {
  background-position: -80px -160px
}

.ui-icon-seek-first {
  background-position: -80px -160px
}

.ui-icon-stop {
  background-position: -96px -160px
}

.ui-icon-eject {
  background-position: -112px -160px
}

.ui-icon-volume-off {
  background-position: -128px -160px
}

.ui-icon-volume-on {
  background-position: -144px -160px
}

.ui-icon-power {
  background-position: 0 -176px
}

.ui-icon-signal-diag {
  background-position: -16px -176px
}

.ui-icon-signal {
  background-position: -32px -176px
}

.ui-icon-battery-0 {
  background-position: -48px -176px
}

.ui-icon-battery-1 {
  background-position: -64px -176px
}

.ui-icon-battery-2 {
  background-position: -80px -176px
}

.ui-icon-battery-3 {
  background-position: -96px -176px
}

.ui-icon-circle-plus {
  background-position: 0 -192px
}

.ui-icon-circle-minus {
  background-position: -16px -192px
}

.ui-icon-circle-close {
  background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px
}

.ui-icon-circle-check {
  background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px
}

.ui-widget-overlay {
  background: #aaa;
  opacity: .3;
  filter: Alpha(Opacity=30)
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666;
  box-shadow: 0px 0px 5px #666
}

/*!
 * Copyright 2011-2016 Twitter, Inc.
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.sjb-container-main {
  width: 100%
}

.sjb-page .row:after {
  content: " ";
  display: block;
  clear: both
}

.sjb-page a,
.sjb-page .list-data a {
  text-decoration: none
}

.sjb-page a:hover,
.sjb-page a:active {
  outline: 0
}

.sjb-page b,
.sjb-page strong {
  font-weight: 700
}

.sjb-page h1 {
  font-size: 2em;
  margin: .67em 0
}

.sjb-page small {
  font-size: 80%
}

.sjb-page img {
  border: 0
}

.sjb-page button,
.sjb-page input,
.sjb-page select,
.sjb-page textarea {
  font: inherit;
  margin: 0
}

.sjb-page button {
  overflow: visible
}

.sjb-page button,
.sjb-page select {
  text-transform: none
}

.sjb-page button,
.sjb-page html input[type=button],
.sjb-page input[type=reset],
.sjb-page input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer
}

.sjb-page button::-moz-focus-inner,
.sjb-page input::-moz-focus-inner {
  border: 0;
  padding: 0
}

.sjb-page input {
  line-height: normal
}

.sjb-page input[type=checkbox],
.sjb-page input[type=radio] {
  box-sizing: border-box;
  padding: 0
}

.sjb-page input[type=number]::-webkit-inner-spin-button,
.sjb-page input[type=number]::-webkit-outer-spin-button {
  height: auto
}

.sjb-page input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box
}

.sjb-page input[type=search]::-webkit-search-cancel-button,
.sjb-page input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

.sjb-page textarea {
  overflow: auto
}

.sjb-page table {
  border-collapse: collapse;
  border-spacing: 0
}

.sjb-page {
  margin: 0 auto;
  padding: 20px
}

.sjb-page * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.sjb-page *:before,
.sjb-page *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.sjb-page input,
.sjb-page button,
.sjb-page select,
.sjb-page textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

.sjb-page a {
  text-decoration: none
}

.sjb-page a:hover,
.sjb-page a:focus {
  text-decoration: none
}

.sjb-page a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

.sjb-page img {
  vertical-align: middle
}

.sjb-page .img-responsive {
  display: block;
  max-width: 100%;
  height: auto
}

.sjb-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.sjb-page [role=button] {
  cursor: pointer
}

.sjb-page h1,
.sjb-page h2,
.sjb-page h3 {
  margin-top: 20px;
  margin-bottom: 10px
}

.sjb-page h4,
.sjb-page h5,
.sjb-page h6 {
  margin-top: 10px;
  margin-bottom: 10px
}

.sjb-page p {
  margin: 0 0 10px
}

.sjb-page ul,
.sjb-page ol {
  margin-top: 0;
  margin-bottom: 10px
}

.sjb-page ul ul,
.sjb-page ol ul,
.sjb-page ul ol,
.sjb-page ol ol {
  margin-bottom: 0
}

.sjb-page .row {
  margin-left: -15px;
  margin-right: -15px
}

.sjb-page .col-xs-1,
.sjb-page .col-sm-1,
.sjb-page .col-md-1,
.sjb-page .col-lg-1,
.sjb-page .col-xs-2,
.sjb-page .col-sm-2,
.sjb-page .col-md-2,
.sjb-page .col-lg-2,
.sjb-page .col-xs-3,
.sjb-page .col-sm-3,
.sjb-page .col-md-3,
.sjb-page .col-lg-3,
.sjb-page .col-xs-4,
.sjb-page .col-sm-4,
.sjb-page .col-md-4,
.sjb-page .col-lg-4,
.sjb-page .col-xs-5,
.sjb-page .col-sm-5,
.sjb-page .col-md-5,
.sjb-page .col-lg-5,
.sjb-page .col-xs-6,
.sjb-page .col-sm-6,
.sjb-page .col-md-6,
.sjb-page .col-lg-6,
.sjb-page .col-xs-7,
.sjb-page .col-sm-7,
.sjb-page .col-md-7,
.sjb-page .col-lg-7,
.sjb-page .col-xs-8,
.sjb-page .col-sm-8,
.sjb-page .col-md-8,
.sjb-page .col-lg-8,
.sjb-page .col-xs-9,
.sjb-page .col-sm-9,
.sjb-page .col-md-9,
.sjb-page .col-lg-9,
.sjb-page .col-xs-10,
.sjb-page .col-sm-10,
.sjb-page .col-md-10,
.sjb-page .col-lg-10,
.sjb-page .col-xs-11,
.sjb-page .col-sm-11,
.sjb-page .col-md-11,
.sjb-page .col-lg-11,
.sjb-page .col-xs-12,
.sjb-page .col-sm-12,
.sjb-page .col-md-12,
.sjb-page .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.sjb-page .col-xs-1,
.sjb-page .col-xs-2,
.sjb-page .col-xs-3,
.sjb-page .col-xs-4,
.sjb-page .col-xs-5,
.sjb-page .col-xs-6,
.sjb-page .col-xs-7,
.sjb-page .col-xs-8,
.sjb-page .col-xs-9,
.sjb-page .col-xs-10,
.sjb-page .col-xs-11,
.sjb-page .col-xs-12 {
  float: left
}

.sjb-page .col-xs-12 {
  width: 100%
}

.sjb-page .col-xs-11 {
  width: 91.66666667%
}

.sjb-page .col-xs-10 {
  width: 83.33333333%
}

.sjb-page .col-xs-9 {
  width: 75%
}

.sjb-page .col-xs-8 {
  width: 66.66666667%
}

.sjb-page .col-xs-7 {
  width: 58.33333333%
}

.sjb-page .col-xs-6 {
  width: 50%
}

.sjb-page .col-xs-5 {
  width: 41.66666667%
}

.sjb-page .col-xs-4 {
  width: 33.33333333%
}

.sjb-page .col-xs-3 {
  width: 25%
}

.sjb-page .col-xs-2 {
  width: 16.66666667%
}

.sjb-page .col-xs-1 {
  width: 8.33333333%
}

.sjb-page .col-xs-pull-12 {
  right: 100%
}

.sjb-page .col-xs-pull-11 {
  right: 91.66666667%
}

.sjb-page .col-xs-pull-10 {
  right: 83.33333333%
}

.sjb-page .col-xs-pull-9 {
  right: 75%
}

.sjb-page .col-xs-pull-8 {
  right: 66.66666667%
}

.sjb-page .col-xs-pull-7 {
  right: 58.33333333%
}

.sjb-page .col-xs-pull-6 {
  right: 50%
}

.sjb-page .col-xs-pull-5 {
  right: 41.66666667%
}

.sjb-page .col-xs-pull-4 {
  right: 33.33333333%
}

.sjb-page .col-xs-pull-3 {
  right: 25%
}

.sjb-page .col-xs-pull-2 {
  right: 16.66666667%
}

.sjb-page .col-xs-pull-1 {
  right: 8.33333333%
}

.sjb-page .col-xs-pull-0 {
  right: auto
}

.sjb-page .col-xs-push-12 {
  left: 100%
}

.sjb-page .col-xs-push-11 {
  left: 91.66666667%
}

.sjb-page .col-xs-push-10 {
  left: 83.33333333%
}

.sjb-page .col-xs-push-9 {
  left: 75%
}

.sjb-page .col-xs-push-8 {
  left: 66.66666667%
}

.sjb-page .col-xs-push-7 {
  left: 58.33333333%
}

.sjb-page .col-xs-push-6 {
  left: 50%
}

.sjb-page .col-xs-push-5 {
  left: 41.66666667%
}

.sjb-page .col-xs-push-4 {
  left: 33.33333333%
}

.sjb-page .col-xs-push-3 {
  left: 25%
}

.sjb-page .col-xs-push-2 {
  left: 16.66666667%
}

.sjb-page .col-xs-push-1 {
  left: 8.33333333%
}

.sjb-page .col-xs-push-0 {
  left: auto
}

.sjb-page .col-xs-offset-12 {
  margin-left: 100%
}

.sjb-page .col-xs-offset-11 {
  margin-left: 91.66666667%
}

.sjb-page .col-xs-offset-10 {
  margin-left: 83.33333333%
}

.sjb-page .col-xs-offset-9 {
  margin-left: 75%
}

.sjb-page .col-xs-offset-8 {
  margin-left: 66.66666667%
}

.sjb-page .col-xs-offset-7 {
  margin-left: 58.33333333%
}

.sjb-page .col-xs-offset-6 {
  margin-left: 50%
}

.sjb-page .col-xs-offset-5 {
  margin-left: 41.66666667%
}

.sjb-page .col-xs-offset-4 {
  margin-left: 33.33333333%
}

.sjb-page .col-xs-offset-3 {
  margin-left: 25%
}

.sjb-page .col-xs-offset-2 {
  margin-left: 16.66666667%
}

.sjb-page .col-xs-offset-1 {
  margin-left: 8.33333333%
}

.sjb-page .col-xs-offset-0 {
  margin-left: 0
}

@media (min-width:768px) {

  .sjb-page .col-sm-1,
  .sjb-page .col-sm-2,
  .sjb-page .col-sm-3,
  .sjb-page .col-sm-4,
  .sjb-page .col-sm-5,
  .sjb-page .col-sm-6,
  .sjb-page .col-sm-7,
  .sjb-page .col-sm-8,
  .sjb-page .col-sm-9,
  .sjb-page .col-sm-10,
  .sjb-page .col-sm-11,
  .sjb-page .col-sm-12 {
    float: left
  }

  .sjb-page .col-sm-12 {
    width: 100%
  }

  .sjb-page .col-sm-11 {
    width: 91.66666667%
  }

  .sjb-page .col-sm-10 {
    width: 83.33333333%
  }

  .sjb-page .col-sm-9 {
    width: 75%
  }

  .sjb-page .col-sm-8 {
    width: 66.66666667%
  }

  .sjb-page .col-sm-7 {
    width: 58.33333333%
  }

  .sjb-page .col-sm-6 {
    width: 50%
  }

  .sjb-page .col-sm-5 {
    width: 41.66666667%
  }

  .sjb-page .col-sm-4 {
    width: 33.33333333%
  }

  .sjb-page .col-sm-3 {
    width: 25%
  }

  .sjb-page .col-sm-2 {
    width: 16.66666667%
  }

  .sjb-page .col-sm-1 {
    width: 8.33333333%
  }

  .sjb-page .col-sm-pull-12 {
    right: 100%
  }

  .sjb-page .col-sm-pull-11 {
    right: 91.66666667%
  }

  .sjb-page .col-sm-pull-10 {
    right: 83.33333333%
  }

  .sjb-page .col-sm-pull-9 {
    right: 75%
  }

  .sjb-page .col-sm-pull-8 {
    right: 66.66666667%
  }

  .sjb-page .col-sm-pull-7 {
    right: 58.33333333%
  }

  .sjb-page .col-sm-pull-6 {
    right: 50%
  }

  .sjb-page .col-sm-pull-5 {
    right: 41.66666667%
  }

  .sjb-page .col-sm-pull-4 {
    right: 33.33333333%
  }

  .sjb-page .col-sm-pull-3 {
    right: 25%
  }

  .sjb-page .col-sm-pull-2 {
    right: 16.66666667%
  }

  .sjb-page .col-sm-pull-1 {
    right: 8.33333333%
  }

  .sjb-page .col-sm-pull-0 {
    right: auto
  }

  .sjb-page .col-sm-push-12 {
    left: 100%
  }

  .sjb-page .col-sm-push-11 {
    left: 91.66666667%
  }

  .sjb-page .col-sm-push-10 {
    left: 83.33333333%
  }

  .sjb-page .col-sm-push-9 {
    left: 75%
  }

  .sjb-page .col-sm-push-8 {
    left: 66.66666667%
  }

  .sjb-page .col-sm-push-7 {
    left: 58.33333333%
  }

  .sjb-page .col-sm-push-6 {
    left: 50%
  }

  .sjb-page .col-sm-push-5 {
    left: 41.66666667%
  }

  .sjb-page .col-sm-push-4 {
    left: 33.33333333%
  }

  .sjb-page .col-sm-push-3 {
    left: 25%
  }

  .sjb-page .col-sm-push-2 {
    left: 16.66666667%
  }

  .sjb-page .col-sm-push-1 {
    left: 8.33333333%
  }

  .sjb-page .col-sm-push-0 {
    left: auto
  }

  .sjb-page .col-sm-offset-12 {
    margin-left: 100%
  }

  .sjb-page .col-sm-offset-11 {
    margin-left: 91.66666667%
  }

  .sjb-page .col-sm-offset-10 {
    margin-left: 83.33333333%
  }

  .sjb-page .col-sm-offset-9 {
    margin-left: 75%
  }

  .sjb-page .col-sm-offset-8 {
    margin-left: 66.66666667%
  }

  .sjb-page .col-sm-offset-7 {
    margin-left: 58.33333333%
  }

  .sjb-page .col-sm-offset-6 {
    margin-left: 50%
  }

  .sjb-page .col-sm-offset-5 {
    margin-left: 41.66666667%
  }

  .sjb-page .col-sm-offset-4 {
    margin-left: 33.33333333%
  }

  .sjb-page .col-sm-offset-3 {
    margin-left: 25%
  }

  .sjb-page .col-sm-offset-2 {
    margin-left: 16.66666667%
  }

  .sjb-page .col-sm-offset-1 {
    margin-left: 8.33333333%
  }

  .sjb-page .col-sm-offset-0 {
    margin-left: 0
  }
}

@media (min-width:992px) {

  .sjb-page .col-md-1,
  .sjb-page .col-md-2,
  .sjb-page .col-md-3,
  .sjb-page .col-md-4,
  .sjb-page .col-md-5,
  .sjb-page .col-md-6,
  .sjb-page .col-md-7,
  .sjb-page .col-md-8,
  .sjb-page .col-md-9,
  .sjb-page .col-md-10,
  .sjb-page .col-md-11,
  .sjb-page .col-md-12 {
    float: left
  }

  .sjb-page .col-md-12 {
    width: 100%
  }

  .sjb-page .col-md-11 {
    width: 91.66666667%
  }

  .sjb-page .col-md-10 {
    width: 75%
  }

  .sjb-page .col-md-9 {
    width: 75%
  }

  .sjb-page .col-md-8 {
    width: 66.66666667%
  }

  .sjb-page .col-md-7 {
    width: 58.33333333%
  }

  .sjb-page .col-md-6 {
    width: 50%
  }

  .sjb-page .col-md-5 {
    width: 41.66666667%
  }

  .sjb-page .col-md-4 {
    width: 33.33333333%
  }

  .sjb-page .col-md-3 {
    width: 25%
  }

  .sjb-page .col-md-2 {
    width: 16.66666667%
  }

  .sjb-page .col-md-1 {
    width: 8.33333333%
  }

  .sjb-page .col-md-pull-12 {
    right: 100%
  }

  .sjb-page .col-md-pull-11 {
    right: 91.66666667%
  }

  .sjb-page .col-md-pull-10 {
    right: 83.33333333%
  }

  .sjb-page .col-md-pull-9 {
    right: 75%
  }

  .sjb-page .col-md-pull-8 {
    right: 66.66666667%
  }

  .sjb-page .col-md-pull-7 {
    right: 58.33333333%
  }

  .sjb-page .col-md-pull-6 {
    right: 50%
  }

  .sjb-page .col-md-pull-5 {
    right: 41.66666667%
  }

  .sjb-page .col-md-pull-4 {
    right: 33.33333333%
  }

  .sjb-page .col-md-pull-3 {
    right: 25%
  }

  .sjb-page .col-md-pull-2 {
    right: 16.66666667%
  }

  .sjb-page .col-md-pull-1 {
    right: 8.33333333%
  }

  .sjb-page .col-md-pull-0 {
    right: auto
  }

  .sjb-page .col-md-push-12 {
    left: 100%
  }

  .sjb-page .col-md-push-11 {
    left: 91.66666667%
  }

  .sjb-page .col-md-push-10 {
    left: 83.33333333%
  }

  .sjb-page .col-md-push-9 {
    left: 75%
  }

  .sjb-page .col-md-push-8 {
    left: 66.66666667%
  }

  .sjb-page .col-md-push-7 {
    left: 58.33333333%
  }

  .sjb-page .col-md-push-6 {
    left: 50%
  }

  .sjb-page .col-md-push-5 {
    left: 41.66666667%
  }

  .sjb-page .col-md-push-4 {
    left: 33.33333333%
  }

  .sjb-page .col-md-push-3 {
    left: 25%
  }

  .sjb-page .col-md-push-2 {
    left: 16.66666667%
  }

  .sjb-page .col-md-push-1 {
    left: 8.33333333%
  }

  .sjb-page .col-md-push-0 {
    left: auto
  }

  .sjb-page .col-md-offset-12 {
    margin-left: 100%
  }

  .sjb-page .col-md-offset-11 {
    margin-left: 91.66666667%
  }

  .sjb-page .col-md-offset-10 {
    margin-left: 83.33333333%
  }

  .sjb-page .col-md-offset-9 {
    margin-left: 75%
  }

  .sjb-page .col-md-offset-8 {
    margin-left: 66.66666667%
  }

  .sjb-page .col-md-offset-7 {
    margin-left: 58.33333333%
  }

  .sjb-page .col-md-offset-6 {
    margin-left: 50%
  }

  .sjb-page .col-md-offset-5 {
    margin-left: 41.66666667%
  }

  .sjb-page .col-md-offset-4 {
    margin-left: 33.33333333%
  }

  .sjb-page .col-md-offset-3 {
    margin-left: 25%
  }

  .sjb-page .col-md-offset-2 {
    margin-left: 16.66666667%
  }

  .sjb-page .col-md-offset-1 {
    margin-left: 8.33333333%
  }

  .sjb-page .col-md-offset-0 {
    margin-left: 0
  }
}

@media (min-width:1200px) {

  .sjb-page .col-lg-1,
  .sjb-page .col-lg-2,
  .sjb-page .col-lg-3,
  .sjb-page .col-lg-4,
  .sjb-page .col-lg-5,
  .sjb-page .col-lg-6,
  .sjb-page .col-lg-7,
  .sjb-page .col-lg-8,
  .sjb-page .col-lg-9,
  .sjb-page .col-lg-10,
  .sjb-page .col-lg-11,
  .sjb-page .col-lg-12 {
    float: left
  }

  .sjb-page .col-lg-12 {
    width: 100%
  }

  .sjb-page .col-lg-11 {
    width: 91.66666667%
  }

  .sjb-page .col-lg-10 {
    width: 83.33333333%
  }

  .sjb-page .col-lg-9 {
    width: 75%
  }

  .sjb-page .col-lg-8 {
    width: 66.66666667%
  }

  .sjb-page .col-lg-7 {
    width: 58.33333333%
  }

  .sjb-page .col-lg-6 {
    width: 50%
  }

  .sjb-page .col-lg-5 {
    width: 41.66666667%
  }

  .sjb-page .col-lg-4 {
    width: 33.33333333%
  }

  .sjb-page .col-lg-3 {
    width: 25%
  }

  .sjb-page .col-lg-2 {
    width: 16.66666667%
  }

  .sjb-page .col-lg-1 {
    width: 8.33333333%
  }

  .sjb-page .col-lg-pull-12 {
    right: 100%
  }

  .sjb-page .col-lg-pull-11 {
    right: 91.66666667%
  }

  .sjb-page .col-lg-pull-10 {
    right: 83.33333333%
  }

  .sjb-page .col-lg-pull-9 {
    right: 75%
  }

  .sjb-page .col-lg-pull-8 {
    right: 66.66666667%
  }

  .sjb-page .col-lg-pull-7 {
    right: 58.33333333%
  }

  .sjb-page .col-lg-pull-6 {
    right: 50%
  }

  .sjb-page .col-lg-pull-5 {
    right: 41.66666667%
  }

  .sjb-page .col-lg-pull-4 {
    right: 33.33333333%
  }

  .sjb-page .col-lg-pull-3 {
    right: 25%
  }

  .sjb-page .col-lg-pull-2 {
    right: 16.66666667%
  }

  .sjb-page .col-lg-pull-1 {
    right: 8.33333333%
  }

  .sjb-page .col-lg-pull-0 {
    right: auto
  }

  .sjb-page .col-lg-push-12 {
    left: 100%
  }

  .sjb-page .col-lg-push-11 {
    left: 91.66666667%
  }

  .sjb-page .col-lg-push-10 {
    left: 83.33333333%
  }

  .sjb-page .col-lg-push-9 {
    left: 75%
  }

  .sjb-page .col-lg-push-8 {
    left: 66.66666667%
  }

  .sjb-page .col-lg-push-7 {
    left: 58.33333333%
  }

  .sjb-page .col-lg-push-6 {
    left: 50%
  }

  .sjb-page .col-lg-push-5 {
    left: 41.66666667%
  }

  .sjb-page .col-lg-push-4 {
    left: 33.33333333%
  }

  .sjb-page .col-lg-push-3 {
    left: 25%
  }

  .sjb-page .col-lg-push-2 {
    left: 16.66666667%
  }

  .sjb-page .col-lg-push-1 {
    left: 8.33333333%
  }

  .sjb-page .col-lg-push-0 {
    left: auto
  }

  .sjb-page .col-lg-offset-12 {
    margin-left: 100%
  }

  .sjb-page .col-lg-offset-11 {
    margin-left: 91.66666667%
  }

  .sjb-page .col-lg-offset-10 {
    margin-left: 83.33333333%
  }

  .sjb-page .col-lg-offset-9 {
    margin-left: 75%
  }

  .sjb-page .col-lg-offset-8 {
    margin-left: 66.66666667%
  }

  .sjb-page .col-lg-offset-7 {
    margin-left: 58.33333333%
  }

  .sjb-page .col-lg-offset-6 {
    margin-left: 50%
  }

  .sjb-page .col-lg-offset-5 {
    margin-left: 41.66666667%
  }

  .sjb-page .col-lg-offset-4 {
    margin-left: 33.33333333%
  }

  .sjb-page .col-lg-offset-3 {
    margin-left: 25%
  }

  .sjb-page .col-lg-offset-2 {
    margin-left: 16.66666667%
  }

  .sjb-page .col-lg-offset-1 {
    margin-left: 8.33333333%
  }

  .sjb-page .col-lg-offset-0 {
    margin-left: 0
  }
}

.sjb-page table {
  background-color: transparent
}

.sjb-page th {
  text-align: left
}

.sjb-page .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px
}

.sjb-page .table>thead>tr>th,
.sjb-page .table>tbody>tr>th,
.sjb-page .table>tfoot>tr>th,
.sjb-page .table>thead>tr>td,
.sjb-page .table>tbody>tr>td,
.sjb-page .table>tfoot>tr>td {
  padding: 8px;
  border-top: 1px solid #ddd
}

.sjb-page .table>thead>tr>th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd
}

.sjb-page .table>caption+thead>tr:first-child>th,
.sjb-page .table>colgroup+thead>tr:first-child>th,
.sjb-page .table>thead:first-child>tr:first-child>th,
.sjb-page .table>caption+thead>tr:first-child>td,
.sjb-page .table>colgroup+thead>tr:first-child>td,
.sjb-page .table>thead:first-child>tr:first-child>td {
  border-top: 0
}

.sjb-page .table>tbody+tbody {
  border-top: 2px solid #ddd
}

.sjb-page .table-condensed>thead>tr>th,
.sjb-page .table-condensed>tbody>tr>th,
.sjb-page .table-condensed>tfoot>tr>th,
.sjb-page .table-condensed>thead>tr>td,
.sjb-page .table-condensed>tbody>tr>td,
.sjb-page .table-condensed>tfoot>tr>td {
  padding: 5px
}

.sjb-page .table-bordered>thead>tr>th,
.sjb-page .table-bordered>thead>tr>td {
  border-bottom-width: 2px
}

.sjb-page table col[class*=col-] {
  position: static;
  float: none;
  display: table-column
}

.sjb-page table td[class*=col-],
.sjb-page table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell
}

.sjb-page .table-responsive {
  overflow-x: auto;
  min-height: .01%
}

@media screen and (max-width:767px) {
  .sjb-page .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd
  }

  .sjb-page .table-responsive>.table {
    margin-bottom: 0
  }

  .sjb-page .table-responsive>.table>thead>tr>th,
  .sjb-page .table-responsive>.table>tbody>tr>th,
  .sjb-page .table-responsive>.table>tfoot>tr>th,
  .sjb-page .table-responsive>.table>thead>tr>td,
  .sjb-page .table-responsive>.table>tbody>tr>td,
  .sjb-page .table-responsive>.table>tfoot>tr>td {
    white-space: nowrap
  }

  .sjb-page .table-responsive>.table-bordered {
    border: 0
  }

  .sjb-page .table-responsive>.table-bordered>thead>tr>th:first-child,
  .sjb-page .table-responsive>.table-bordered>tbody>tr>th:first-child,
  .sjb-page .table-responsive>.table-bordered>tfoot>tr>th:first-child,
  .sjb-page .table-responsive>.table-bordered>thead>tr>td:first-child,
  .sjb-page .table-responsive>.table-bordered>tbody>tr>td:first-child,
  .sjb-page .table-responsive>.table-bordered>tfoot>tr>td:first-child {
    border-left: 0
  }

  .sjb-page .table-responsive>.table-bordered>thead>tr>th:last-child,
  .sjb-page .table-responsive>.table-bordered>tbody>tr>th:last-child,
  .sjb-page .table-responsive>.table-bordered>tfoot>tr>th:last-child,
  .sjb-page .table-responsive>.table-bordered>thead>tr>td:last-child,
  .sjb-page .table-responsive>.table-bordered>tbody>tr>td:last-child,
  .sjb-page .table-responsive>.table-bordered>tfoot>tr>td:last-child {
    border-right: 0
  }

  .sjb-page .table-responsive>.table-bordered>tbody>tr:last-child>th,
  .sjb-page .table-responsive>.table-bordered>tfoot>tr:last-child>th,
  .sjb-page .table-responsive>.table-bordered>tbody>tr:last-child>td,
  .sjb-page .table-responsive>.table-bordered>tfoot>tr:last-child>td {
    border-bottom: 0
  }
}

.sjb-page label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700
}

.sjb-page input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.sjb-page input[type=radio],
.sjb-page input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal
}

.sjb-page input[type=file] {
  display: block
}

.sjb-page input[type=file]:focus,
.sjb-page input[type=radio]:focus,
.sjb-page input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

.sjb-page .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.sjb-page .form-control:focus {
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.sjb-page .form-control::-moz-placeholder {
  color: #a4a4a4;
  opacity: 1
}

.sjb-page .form-control:-ms-input-placeholder {
  color: #a4a4a4
}

.sjb-page .form-control::-webkit-input-placeholder {
  color: #a4a4a4
}

.sjb-page .form-control::-ms-expand {
  border: 0;
  background-color: transparent
}

textarea.sjb-page .form-control {
  height: auto
}

.sjb-page input[type=search] {
  -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

  .sjb-page input[type=date].form-control,
  .sjb-page input[type=time].form-control,
  .sjb-page input[type=datetime-local].form-control,
  .sjb-page input[type=month].form-control {
    line-height: 34px
  }

  .sjb-page input[type=date].input-sm,
  .sjb-page input[type=time].input-sm,
  .sjb-page input[type=datetime-local].input-sm,
  .sjb-page input[type=month].input-sm,
  .input-group-sm .sjb-page input[type=date],
  .input-group-sm .sjb-page input[type=time],
  .input-group-sm .sjb-page input[type=datetime-local],
  .input-group-sm .sjb-page input[type=month] {
    line-height: 30px
  }

  .sjb-page input[type=date].input-lg,
  .sjb-page input[type=time].input-lg,
  .sjb-page input[type=datetime-local].input-lg,
  .sjb-page input[type=month].input-lg,
  .input-group-lg .sjb-page input[type=date],
  .input-group-lg .sjb-page input[type=time],
  .input-group-lg .sjb-page input[type=datetime-local],
  .input-group-lg .sjb-page input[type=month] {
    line-height: 44px
  }
}

.sjb-page .form-group {
  margin-bottom: 15px
}

.sjb-page .radio,
.sjb-page .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px
}

.sjb-page .radio label,
.sjb-page .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer
}

.sjb-page .radio input[type=radio],
.sjb-page .checkbox input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9
}

.sjb-page .radio+.radio,
.sjb-page .checkbox+.checkbox {
  margin-top: -5px
}

.sjb-page input[type=radio][disabled],
.sjb-page input[type=checkbox][disabled],
.sjb-page input[type=radio].disabled,
.sjb-page input[type=checkbox].disabled,
fieldset[disabled] .sjb-page input[type=radio],
fieldset[disabled] .sjb-page input[type=checkbox] {
  cursor: not-allowed
}

.sjb-page .radio.disabled label,
.sjb-page .checkbox.disabled label,
fieldset[disabled] .sjb-page .radio label,
fieldset[disabled] .sjb-page .checkbox label {
  cursor: not-allowed
}

.sjb-page .btn {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  line-height: 1.42857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.sjb-page .btn:focus,
.sjb-page .btn:active:focus,
.sjb-page .btn.active:focus,
.sjb-page .btn.focus,
.sjb-page .btn:active.focus,
.sjb-page .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

.sjb-page a.btn {
  border: 1px solid;
  padding: 5px 10px;
  text-decoration: none
}

.sjb-page .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid
}

.sjb-page .alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d
}

.sjb-page .alert-success hr {
  border-top-color: #c9e2b3
}

.sjb-page .alert-success .alert-link {
  color: #2b542c
}

.sjb-page .alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f
}

.sjb-page .alert-info hr {
  border-top-color: #a6e1ec
}

.sjb-page .alert-info .alert-link {
  color: #245269
}

.sjb-page .alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b
}

.sjb-page .alert-warning hr {
  border-top-color: #f7e1b5
}

.sjb-page .alert-warning .alert-link {
  color: #66512c
}

.sjb-page .alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442
}

.sjb-page .alert-danger hr {
  border-top-color: #e4b9c0
}

.sjb-page .alert-danger .alert-link {
  color: #843534
}

.sjb-page .clearfix:before,
.sjb-page .clearfix:after,
.sjb-page .sjb-page .row:before,
.sjb-page .sjb-page .row:after {
  content: " ";
  display: table
}

.sjb-page .clearfix:after,
.sjb-page .sjb-page .row:after {
  clear: both
}

.sjb-page .pull-right {
  float: right !important
}

.sjb-page .pull-left {
  float: left !important
}

@-ms-viewport {
  width: device-width
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important
}

@media (max-width:767px) {
  .visible-xs {
    display: block !important
  }

  table.visible-xs {
    display: table !important
  }

  tr.visible-xs {
    display: table-row !important
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important
  }
}

@media (max-width:767px) {
  .visible-xs-block {
    display: block !important
  }
}

@media (max-width:767px) {
  .visible-xs-inline {
    display: inline !important
  }
}

@media (max-width:767px) {
  .visible-xs-inline-block {
    display: inline-block !important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm {
    display: block !important
  }

  table.visible-sm {
    display: table !important
  }

  tr.visible-sm {
    display: table-row !important
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm-block {
    display: block !important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm-inline {
    display: inline !important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm-inline-block {
    display: inline-block !important
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md {
    display: block !important
  }

  table.visible-md {
    display: table !important
  }

  tr.visible-md {
    display: table-row !important
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md-block {
    display: block !important
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md-inline {
    display: inline !important
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md-inline-block {
    display: inline-block !important
  }
}

@media (min-width:1200px) {
  .visible-lg {
    display: block !important
  }

  table.visible-lg {
    display: table !important
  }

  tr.visible-lg {
    display: table-row !important
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important
  }
}

@media (min-width:1200px) {
  .visible-lg-block {
    display: block !important
  }
}

@media (min-width:1200px) {
  .visible-lg-inline {
    display: inline !important
  }
}

@media (min-width:1200px) {
  .visible-lg-inline-block {
    display: inline-block !important
  }
}

@media (max-width:767px) {
  .hidden-xs {
    display: none !important
  }
}

@media (min-width:768px) and (max-width:991px) {
  .hidden-sm {
    display: none !important
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .hidden-md {
    display: none !important
  }
}

@media (min-width:1200px) {
  .hidden-lg {
    display: none !important
  }
}

.visible-print {
  display: none !important
}

@media print {
  .visible-print {
    display: block !important
  }

  table.visible-print {
    display: table !important
  }

  tr.visible-print {
    display: table-row !important
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important
  }
}

.visible-print-block {
  display: none !important
}

@media print {
  .visible-print-block {
    display: block !important
  }
}

.visible-print-inline {
  display: none !important
}

@media print {
  .visible-print-inline {
    display: inline !important
  }
}

.visible-print-inline-block {
  display: none !important
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important
  }
}

@media print {
  .hidden-print {
    display: none !important
  }
}

.iti {
  position: relative;
  display: inline-block
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box
}

.iti__hide {
  display: none
}

.iti__v-hide {
  visibility: hidden
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  height: 100%;
  padding: 16px 6px 0 8px
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px
}

@media (max-width:500px) {
  .iti__country-list {
    white-space: normal
  }
}

.iti__flag-box {
  display: inline-block;
  width: 20px
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc
}

.iti__country {
  padding: 5px 10px;
  outline: none
}

.iti__dial-code {
  color: #999
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, .05)
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, .05)
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover {
  cursor: default
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag {
  background-color: transparent
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, .05)
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px
}

.iti--container:hover {
  cursor: pointer
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%
}

.iti-mobile .iti__country {
  padding: 10px;
  line-height: 1.5em
}

.iti__flag {
  width: 20px
}

.iti__flag.iti__be {
  width: 18px
}

.iti__flag.iti__ch {
  width: 15px
}

.iti__flag.iti__mc {
  width: 19px
}

.iti__flag.iti__ne {
  width: 18px
}

.iti__flag.iti__np {
  width: 13px
}

.iti__flag.iti__va {
  width: 15px
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
  .iti__flag {
    background-size: 5652px 15px
  }
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0 0
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/wp-content/plugins/simple-job-board/public/images/flags.png");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
  .iti__flag {
    background-image: url("/wp-content/plugins/simple-job-board/public/images/flags@2x.png")
  }
}

.iti__flag.iti__np {
  background-color: transparent
}

.sjb-page ::-moz-selection {
  background: #3297fa;
  color: #fff
}

.sjb-page ::selection {
  background: #3297fa;
  color: #fff
}

.sjb-page .list-data article,
.sjb-page .list-data footer,
.sjb-page .list-data header,
.sjb-page .list-data section {
  display: block
}

.sjb-page a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page a:hover,
.sjb-page a:focus {
  outline: none;
  text-decoration: none
}

.sjb-page .btn {
  border: 1px solid;
  outline: none;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page img {
  height: auto;
  max-width: 100%
}

.sjb-page .sjb-filters.sjb-filters-v1 {
  background-color: #f2f2f2;
  border: 0;
  margin: 30px 0 15px;
  padding: 30px 30px 15px;
  overflow: hidden
}

.sjb-page .sjb-filters.sjb-filters-v1 .form-control {
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #666;
  font-size: 16px;
  height: 40px
}

.sjb-page .sjb-filters.sjb-filters-v1 .form-control::-moz-placeholder {
  color: #a4a4a4;
  opacity: 1
}

.sjb-page .sjb-filters.sjb-filters-v1 .form-control:-ms-input-placeholder {
  color: #a4a4a4
}

.sjb-page .sjb-filters.sjb-filters-v1 .form-control::-webkit-input-placeholder {
  color: #a4a4a4
}

.sjb-page .sjb-filters.sjb-filters-v1 .form-control:focus {
  border-color: #e1e1e1;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  outline: 0 none
}

.sjb-page .sjb-filters.sjb-filters-v1 select {
  -webkit-appearance: inherit;
  -moz-appearance: inherit;
  appearance: inherit;
  background: #fff url("/wp-content/plugins/simple-job-board/public/images/select-arrow.png") no-repeat center right 10px
}

.sjb-page .sjb-filters.sjb-filters-v1 select::-ms-expand {
  display: none
}

.sjb-page .sjb-filters.sjb-filters-v1 .btn-search {
  border: 1px solid;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 600;
  font-size: 20px;
  height: 40px;
  margin-bottom: 0;
  padding: 0;
  width: 100%
}

.sjb-page .sjb-filters.sjb-filters-v2 {
  background-color: #f2f2f2;
  border: 0;
  margin: 30px 0 15px;
  padding: 30px 30px 15px;
  overflow: hidden
}

.sjb-page .sjb-filters.sjb-filters-v2 .form-control {
  border: 1px solid #c1c1c1;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #777;
  font-size: 16px;
  height: 40px
}

.sjb-page .sjb-filters.sjb-filters-v2 .form-control::-moz-placeholder {
  color: #777;
  opacity: 1
}

.sjb-page .sjb-filters.sjb-filters-v2 .form-control:-ms-input-placeholder {
  color: #777
}

.sjb-page .sjb-filters.sjb-filters-v2 .form-control::-webkit-input-placeholder {
  color: #777
}

.sjb-page .sjb-filters.sjb-filters-v2 .form-control:focus {
  border-color: #e1e1e1;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  outline: 0 none
}

.sjb-page .sjb-filters.sjb-filters-v2 select {
  -webkit-appearance: inherit;
  -moz-appearance: inherit;
  appearance: inherit;
  background: #fff url("/wp-content/plugins/simple-job-board/public/images/select-arrow.png") no-repeat center right 10px
}

.sjb-page .sjb-filters.sjb-filters-v2 select::-ms-expand {
  display: none
}

.sjb-page .sjb-filters.sjb-filters-v2 .btn-search {
  border: 1px solid;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 600;
  font-size: 20px;
  height: 40px;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  outline: none
}

.sjb-page .sjb-filters.sjb-filters-v2 .btn-search:hover,
.sjb-page .sjb-filters.sjb-filters-v2 .btn-search:focus {
  outline: none
}

.sjb-page .pagination {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  float: left;
  margin: 15px 0 0;
  padding: 0;
  width: 100%;
  box-shadow: none;
  position: relative;
  border: none
}

.sjb-page .pagination:before,
.sjb-page .pagination:after {
  background-color: transparent
}

.sjb-page .pagination li {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  margin-right: 2px
}

.sjb-page .pagination li a {
  background-color: #e1e1e1;
  color: #3b3a3c;
  margin: 0;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none
}

.sjb-page .pagination li a:before,
.sjb-page .pagination li a:after {
  height: auto;
  width: auto;
  content: none;
  display: block;
  vertical-align: middle
}

@media (max-width:767px) {
  .sjb-page .pagination li a {
    margin: 0 3px;
    text-align: center
  }
}

.sjb-page .pagination li a:hover {
  background-color: #3b3a3c;
  color: #fff
}

.sjb-page .pagination li span {
  border: none;
  color: #3b3a3c;
  margin: 0;
  padding: 8px 16px;
  text-align: center
}

.sjb-page .pagination li span:before,
.sjb-page .pagination li span:after {
  content: none;
  display: block
}

@media (max-width:767px) {
  .sjb-page .pagination li span {
    text-align: center
  }
}

.sjb-page .pagination li span:hover {
  color: #fff;
  background-color: #3b3a3c
}

.sjb-page .pagination li span.current {
  color: #fff;
  background-color: #3b3a3c
}

.sjb-page .pagination li span.current:hover {
  color: #fff;
  background-color: #3b3a3c
}

.sjb-page .pagination li:first-child a,
.sjb-page .pagination li:first-child span {
  margin-left: 0
}

.sjb-page .pagination li:last-child a,
.sjb-page .pagination li:last-child span {
  margin-right: 0
}

.sjb-page .pagination li:before {
  content: none
}

.ui-datepicker {
  border: 1px solid #e1e1e1;
  color: #666;
  font-family: "Roboto", sans-serif;
  z-index: 10000 !important
}

.ui-datepicker .ui-datepicker-header {
  background: #f2f2f2;
  border: 1px solid #e1e1e1;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 3px
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
  background: #c8c8c8;
  border: 1px solid #c8c8c8
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 3px
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 3px
}

.ui-datepicker .ui-datepicker-title select {
  border: 1px solid #e1e1e1;
  color: #666;
  font-family: "Roboto", sans-serif;
  font-size: 16px
}

.ui-datepicker .ui-state-default {
  background: #f2f2f2;
  border: 1px solid #e1e1e1
}

.ui-datepicker .ui-state-highlight {
  background: #3297fa;
  border: 1px solid #3297fa;
  color: #fff
}

.ui-datepicker .ui-state-hover {
  background: #067ef3;
  border: 1px solid #067ef3;
  color: #fff
}

.ui-datepicker table {
  font-size: 14px
}

.ui-datepicker table td a,
.ui-datepicker table td span {
  text-align: center
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 100% !important
}

.sjb-page .no-job-listing {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px
}

.sjb-page .list-data .v2 {
  background: #fff;
  border: 1px solid #ccc;
  float: left;
  margin: 15px 0;
  width: 100%;
  padding-bottom: 15px
}

.sjb-page .list-data .v2 .company-logo {
  float: left;
  width: 78px;
  max-width: 200px;
  margin-right: 10px
}

.sjb-page .list-data .v2 .sjb-with-logo .job-info {
  margin-left: 20px
}

.sjb-page .list-data .v2 .sjb-with-logo .job-info.job-without-company {
  float: left;
  margin-left: 20px;
  margin-top: 10px
}

.sjb-page .list-data .v2 .sjb-with-logo {
  float: left
}

.sjb-page .list-data .v2 .sjb-with-logo .job-detail h3 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: auto
}

.sjb-page .list-data .v2 .sjb-with-logo .sjb-company-tagline .company-tagline {
  margin-bottom: 0
}

.sjb-page .list-data .v2 .header-margin-top {
  margin-top: 16px;
  margin-bottom: 16px
}

@media (max-width:991px) {
  .sjb-page .list-data .v2 .header-margin-top {
    margin-top: 19px
  }
}

@media (max-width:767px) {
  .sjb-page .list-data .v2 .header-margin-top {
    margin-top: 0
  }
}

.sjb-page .list-data .v2 .job-info h4 {
  color: #3b3a3c;
  font-size: 16px;
  margin: 0;
  padding: 0;
  word-wrap: break-word
}

.sjb-page .list-data .v2 .job-info h4 a {
  color: #3b3a3c;
  font-size: 16px;
  word-wrap: break-word
}

.sjb-page .list-data .v2 .job-info h4 a:hover {
  color: #3297fa
}

.sjb-page .list-data .v2 .job-description {
  float: left;
  width: 100%;
  border-top: 0;
  padding-left: 5px;
  padding-right: 5px
}

.sjb-page .list-data .v2 .job-description-list {
  float: left;
  width: 100%;
  padding: 0 20px
}

.sjb-page .list-data .v2 .job-description p {
  font-size: 16px;
  margin: 0 0 15px;
  word-wrap: break-word
}

.sjb-page .list-data .v2 .job-type,
.sjb-page .list-data .v2 .job-location,
.sjb-page .list-data .v2 .job-date {
  font-size: 14px;
  word-wrap: break-word
}

.sjb-page .list-data .v2 .job-type i,
.sjb-page .list-data .v2 .job-location i,
.sjb-page .list-data .v2 .job-date i {
  color: #3b3a3c;
  margin-right: 5px
}

.sjb-page .sjb-listing .list-view .no-job-listing p {
  font-size: 16px
}

.sjb-page .sjb-listing .grid-view .no-job-listing p {
  font-size: 16px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 {
  padding: 20px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .job-info {
  margin-left: 20px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .job-company {
  margin-left: 20px
}

@media (max-width:767px) {
  .sjb-page .sjb-listing .grid-item .list-data .v2 .job-company {
    margin-left: 0
  }

  .sjb-page .sjb-listing .grid-item .list-data .v2 .job-info {
    margin-left: 0
  }
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .company-logo {
  margin-bottom: 10px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .job-description {
  margin-top: 10px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .job-company i {
  margin-right: 10px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .btn {
  border-radius: 0;
  color: #fff;
  padding: 10px 20px;
  margin-right: 5px
}

.sjb-page .grid-item .list-data .v2 .job-type,
.sjb-page .grid-item .list-data .v2 .job-location,
.sjb-page .grid-item .list-data .v2 .job-date {
  margin: 5px 0
}

.sjb-page .sjb-listing .grid-view .row .grid-item:nth-child(3n+1) {
  clear: left
}

@media (min-width:768px) and (max-width:991px) {
  .sjb-page .sjb-listing .grid-view .row .grid-item:nth-child(3n+1) {
    clear: none
  }
}

@media (min-width:768px) and (max-width:991px) {
  .sjb-page .sjb-listing .grid-view .row .grid-item:nth-child(2n+1) {
    clear: left
  }
}

.sjb-page .sjb-detail .list-data .v2 {
  border: 0;
  margin: 0;
  padding: 0
}

.sjb-page .sjb-detail .list-data .v2 .job-detail h3 {
  color: #3297fa;
  font-weight: 500;
  font-size: 24px
}

@media (min-width:1200px) {
  .sjb-page .sjb-detail .list-data .v2 .job-info-margin {
    margin: 0 0 10px 27px
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .sjb-page .sjb-detail .list-data .v2 .job-info-margin {
    margin: 0 0 10px 44px
  }
}

.sjb-page .sjb-detail .list-data .v2 h3 {
  font-size: 17px;
  margin: 15px 0;
  font-weight: 700
}

.sjb-page .sjb-detail .list-data .v2 ul {
  list-style: none;
  margin: 10px 0;
  padding: 0
}

.sjb-page .sjb-detail .list-data .v2 ul li {
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
  position: relative
}

.sjb-page .sjb-detail .list-data .v2 .list-data .v2 .job-features {
  float: left;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v2 .job-features .table {
  font-size: 16px;
  font-weight: 400;
  border-top: 1px solid #c1c1c1;
  margin-top: 15px
}

.sjb-page .sjb-detail .list-data .v2 .job-features .table td {
  border-top: 1px solid #c1c1c1;
  padding: 10px 15px;
  width: 70%
}

.sjb-page .sjb-detail .list-data .v2 .job-features .table td:first-child {
  border-right: 1px solid #c1c1c1;
  padding-left: 0;
  width: 30%
}

.sjb-page .sjb-detail .list-data .v2 .job-features .table tr:first-child td {
  border-top: 0
}

.sjb-page .sjb-detail .list-data .v2 .job-features .table tr:last-child td {
  border-bottom: 1px solid #c1c1c1
}

@media (min-width:768px) {
  .sjb-page .sjb-detail .list-data .v2 .job-features .row {
    display: flex;
    flex-flow: row wrap
  }
}

.sjb-page .sjb-detail .list-data .v2 .job-features .sjb-title-value h4 {
  color: #000
}

.sjb-page .sjb-detail .list-data .v2 .job-features .sjb-title-value h4 i {
  width: 30px
}

.sjb-page .sjb-detail .list-data .v2 .job-features .sjb-title-value p {
  margin-left: 35px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form {
  float: left;
  width: 100%;
  position: relative
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form h3 {
  margin: 15px 0
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .sjb-loading {
  display: none
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .sjb-loading .sjb-overlay {
  background: rgba(255, 255, 255, .7);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .sjb-loading .sjb-loader-wrapper {
  text-align: center
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .sjb-loading .sjb-loader {
  position: absolute;
  width: 79px;
  height: auto;
  z-index: 9;
  margin-top: -30px;
  top: 50%;
  left: auto;
  right: auto
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form textarea.form-control {
  min-height: 100px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form label {
  font-size: 16px;
  font-weight: 400
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form label.small {
  margin-right: 15px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form label.small input {
  margin-right: 5px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .required {
  color: red;
  font-size: 16px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-box {
  padding: 0;
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
  float: left;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-box label span {
  color: red
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-box textarea {
  width: 100%;
  height: auto
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-control {
  font-size: 16px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #c1c1c1;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .form-control:hover {
  border-color: #3297fa
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .iti {
  z-index: 9;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .iti .iti__flag-container:hover+.form-control {
  border-color: #3297fa
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .file {
  background: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset;
  font-size: 16px;
  height: 40px;
  line-height: 1.42857;
  padding: 8px 12px;
  position: relative;
  text-align: left;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .file div {
  background: #6e6e6e;
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  height: 26px;
  padding: 5px 12px;
  position: absolute;
  right: 6px;
  text-align: center;
  top: 6px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .file input[type=file] {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 100
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .file:hover {
  border-color: #6e6e6e
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .file:hover div {
  background: #6e6e6e
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .validity-note {
  color: red;
  display: none;
  font-size: 14px;
  font-style: italic;
  margin-left: 10px
}

.sjb-page .sjb-detail .list-data .v2 .jobpost-form .app-submit {
  margin: 5px 0 20px;
  display: block;
  padding: 7px 30px;
  border-radius: 0;
  float: right
}

.sjb-page .sjb-detail .list-data .v1 {
  border: 0;
  margin: 0;
  padding: 0
}

.sjb-page .sjb-detail .list-data .v1 .job-detail {
  margin: 0 0 20px
}

.sjb-page .sjb-detail .list-data .v1 .job-detail h3 {
  color: #6e6e6e;
  font-weight: 500;
  font-size: 24px
}

@media (min-width:1200px) {
  .sjb-page .sjb-detail .list-data .v1 .job-info-margin {
    margin: 0 0 10px 27px
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .sjb-page .sjb-detail .list-data .v1 .job-info-margin {
    margin: 0 0 10px 44px
  }
}

.sjb-page .sjb-detail .list-data .v1 .company-tagline {
  margin: 0 0 20px
}

.sjb-page .sjb-detail .list-data .v1 h3 {
  margin: 17px 0;
  font-weight: 700
}

.sjb-page .sjb-detail .list-data .v1 ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0
}

.sjb-page .sjb-detail .list-data .v1 ul li {
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
  position: relative
}

.sjb-page .sjb-detail ul li:before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  left: 0;
  position: absolute;
  top: 0
}

.sjb-page .sjb-detail .list-data .v1 .job-features {
  float: left;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v1 .job-features .table {
  font-size: 16px;
  font-weight: 400
}

.sjb-page .sjb-detail .list-data .v1 .job-features .table td {
  border-top: 1px solid #e1e1e1;
  padding: 10px 15px;
  width: 70%
}

.sjb-page .sjb-detail .list-data .v1 .job-features .table td:first-child {
  border-right: 1px solid #e1e1e1;
  padding-left: 0;
  width: 30%
}

.sjb-page .sjb-detail .list-data .v1 .job-features .table tr:first-child td {
  border-top: 0
}

.sjb-page .sjb-detail .list-data .v1 .job-features .table tr:last-child td {
  border-bottom: 1px solid #e1e1e1
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form {
  float: left;
  width: 100%;
  position: relative
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .sjb-loading {
  display: none
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .sjb-loading .sjb-overlay {
  background: rgba(255, 255, 255, .7);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .sjb-loading .sjb-loader-wrapper {
  text-align: center
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .sjb-loading .sjb-loader {
  position: absolute;
  width: 79px;
  height: auto;
  z-index: 9;
  margin-top: -30px;
  top: 50%;
  left: auto;
  right: auto
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form textarea.form-control {
  min-height: 100px
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form label {
  margin-top: 10px !important
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form label.small {
  margin-right: 15px
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form label.small input {
  margin-right: 5px
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .required {
  color: red
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .form-box {
  padding: 0;
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
  float: left;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .form-box h3 {
  margin-left: 15px;
  margin-right: 15px
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .form-box label span {
  color: red
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .form-box textarea {
  width: 100%;
  height: auto
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .form-control {
  height: 46px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .iti {
  z-index: 9;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .file {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset;
  font-size: 16px;
  height: 46px;
  line-height: 1.42857;
  padding: 10px 12px;
  position: relative;
  text-align: left;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 100%
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .file div {
  background: #e6e6e6;
  border: 1px solid #a2a2a2;
  border-radius: 4px;
  font-size: 14px;
  height: 32px;
  padding: 6px 12px;
  position: absolute;
  right: 6px;
  text-align: center;
  top: 6px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .file input[type=file] {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .file:hover {
  border-color: #bfbfbf
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .file:hover div {
  background: #bfbfbf
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .validity-note {
  color: red;
  display: none;
  font-size: 14px;
  font-style: italic;
  margin-left: 10px
}

.sjb-page .sjb-detail .list-data .v1 .jobpost-form .app-submit {
  margin: 5px 0 20px;
  display: block;
  padding: 7px 30px;
  float: right
}

.sjb-page .iti .iti__country-list .iti__country,
.sjb-page .iti .iti__country-list .iti__divider {
  line-height: normal
}

.sjb-page .iti .iti__country-list .iti__country:before,
.sjb-page .iti .iti__country-list .iti__divider:before {
  content: "";
  font-size: 0;
  margin-right: 0;
  padding-right: 0
}

.sjb-page .sjb-privacy-policy {
  font-size: 16px
}

.sjb-page #jobapp-tc,
.sjb-page #jobapp-pp {
  margin-bottom: 15px
}

.sjb-page .list-data .v2 .sjb-apply-now-btn a {
  border-radius: 0;
  font-size: 14px;
  padding: 10px 20px;
  margin-top: 10px;
  margin-left: 5px
}

.sjb-page .list-data .sjb-job-type-location-date {
  border-top: 1px solid #ccc;
  padding: 15px 25px;
  overflow: hidden
}

.sjb-page .list-data .sjb-company-wrapper-details-list .sjb-company-details {
  margin-top: 10px
}

.sjb-page .list-data .sjb-company-wrapper-details-list .sjb-company-details i {
  margin-right: 8px
}

.sjb-page .list-data .sjb-company-wrapper-details-list {
  padding: 15px 20px;
  overflow: hidden
}

.sjb-page .list-data .sjb-company-wrapper-details {
  padding: 15px 0;
  overflow: hidden
}

.sjb-page .list-data .job-type i,
.sjb-page .list-data .job-location i,
.sjb-page .list-data .job-date i {
  float: left;
  margin-top: 5px;
  margin-right: 10px
}

.sjb-page .list-data .sjb-job-info {
  margin-left: 15px;
  margin-right: 15px
}

.sjb-page .list-data .sjb-job-info h4 span i {
  margin-right: 6px;
  padding: 6px 0
}

.sjb-page .list-data .sjb-job-characteristics {
  border-top: 0
}

@media (max-width:767px) {
  .sjb-page .list-data .company-logo img {
    width: 95px
  }

  .sjb-page .list-data .job-type,
  .sjb-page .list-data .job-location,
  .sjb-page .list-data .job-date {
    width: 100%;
    margin: 4px 0
  }

  .sjb-page .list-data .job-type i,
  .sjb-page .list-data .job-location i,
  .sjb-page .list-data .job-date i {
    width: 20px
  }

  .sjb-page .list-data .v1 .sjb-apply-now-btn a {
    margin-top: 0
  }
}

.sjb-page .list-data .v1 {
  background: #fff;
  border: 1px solid #e1e1e1;
  float: left;
  margin: 15px 0;
  padding: 20px 20px 10px;
  width: 100%
}

.sjb-page .list-data .v1 .company-logo {
  margin-bottom: 15px
}

.sjb-page .list-data .v1 .company-logo img {
  border: 1px solid #e1e1e1
}

@media (max-width:767px) {
  .sjb-page .list-data .v1 .company-logo img {
    height: 95px;
    width: 95px
  }
}

.sjb-page .list-data .v1 .header-margin-top {
  margin-top: 16px
}

@media (max-width:991px) {
  .sjb-page .list-data .v1 .header-margin-top {
    margin-top: 19px
  }
}

@media (max-width:767px) {
  .sjb-page .list-data .v1 .header-margin-top {
    margin-top: 0
  }
}

.sjb-page .list-data .v1 .job-info {
  margin: 0 0 10px
}

.sjb-page .list-data .v1 .job-info h4 {
  margin: 0;
  padding: 0;
  word-wrap: break-word
}

.sjb-page .list-data .v1 .job-info h4 a {
  word-wrap: break-word
}

.sjb-page .list-data .v1 .job-description {
  float: left;
  width: 100%
}

.sjb-page .list-data .v1 .job-description p {
  margin: 0 0 10px;
  word-wrap: break-word
}

.sjb-page .list-data .v1 .job-type,
.sjb-page .list-data .v1 .job-location,
.sjb-page .list-data .v1 .job-date {
  margin-bottom: 10px;
  word-wrap: break-word
}

.sjb-page .list-data .v1 .job-type i,
.sjb-page .list-data .v1 .job-location i,
.sjb-page .list-data .v1 .job-date i {
  margin-right: 5px
}

.sjb-page .sjb-detail {
  margin: 30px 0
}

.sjb-page .sjb-detail .list-data .v1 {
  border: 0;
  margin: 0;
  padding: 0
}

.sjb-page .sjb-detail .list-data .v1 .job-detail {
  margin: 0 0 20px
}

.sjb-page .sjb-detail .list-data .v1 .job-detail h3 {
  font-weight: 500;
  font-size: 24px
}

@media (min-width:1200px) {
  .sjb-page .sjb-detail .list-data .v1 .job-info-margin {
    margin: 0 0 10px 27px
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .sjb-page .sjb-detail .list-data .v1 .job-info-margin {
    margin: 0 0 10px 44px
  }
}

.sjb-page .sjb-detail .list-data .v1 .company-tagline {
  margin: 0 0 20px
}

.sjb-page .sjb-detail .list-data .v1 h3 {
  margin: 17px 0;
  font-weight: 700
}

.sjb-page .sjb-detail .list-data .v1 ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0
}

.sjb-page .sjb-detail .list-data .v1 ul li {
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
  position: relative
}

.sjb-page .sjb-detail .list-data .v1 ul li:before,
.sjb-page .sjb-detail .list-data .v2 ul li:before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  left: 0;
  position: absolute;
  top: 0
}

.sjb-page .sjb-detail .list-data .v1 ul.iti__country-list li:before {
  content: none
}

.sjb-page .sjb-detail .list-data .v1 ul.iti__country-list .iti__country {
  padding-left: 10px
}

.sjb-page .sjb-detail .list-data .v2 ul.iti__country-list li:before {
  content: none
}

.sjb-page .sjb-detail .list-data .v2 ul.iti__country-list .iti__country {
  padding-left: 10px
}

.sjb-page .job-description-list p {
  color: #666;
  font-size: 16px;
  margin: 0 0 10px;
  word-wrap: break-word
}

.sjb-page .sjb-detail .v2 .jobpost-form .form-box h3 {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 15px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .job-info h4 a span {
  line-height: 24px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .job-company {
  margin-top: 10px
}

.sjb-page .sjb-apply-button {
  display: flex;
  width: 100%
}

.sjb-page .no-job-listing img {
  width: 550px
}

.sjb-page .sjb-listing .list-view .no-job-listing .no-job-listing-text {
  font-size: 36px;
  letter-spacing: 5px
}

.popup-outer .sjb-page .sjb-detail {
  margin: 0;
  margin-bottom: -20px;
  margin-top: -20px
}

.sjb-detail {
  position: relative
}

.popup-outer {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .4)
}

.popup-outer .sjb-page {
  background-color: #fefefe;
  margin: 5% auto;
  width: 80%
}

.popup-outer .sjb-quick-apply-modal-close-btn {
  position: absolute;
  z-index: 9999;
  right: 30px;
  top: 15px;
  width: 35px;
  display: flex;
  justify-content: center;
  background: #ebebeb;
  border-radius: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px
}

.quick-apply-modal {
  display: block
}

.sjb-quick-apply-modal-close-btn .close:hover,
.sjb-quick-apply-modal-close-btn .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer
}

.sjb-quick-apply-modal-close-btn .close {
  color: #a4a4a4;
  float: right;
  font-size: 18px
}

.sjb-page .list-data .v1 .sjb-apply-now-btn a {
  margin-top: 10px;
  margin-right: 5px
}

.sjb-page .list-data .v2 .sjb-apply-now-btn p {
  float: right
}

.sjb-page .sjb-listing .row {
  display: flex;
  flex-wrap: wrap
}

.sjb-page .sjb-listing .popup-outer .row {
  display: block;
  flex-wrap: nowrap
}

.sjb-page .popup-outer .sjb-page .sjb-detail .list-data .v1,
.sjb-page .popup-outer .sjb-page .sjb-detail .list-data .v2 {
  padding: 20px
}

.sjb-page .sjb-view-less-btn {
  display: none;
  clear: both;
  margin-bottom: 15px;
  text-align: right;
  margin-top: 15px;
  float: right
}

.sjb-page .v1 .sjb-view-less-btn a {
  border: 1px solid;
  padding: 6px 12px;
  border-radius: 4px
}

.sjb-page .v2 .sjb-view-less-btn a {
  border: 1px solid;
  padding: 10px 20px
}

.sjb-page .sjb-listing .sjb-apply-now-btn p {
  display: inline-block
}

.sjb-page .sjb-listing .list-data .v2 .job-features .sjb-title-value h4 i,
.sjb-page .sjb-listing .list-data .v1 .job-features .sjb-title-value h4 i {
  width: 30px
}

.sjb-page .sjb_more_content {
  display: none
}

.sjb-page .sjb-listing .list-data .v1 .sjb_more_content {
  font-size: 16px
}

.sjb-page .sjb-listing .list-data .v2 .sjb_more_content {
  padding: 0 20px;
  font-size: 16px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .sjb_more_content {
  padding: 0
}

.sjb-page .sjb-listing .list-data .v2 .sjb-view-less-btn {
  padding: 0 20px
}

.sjb-page .sjb-listing a.sjb_view_more_btn,
.sjb-page .sjb-listing a.sjb_view_less_btn {
  font-size: 14px;
  cursor: pointer
}

.sjb-page .job-features {
  margin-bottom: 20px
}

.sjb-page .job-features h3 {
  font-weight: 700;
  margin: 15px
}

.sjb-page .job-features {
  margin-bottom: 20px;
  width: 100%
}

.sjb-page .list-view .v1 .job-features h3,
.sjb-page .list-view .v2 .job-features h3 {
  margin-left: 0
}

.sjb-page .sjb-listing .grid-item .v2 .job-features h3 {
  margin-left: 15px
}

.sjb-page .sjb-listing .grid-item .list-data .v2 .without-logo .job-info,
.sjb-page .sjb-listing .grid-item .list-data .v2 .without-logo .job-company {
  margin-left: 0
}

.sjb-page .sjb-listing .v2 .job-features .sjb-title-value p {
  margin-left: 35px
}

.sjb-listing .grid-item .list-data .v2 .sjb-apply-button {
  display: block
}

@media screen and (max-width:360px) {
  .sjb-page .sjb-view-less-btn {
    float: left
  }
}

.sjb-page .grid-item .v2 .sjb-view-less-btn {
  float: left;
  padding: 0 !important
}

.sjb-page .sjb-filters.sjb-filters-v2 .sjb-filter-tags,
.sjb-page .sjb-filters.sjb-filters-v1 .sjb-filter-tags {
  display: flex
}

.sjb-page .sjb-filters.sjb-filters-v1 .sjb-filter-tags a,
.sjb-page .sjb-filters.sjb-filters-v2 .sjb-filter-tags a {
  text-decoration: underline;
  margin-left: 4px;
  color: #000
}

.sjb-page .sjb-filters.sjb-filters-v1 .sjb-filter-tags a.tag-active,
.sjb-page .sjb-filters.sjb-filters-v2 .sjb-filter-tags a.tag-active {
  background: #d7d7d7;
  font-weight: 700;
  padding: 5px;
  border-radius: 3px
}

.error {
  color: red
}

#applicant-resume-error,
.form-group .file label {
  display: block;
  margin-top: 12px;
  margin-left: -13px;
  margin-bottom: 10px
}

.sjb-required input,
.sjb-email-address {
  color: #000 !important
}

.sjb-page .sjb-detail.sjb-v2 .list-data .v2,
.sjb-page .sjb-detail.sjb-v1 .list-data .v1 {
  padding: 22px
}

.tlp-portfolio * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.6
}

.pfp-carousel .owl-dot:hover {
  background: 0 0
}

#tlp_portfolio_sc_settings_meta .wp-picker-container .wp-color-result-text {
  position: relative;
  z-index: 99
}

h3.title.color-white a,
h3.title.color-white {
  color: #fff !important;
  text-decoration: none
}

.tlp-portfolio-item .tlp-overlay-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 15px
}

.tlp-portfolio-isotope {
  display: flex;
  flex-wrap: wrap
}

.tlp-portfolio-container .tlp-portfolio-isotope .tlp-single-item,
.tlp-portfolio .tlp-portfolio-thum,
.tlp-portfolio-isotope .tlp-portfolio-item {
  width: 100%;
  display: block
}

.tlp-portfolio .tlp-portfolio-thum img {
  width: 100%;
  backface-visibility: hidden
}

.tlp-body-overflow {
  overflow: hidden
}

.tlp-portfolio-sd {
  margin-bottom: 10px
}

.rt-container-fluid,
.rt-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px
}

.rt-container .rt-row,
.rt-container-fluid .rt-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px
}

.tlp-portfolio .carousel2 .rt-row,
.tlp-portfolio .isotope2 .rt-row,
.tlp-portfolio .layout2 .rt-row {
  margin-left: 0;
  margin-right: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.rt-container-fluid .rt-row[class*=isotope],
.rt-container .rt-row[class*=isotope] {
  display: block
}

.rt-container-fluid .rt-row[class*=isotope] .tlp-portfolio-isotope,
.rt-container .rt-row[class*=isotope] .tlp-portfolio-isotope {
  display: flex;
  flex-wrap: wrap
}

.tlp-col-xs-1,
.tlp-col-sm-1,
.tlp-col-md-1,
.tlp-col-lg-1,
.tlp-col-xs-2,
.tlp-col-sm-2,
.tlp-col-md-2,
.tlp-col-lg-2,
.tlp-col-xs-3,
.tlp-col-sm-3,
.tlp-col-md-3,
.tlp-col-lg-3,
.tlp-col-xs-4,
.tlp-col-sm-4,
.tlp-col-md-4,
.tlp-col-lg-4,
.tlp-col-xs-5,
.tlp-col-sm-5,
.tlp-col-md-5,
.tlp-col-lg-5,
.tlp-col-xs-6,
.tlp-col-sm-6,
.tlp-col-md-6,
.tlp-col-lg-6,
.tlp-col-xs-7,
.tlp-col-sm-7,
.tlp-col-md-7,
.tlp-col-lg-7,
.tlp-col-xs-8,
.tlp-col-sm-8,
.tlp-col-md-8,
.tlp-col-lg-8,
.tlp-col-xs-9,
.tlp-col-sm-9,
.tlp-col-md-9,
.tlp-col-lg-9,
.tlp-col-xs-10,
.tlp-col-sm-10,
.tlp-col-md-10,
.tlp-col-lg-10,
.tlp-col-xs-11,
.tlp-col-sm-11,
.tlp-col-md-11,
.tlp-col-lg-11,
.tlp-col-xs-12,
.tlp-col-sm-12,
.tlp-col-md-12,
.tlp-col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px
}

.tlp-col-xs-24 {
  flex: 0 0 20%;
  max-width: 20%
}

.tlp-col-xs-12 {
  flex: 0 0 100%;
  max-width: 100%
}

.tlp-col-xs-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%
}

.tlp-col-xs-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%
}

.tlp-col-xs-9 {
  flex: 0 0 75%;
  max-width: 75%
}

.tlp-col-xs-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%
}

.tlp-col-xs-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%
}

.tlp-col-xs-6 {
  flex: 0 0 50%;
  max-width: 50%
}

.tlp-col-xs-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%
}

.tlp-col-xs-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%
}

.tlp-col-xs-3 {
  flex: 0 0 25%;
  max-width: 25%
}

.tlp-col-xs-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%
}

.tlp-col-xs-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%
}

.tlp-portfolio .tlp-overlay .link-icon {
  text-align: center;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.tlp-portfolio-item {
  direction: initial
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: .8
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle
}

.mfp-align-top .mfp-container:before {
  display: none
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto
}

.mfp-ajax-cur {
  cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -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-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -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-preloader a:hover {
  color: #fff
}

.mfp-s-ready .mfp-preloader {
  display: none
}

.mfp-s-error .mfp-content {
  display: none
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: .65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1
}

.mfp-close:active {
  top: 1px
}

.mfp-close-btn-in .mfp-close {
  color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: 0;
  text-align: right;
  padding-right: 6px;
  width: 44px;
  text-align: center;
  padding: 0;
  height: 44px;
  top: -4px;
  background-color: #cc33668c;
  font-size: 20px
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap
}

.mfp-arrow {
  position: absolute;
  opacity: .65;
  top: 50%;
  margin: -55px 0 0;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
  margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7
}

.mfp-arrow-left {
  left: 0
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
  right: 0
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px
}

.mfp-iframe-holder .mfp-close {
  top: -40px
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #000
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto
}

.mfp-figure {
  line-height: 0
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #444
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px
}

.mfp-figure figure {
  margin: 0
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px
}

.mfp-image-holder .mfp-content {
  max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
  .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
  }
}

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0
}

.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height .5s ease-in-out;
  -moz-transition: height .5s ease-in-out;
  -ms-transition: height .5s ease-in-out;
  -o-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out
}

.owl-carousel .owl-item {
  float: left
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.grabbing {
  cursor: url('/wp-content/plugins/tlp-portfolio/assets/images/grabbing.png') 8 8, move
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -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-theme .owl-controls {
  margin-top: 10px;
  text-align: center
}

.owl-theme .owl-controls .owl-buttons div {
  color: #fff;
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  opacity: .5
}

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  opacity: 1;
  text-decoration: none
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  opacity: .5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  opacity: 1
}

.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px
}

.owl-item.loading {
  min-height: 150px;
  background: url('/wp-content/plugins/tlp-portfolio/assets/images/AjaxLoader.gif') no-repeat center center
}

.portfolio-feature-img {
  text-align: center
}

.portfolio-feature-img img {
  max-width: 100%;
  height: auto
}

.single-portfolio .portfolio-feature-img img {
  width: 100%
}

.tlp-portfolio figure {
  margin: 0 !important;
  padding: 0 !important
}

.tlp-portfolio .no-margin {
  margin: 0;
  padding: 0
}

.paddingl0 {
  padding-left: 0
}

.paddingr0 {
  padding-right: 0
}

.padding0 {
  padding: 0 !important
}

.allmargin0 {
  margin: 0 !important;
  padding: 0 !important
}

.tlp-portfolio ul {
  margin: 0;
  padding: 0
}

.tlp-portfolio ul li {
  list-style: none !important;
  background: 0 0;
  margin-left: 0;
  margin-bottom: 5px
}

.tlp-portfolio label {
  font-weight: 700;
  display: inline-block;
  margin-right: 5px
}

.tlp-portfolio-container .tlp-single-item {
  margin-bottom: 30px
}

.tlp-portfolio .img-responsive {
  max-width: 100%;
  height: auto;
  display: block
}

.default-margin {
  margin-bottom: 30px
}

.single-portfolio-share {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap
}

.single-portfolio-share iframe {
  margin: 0
}

.single-portfolio-share .rt-share-item+.rt-share-item {
  margin-left: 5px
}

.tlp-portfolio-container a {
  text-decoration: none
}

@font-face {
  font-display: swap;
  font-family: 'fontello';
  src: url('/wp-content/plugins/tlp-portfolio/assets/vendor/fontello/fontello.eot?77716788');
  src: url('/wp-content/plugins/tlp-portfolio/assets/vendor/fontello/fontello.eot?77716788#iefix') format('embedded-opentype'), url('/wp-content/plugins/tlp-portfolio/assets/vendor/fontello/fontello.woff2?77716788') format('woff2'), url('/wp-content/plugins/tlp-portfolio/assets/vendor/fontello/fontello.woff?77716788') format('woff'), url('/wp-content/plugins/tlp-portfolio/assets/vendor/fontello/fontello.ttf?77716788') format('truetype'), url('/wp-content/plugins/tlp-portfolio/assets/vendor/fontello/fontello.svg?77716788#fontello') format('svg');
  font-weight: 400;
  font-style: normal
}

.tlp-portfolio [class^=icon-]:before,
.tlp-portfolio [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: 400;
  speak: never;
  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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.icon-left-open:before {
  content: '\e800'
}

.icon-zoom-in:before {
  content: '\e801'
}

.icon-right-open:before {
  content: '\e802'
}

.icon-link-ext:before {
  content: '\f08e'
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination {
  display: flex;
  margin: 20px 0;
  justify-content: center
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>li {
  display: inline-block;
  margin: 0
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.disabled>span,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.disabled>span:hover,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.disabled>span:focus,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.disabled>a,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.disabled>a:hover,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.disabled>a:focus {
  color: #777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>li>a,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>li>span {
  position: relative;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 0
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.active>a,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.active>span,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.active>a:hover,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.active>span:hover,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.active>a:focus,
.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>.active>span:focus {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  cursor: default
}

.tlp-portfolio .layout1 .tlp-portfolio-thum {
  background: #ccc;
  overflow: hidden;
  position: relative;
  width: 100%
}

.tlp-portfolio .layout1 .tlp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: rgba(217, 35, 45, .85);
  -webkit-transition: all .5s ease-out .15s;
  -moz-transition: all .5s ease-out .15s;
  -ms-transition: all .5s ease-out .15s;
  -o-transition: all .5s ease-out .15s;
  transition: all .5s ease-out .15s
}

.tlp-portfolio .layout1 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .layout1 .tlp-portfolio-thum .link-icon {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0
}

.tlp-portfolio .layout1 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .layout1 .tlp-portfolio-thum:hover .link-icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.tlp-portfolio .layout1 .tlp-overlay .link-icon a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin-right: 4px;
  margin-left: 4px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%
}

.tlp-portfolio .layout1 .tlp-portfolio-item:hover .tlp-overlay {
  left: 0
}

.tlp-portfolio .layout1 .tlp-portfolio-thum img {
  -webkit-transition: all 1.1s ease;
  -moz-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  -ms-transition: all 1.1s ease;
  transition: all 1.1s ease;
  max-width: 100%
}

.tlp-portfolio .layout1 .tlp-portfolio-thum:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.tlp-portfolio .layout1 .tlp-content {
  width: 100%;
  position: relative
}

.tlp-portfolio .layout1 .tlp-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none
}

.tlp-portfolio .layout1 .tlp-content h3 a {
  text-decoration: none;
  border: none;
  box-shadow: none
}

.tlp-portfolio .layout1 .tlp-content p {
  padding: 0;
  margin: 0
}

.tlp-portfolio .layout1 .tlp-content .tlp-content-holder {
  padding: 15px 0;
  display: block
}

.tlp-portfolio .carousel2 .tlp-portfolio-thum,
.tlp-portfolio .isotope2 .tlp-portfolio-thum,
.tlp-portfolio .layout2 .tlp-portfolio-thum {
  overflow: hidden;
  position: relative;
  padding-left: 0;
  padding-right: 0
}

.tlp-portfolio .carousel2 .tlp-overlay,
.tlp-portfolio .isotope2 .tlp-overlay,
.tlp-portfolio .layout2 .tlp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  background-color: rgba(217, 35, 45, .85);
  -webkit-transition: all .5s ease-out .15s;
  -moz-transition: all .5s ease-out .15s;
  -ms-transition: all .5s ease-out .15s;
  -o-transition: all .5s ease-out .15s;
  transition: all .5s ease-out .15s;
  text-align: center
}

.tlp-portfolio .carousel2 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .carousel2 .tlp-portfolio-thum .link-icon,
.tlp-portfolio .isotope2 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .isotope2 .tlp-portfolio-thum .link-icon,
.tlp-portfolio .layout2 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .layout2 .tlp-portfolio-thum .link-icon {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0
}

.tlp-portfolio .carousel2 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .carousel2 .tlp-portfolio-thum:hover .link-icon,
.tlp-portfolio .isotope2 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .isotope2 .tlp-portfolio-thum:hover .link-icon,
.tlp-portfolio .layout2 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .layout2 .tlp-portfolio-thum:hover .link-icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.tlp-portfolio .carousel2 .tlp-overlay .link-icon a,
.tlp-portfolio .isotope2 .tlp-overlay .link-icon a,
.tlp-portfolio .layout2 .tlp-overlay .link-icon a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin-right: 4px;
  margin-left: 4px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%
}

.tlp-portfolio .tlp-portfolio-item .tlp-overlay .link-icon a {
  line-height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.tlp-portfolio .tlp-overlay .link-icon a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 0
}

.tlp-portfolio .carousel2 .tlp-overlay .link-icon,
.tlp-portfolio .isotope2 .tlp-overlay .link-icon,
.tlp-portfolio .layout2 .tlp-overlay .link-icon {
  text-align: center;
  display: block;
  padding: 0
}

.tlp-portfolio .layout2 .tlp-overlay .link-icon li {
  list-style: none;
  display: inline-block;
  margin-right: 4px;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%
}

.tlp-portfolio .layout2 .tlp-overlay .link-icon li a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 4px
}

.tlp-portfolio .carousel2 .tlp-portfolio-thum img,
.tlp-portfolio .isotope2 .tlp-portfolio-thum img,
.tlp-portfolio .layout2 .tlp-portfolio-thum img {
  -webkit-transition: all 1.1s ease;
  -moz-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  -ms-transition: all 1.1s ease;
  transition: all 1.1s ease;
  max-width: 100%
}

.tlp-portfolio .carousel2 .tlp-portfolio-thum:hover img,
.tlp-portfolio .isotope2 .tlp-portfolio-thum:hover img,
.tlp-portfolio .layout2 .tlp-portfolio-thum:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.tlp-portfolio .carousel2 .tlp-content2 p,
.tlp-portfolio .isotope2 .tlp-content2 p,
.tlp-portfolio .layout2 .tlp-content2 p {
  padding: 0;
  margin: 0 0 12px
}

.tlp-portfolio .carousel2 .tlp-content2 h3,
.tlp-portfolio .isotope2 .tlp-content2 h3,
.tlp-portfolio .layout2 .tlp-content2 h3 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 24px;
  font-weight: 400
}

.tlp-portfolio .carousel2 .tlp-content2 h3 a,
.tlp-portfolio .isotope2 .tlp-content2 h3 a,
.tlp-portfolio .layout2 .tlp-content2 h3 a {
  text-decoration: none;
  border: none;
  box-shadow: none
}

.tlp-portfolio .carousel2 .tlp-content-holder,
.tlp-portfolio .isotope2 .tlp-content-holder,
.tlp-portfolio .layout2 .tlp-content-holder {
  padding: 0 5px
}

.tlp-portfolio .carousel2 .tlp-portfolio-sd,
.tlp-portfolio .isotope2 .tlp-portfolio-sd,
.tlp-portfolio .layout2 .tlp-portfolio-sd {
  padding: 0 0 10px;
  margin: 0;
  font-size: 16px
}

.tlp-portfolio .isotope3 .tlp-portfolio-thum,
.tlp-portfolio .carousel3 .tlp-portfolio-thum,
.tlp-portfolio .layout3 .tlp-portfolio-thum {
  overflow: hidden;
  position: relative;
  width: 100%
}

.tlp-portfolio .isotope3 .tlp-overlay,
.tlp-portfolio .carousel3 .tlp-overlay,
.tlp-portfolio .layout3 .tlp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: rgba(217, 35, 45, .85);
  -webkit-transition: all .5s ease-out .15s;
  -moz-transition: all .5s ease-out .15s;
  -ms-transition: all .5s ease-out .15s;
  -o-transition: all .5s ease-out .15s;
  transition: all .5s ease-out .15s
}

.tlp-portfolio .isotope3 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .isotope3 .tlp-portfolio-thum .link-icon,
.tlp-portfolio .carousel3 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .carousel3 .tlp-portfolio-thum .link-icon,
.tlp-portfolio .layout3 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .layout3 .tlp-portfolio-thum .link-icon {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-out .5s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
  transition: all .3s ease-out .1s
}

.tlp-portfolio .isotope3 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .isotope3 .tlp-portfolio-thum:hover .link-icon,
.tlp-portfolio .carousel3 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .carousel3 .tlp-portfolio-thum:hover .link-icon,
.tlp-portfolio .layout3 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .layout3 .tlp-portfolio-thum:hover .link-icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.tlp-portfolio .isotope3 .tlp-portfolio-thum:hover .link-icon,
.tlp-portfolio .carousel3 .tlp-portfolio-thum:hover .link-icon,
.tlp-portfolio .layout3 .tlp-portfolio-thum:hover .link-icon {
  -webkit-transform: scale(1) translateY(-50%);
  -moz-transform: scale(1) translateY(-50%);
  -ms-transform: scale(1) translateY(-50%);
  -o-transform: scale(1) translateY(-50%)
}

.tlp-portfolio .isotope3 .tlp-overlay .link-icon,
.tlp-portfolio .carousel3 .tlp-overlay .link-icon,
.tlp-portfolio .layout3 .tlp-overlay .link-icon {
  text-align: center;
  display: block;
  padding: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg)
}

.tlp-portfolio .isotope3 .tlp-overlay .link-icon a,
.tlp-portfolio .carousel3 .tlp-overlay .link-icon a,
.tlp-portfolio .layout3 .tlp-overlay .link-icon a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  margin-right: 4px;
  margin-left: 4px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%
}

.tlp-portfolio .isotope3 .tlp-portfolio-item:hover .tlp-overlay,
.tlp-portfolio .carousel3 .tlp-portfolio-item:hover .tlp-overlay,
.tlp-portfolio .layout3 .tlp-portfolio-item:hover .tlp-overlay {
  left: 0
}

.tlp-portfolio .isotope3 .tlp-portfolio-thum img,
.tlp-portfolio .carousel3 .tlp-portfolio-thum img,
.tlp-portfolio .layout3 .tlp-portfolio-thum img {
  -webkit-transition: all 1.1s ease;
  -moz-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  -ms-transition: all 1.1s ease;
  transition: all 1.1s ease;
  max-width: 100%
}

.tlp-portfolio .isotope3 .tlp-portfolio-thum:hover img,
.tlp-portfolio .carousel3 .tlp-portfolio-thum:hover img,
.tlp-portfolio .layout3 .tlp-portfolio-thum:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.tlp-portfolio .isotope3 h3,
.tlp-portfolio .carousel3 h3,
.tlp-portfolio .layout3 h3 {
  padding: 0;
  margin: 0
}

.tlp-portfolio .isotope3 .tlp-content,
.tlp-portfolio .carousel3 .tlp-content,
.tlp-portfolio .layout3 .tlp-content {
  width: 100%;
  position: relative
}

.tlp-portfolio .isotope3 .tlp-content h3,
.tlp-portfolio .carousel3 .tlp-content h3,
.tlp-portfolio .layout3 .tlp-content h3 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none
}

.tlp-portfolio .isotope3 .tlp-content h3 a,
.tlp-portfolio .carousel3 .tlp-content h3 a,
.tlp-portfolio .layout3 .tlp-content h3 a {
  text-decoration: none;
  border: none;
  box-shadow: none
}

.tlp-portfolio .isotope3 .tlp-content p,
.tlp-portfolio .carousel3 .tlp-content p,
.tlp-portfolio .layout3 .tlp-content p {
  padding: 0 0 6px;
  margin: 0
}

.tlp-portfolio .isotope3 .tlp-content .tlp-content-holder,
.tlp-portfolio .carousel3 .tlp-content .tlp-content-holder,
.tlp-portfolio .layout3 .tlp-content .tlp-content-holder {
  padding: 15px 0
}

.tlp-portfolio .isotope1 .tlp-portfolio-thum {
  background: #ccc;
  overflow: hidden;
  position: relative;
  width: 100%
}

.tlp-portfolio .isotope1 .tlp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: rgba(217, 35, 45, .85);
  -webkit-transition: all .5s ease-out .15s;
  -moz-transition: all .5s ease-out .15s;
  -ms-transition: all .5s ease-out .15s;
  -o-transition: all .5s ease-out .15s;
  transition: all .5s ease-out .15s
}

.tlp-portfolio .isotope1 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .isotope1 .tlp-portfolio-thum .link-icon {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0
}

.tlp-portfolio .isotope1 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .isotope1 .tlp-portfolio-thum:hover .link-icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.tlp-portfolio .isotope1 .tlp-overlay .link-icon {
  text-align: center;
  display: block;
  padding: 0
}

.tlp-portfolio .isotope1 .tlp-overlay .link-icon a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  margin-right: 4px;
  margin-left: 4px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%
}

.tlp-portfolio .isotope1 .tlp-portfolio-item:hover .tlp-overlay {
  left: 0
}

.tlp-portfolio .isotope1 .tlp-portfolio-thum img {
  -webkit-transition: all 1.1s ease;
  -moz-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  -ms-transition: all 1.1s ease;
  transition: all 1.1s ease;
  max-width: 100%
}

.tlp-portfolio .isotope1 .tlp-portfolio-thum:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.tlp-portfolio .isotope1 .tlp-content {
  width: 100%;
  position: relative
}

.tlp-portfolio .isotope1 .tlp-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none
}

.tlp-portfolio .isotope1 .tlp-content h3 a {
  text-decoration: none;
  border: none;
  box-shadow: none
}

.tlp-portfolio .isotope1 .tlp-content p {
  padding: 0;
  margin: 0
}

.tlp-portfolio .isotope1 .tlp-content .tlp-content-holder {
  padding: 15px 0
}

.tlp-portfolio .carousel1 .tlp-portfolio-thum {
  background: #ccc;
  overflow: hidden;
  position: relative;
  width: 100%
}

.tlp-portfolio .carousel1 .tlp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: rgba(217, 35, 45, .85);
  -webkit-transition: all .5s ease-out .15s;
  -moz-transition: all .5s ease-out .15s;
  -ms-transition: all .5s ease-out .15s;
  -o-transition: all .5s ease-out .15s;
  transition: all .5s ease-out .15s
}

.tlp-portfolio .carousel1 .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .carousel1 .tlp-portfolio-thum .link-icon {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0
}

.tlp-portfolio .carousel1 .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .carousel1 .tlp-portfolio-thum:hover .link-icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.tlp-portfolio .carousel1 .tlp-overlay .link-icon {
  text-align: center;
  display: block;
  padding: 0
}

.tlp-portfolio .carousel1 .tlp-overlay .link-icon a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin-right: 4px;
  margin-left: 4px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  line-height: 0
}

.tlp-portfolio .carousel1 .tlp-overlay .link-icon a i {
  line-height: 0
}

.tlp-portfolio .carousel1 .tlp-portfolio-item:hover .tlp-overlay {
  left: 0
}

.tlp-portfolio .carousel1 .tlp-portfolio-thum img {
  -webkit-transition: all 1.1s ease;
  -moz-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  -ms-transition: all 1.1s ease;
  transition: all 1.1s ease;
  max-width: 100%
}

.tlp-portfolio .carousel1 .tlp-portfolio-thum:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.tlp-portfolio .carousel1 .tlp-content {
  width: 100%;
  position: relative
}

.tlp-portfolio .carousel1 .tlp-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none
}

.tlp-portfolio .carousel1 .tlp-content h3 a {
  text-decoration: none;
  border: none;
  box-shadow: none
}

.tlp-portfolio .carousel1 .tlp-content p {
  padding: 0;
  margin: 0
}

.tlp-portfolio .carousel1 .tlp-content .tlp-content-holder {
  padding: 15px 0;
  display: block;
  text-align: left
}

.is-carousel .pfp-pre-loader {
  height: 100px;
  overflow: hidden;
  text-align: center;
  position: relative
}

.is-carousel .rt-row.pfp-pre-loader:after {
  position: absolute;
  content: attr(data-title);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 45px 0;
  z-index: 5
}

.tlp-portfolio-container .pfp-carousel .owl-nav {
  position: absolute;
  right: 10px;
  top: -60px
}

.tlp-portfolio-container .pfp-carousel.owl-rtl .owl-nav {
  right: inherit;
  left: 10px;
  display: flex;
  flex-direction: row-reverse
}

.pfp-carousel.owl-theme .owl-nav [class*=owl-] {
  font-size: 18px;
  padding: 8px !important
}

.tlp-portfolio .slider .tlp-portfolio-thum {
  background: #ccc;
  overflow: hidden;
  position: relative;
  width: 100%
}

.tlp-portfolio .slider .tlp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: rgba(217, 35, 45, .85);
  -webkit-transition: all .5s ease-out .15s;
  -moz-transition: all .5s ease-out .15s;
  -ms-transition: all .5s ease-out .15s;
  -o-transition: all .5s ease-out .15s;
  transition: all .5s ease-out .15s
}

.tlp-portfolio .slider .tlp-portfolio-thum .tlp-overlay,
.tlp-portfolio .slider .tlp-portfolio-thum .link-icon {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0
}

.tlp-portfolio .slider .tlp-portfolio-thum:hover .tlp-overlay,
.tlp-portfolio .slider .tlp-portfolio-thum:hover .link-icon {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1
}

.tlp-portfolio .slider .tlp-overlay .link-icon {
  text-align: center;
  display: block;
  padding: 0
}

.tlp-portfolio .slider .tlp-overlay .link-icon a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 8px;
  margin-right: 4px;
  margin-left: 4px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%
}

.tlp-portfolio .slider .tlp-portfolio-item:hover .tlp-overlay {
  left: 0
}

.tlp-portfolio .slider .tlp-portfolio-thum img {
  -webkit-transition: all 1.1s ease;
  -moz-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  -ms-transition: all 1.1s ease;
  max-width: 100%;
  transition: all 1.1s ease
}

.tlp-portfolio .slider .tlp-portfolio-thum:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}

.tlp-portfolio .slider .tlp-content {
  width: 100%;
  position: relative
}

.tlp-portfolio .slider .tlp-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none
}

.tlp-portfolio .slider .tlp-content h3 a {
  text-decoration: none;
  border: none;
  box-shadow: none
}

.tlp-portfolio .slider .tlp-content p {
  padding: 0;
  margin: 0
}

.tlp-portfolio .slider .tlp-content .tlp-content-holder {
  padding: 15px 0
}

.tlp-portfolio .owl-carousel {
  position: relative
}

.tlp-portfolio .owl-carousel .owl-buttons {
  position: absolute;
  top: -40px;
  right: 0
}

.tlp-portfolio .button-group {
  margin: 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center
}

.tlp-portfolio button {
  background: #22b8f0;
  text-transform: capitalize;
  padding: 10px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 300;
  margin: 5px;
  border: none
}

.pfp-carousel.owl-theme .owl-nav .owl-next,
.pfp-carousel.owl-theme .owl-nav .owl-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid
}

.pfp-carousel.owl-theme .owl-nav .owl-next i,
.pfp-carousel.owl-theme .owl-nav .owl-prev i {
  line-height: 0
}

.tlp-portfolio button:focus,
.tlp-portfolio button:hover {
  background: #1868f2;
  color: #fff;
  text-decoration: none
}

.tlp-portfolio button.selected {
  background: #1868f2;
  color: #fff;
  outline: 0
}

.tlp-portfolio .tlp-portfolio-isotope-button {
  margin: 0 15px 30px
}

.tlp-portfolio-container .tlp-pagination-wrap .tlp-pagination>li span.hidden-xs {
  padding-left: 3px
}

.tlp-portfolio-container .tlp-carousel-item {
  padding-top: 30px
}

.tlp-portfolio-container.tlp-single-detail {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto
}

.tlp-single-detail {
  margin-top: 50px
}

.tlp-portfolio-detail-wrap {
  display: flex
}

.tlp-portfolio-detail-wrap .tlp-portfolio-image {
  flex: 0 0 50%;
  margin-right: 15px
}

.tlp-portfolio-detail-wrap .portfolio-detail-desc {
  padding: 0 15px;
  flex: 1
}

.tlp-portfolio-detail-wrap ul.single-item-meta li {
  margin: 8px 0
}

.tlp-single-detail .tlp-portfolio-detail-wrap {
  margin-bottom: 50px
}

.tlp-portfolio-container.tlp-single-detail h2.portfolio-title {
  line-height: 1.3;
  margin-bottom: 20px
}

@media screen and (max-width:900px) {
  .fotorama-holder {
    width: 80%
  }
}

@media screen and (max-width:767px) {
  .fotorama-holder {
    width: 96%
  }

  .tlp-portfolio-detail-wrap {
    flex-direction: column
  }

  .tlp-portfolio-detail-wrap .tlp-portfolio-image {
    margin-right: 0;
    margin-bottom: 25px
  }
}

@media screen and (max-width:360px) {
  .fotorama-holder {
    width: 100%
  }
}

@media (min-width:768px) {
  .tlp-col-sm-24 {
    flex: 0 0 20%;
    max-width: 20%
  }

  .tlp-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .tlp-col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%
  }

  .tlp-col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%
  }

  .tlp-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .tlp-col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%
  }

  .tlp-col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%
  }

  .tlp-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .tlp-col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%
  }

  .tlp-col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%
  }

  .tlp-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .tlp-col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%
  }

  .tlp-col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%
  }
}

@media (min-width:992px) {
  .tlp-col-md-24 {
    flex: 0 0 20%;
    max-width: 20%
  }

  .tlp-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .tlp-col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%
  }

  .tlp-col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%
  }

  .tlp-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .tlp-col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%
  }

  .tlp-col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%
  }

  .tlp-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .tlp-col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%
  }

  .tlp-col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%
  }

  .tlp-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .tlp-col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%
  }

  .tlp-col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%
  }
}

@media (min-width:1200px) {
  .tlp-col-lg-24 {
    flex: 0 0 20%;
    max-width: 20%
  }

  .tlp-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .tlp-col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%
  }

  .tlp-col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%
  }

  .tlp-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%
  }

  .tlp-col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%
  }

  .tlp-col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%
  }

  .tlp-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .tlp-col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%
  }

  .tlp-col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%
  }

  .tlp-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .tlp-col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%
  }

  .tlp-col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%
  }

  .tlp-portfolio .owl-carousel.owl-theme .owl-item>[class*=tlp-col-] {
    flex: 0 0 100%;
    max-width: 100%
  }
}

@media (max-width:767px) {

  .tlp-portfolio .carousel2 .tlp-portfolio-item.rt-row .tlp-content,
  .tlp-portfolio .isotope2 .tlp-portfolio-item.rt-row .tlp-content,
  .tlp-portfolio .layout2 .tlp-portfolio-item.rt-row .tlp-content {
    padding: 0
  }

  .tlp-portfolio .carousel2 .tlp-portfolio-thum,
  .tlp-portfolio .isotope2 .tlp-portfolio-thum,
  .tlp-portfolio .layout2 .tlp-portfolio-thum {
    margin-bottom: 15px
  }
}

#tlp-portfolio-container-8976 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-8976 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-8976 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-8976 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-8976 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-8976 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-8976 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-8976 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-8976 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-8976 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-8976 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-8976 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-8976 .tlp-pagination li span,
#tlp-portfolio-container-8976 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-8976 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-8976 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-8976 .tlp-pagination li span:hover,
#tlp-portfolio-container-8976 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-8976 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-8976 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-8976 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-8976 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-8976 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-8976 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-8976 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-8976 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-8976 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-8976 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-8976 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-8976 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-8976 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-8976 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9021 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9021 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9021 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9021 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9021 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9021 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9021 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9021 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9021 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9021 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9021 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9021 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9021 .tlp-pagination li span,
#tlp-portfolio-container-9021 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9021 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9021 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9021 .tlp-pagination li span:hover,
#tlp-portfolio-container-9021 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9021 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9021 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9021 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9021 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9021 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9021 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9021 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9021 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9021 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9021 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9021 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9021 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9021 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9021 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9767 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9767 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9767 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9767 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9767 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9767 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9767 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9767 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9767 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9767 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9767 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9767 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9767 .tlp-pagination li span,
#tlp-portfolio-container-9767 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9767 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9767 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9767 .tlp-pagination li span:hover,
#tlp-portfolio-container-9767 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9767 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9767 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9767 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9767 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9767 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9767 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9767 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9767 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9767 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9767 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9767 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9767 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9767 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9767 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9802 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9802 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9802 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9802 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9802 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9802 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9802 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9802 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9802 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9802 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9802 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9802 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9802 .tlp-pagination li span,
#tlp-portfolio-container-9802 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9802 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9802 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9802 .tlp-pagination li span:hover,
#tlp-portfolio-container-9802 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9802 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9802 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9802 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9802 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9802 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9802 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9802 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9802 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9802 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9802 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9802 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9802 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9802 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9802 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9831 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9831 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9831 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9831 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9831 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9831 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9831 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9831 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9831 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9831 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9831 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9831 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9831 .tlp-pagination li span,
#tlp-portfolio-container-9831 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9831 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9831 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9831 .tlp-pagination li span:hover,
#tlp-portfolio-container-9831 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9831 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9831 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9831 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9831 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9831 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9831 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9831 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9831 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9831 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9831 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9831 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9831 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9831 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9831 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9871 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9871 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9871 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9871 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9871 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9871 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9871 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9871 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9871 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9871 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9871 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9871 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9871 .tlp-pagination li span,
#tlp-portfolio-container-9871 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9871 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9871 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9871 .tlp-pagination li span:hover,
#tlp-portfolio-container-9871 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9871 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9871 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9871 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9871 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9871 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9871 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9871 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9871 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9871 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9871 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9871 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9871 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9871 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9871 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9906 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9906 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9906 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9906 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9906 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9906 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9906 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9906 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9906 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9906 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9906 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9906 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9906 .tlp-pagination li span,
#tlp-portfolio-container-9906 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9906 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9906 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9906 .tlp-pagination li span:hover,
#tlp-portfolio-container-9906 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9906 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9906 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9906 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9906 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9906 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9906 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9906 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9906 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9906 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9906 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9906 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9906 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9906 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9906 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9928 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9928 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9928 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9928 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9928 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9928 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9928 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9928 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9928 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9928 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9928 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9928 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9928 .tlp-pagination li span,
#tlp-portfolio-container-9928 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9928 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9928 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9928 .tlp-pagination li span:hover,
#tlp-portfolio-container-9928 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9928 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9928 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9928 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9928 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9928 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9928 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9928 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9928 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9928 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9928 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9928 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9928 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9928 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9928 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9937 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9937 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9937 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9937 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9937 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9937 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9937 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9937 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9937 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9937 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9937 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9937 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9937 .tlp-pagination li span,
#tlp-portfolio-container-9937 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9937 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9937 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9937 .tlp-pagination li span:hover,
#tlp-portfolio-container-9937 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9937 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9937 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9937 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9937 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9937 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9937 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9937 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9937 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9937 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9937 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9937 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9937 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9937 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9937 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-9992 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-9992 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9992 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-9992 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-9992 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-9992 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-9992 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9992 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-9992 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-9992 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-9992 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-9992 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-9992 .tlp-pagination li span,
#tlp-portfolio-container-9992 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-9992 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-9992 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-9992 .tlp-pagination li span:hover,
#tlp-portfolio-container-9992 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-9992 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-9992 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-9992 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-9992 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-9992 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9992 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-9992 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-9992 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-9992 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-9992 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-9992 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-9992 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-9992 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-9992 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-10002 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-10002 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10002 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10002 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-10002 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-10002 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-10002 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10002 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-10002 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-10002 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-10002 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-10002 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-10002 .tlp-pagination li span,
#tlp-portfolio-container-10002 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-10002 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-10002 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-10002 .tlp-pagination li span:hover,
#tlp-portfolio-container-10002 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-10002 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-10002 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10002 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-10002 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-10002 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10002 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-10002 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10002 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-10002 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-10002 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-10002 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-10002 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-10002 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-10002 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-10015 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-10015 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10015 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10015 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-10015 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-10015 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-10015 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10015 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-10015 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-10015 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-10015 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-10015 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-10015 .tlp-pagination li span,
#tlp-portfolio-container-10015 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-10015 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-10015 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-10015 .tlp-pagination li span:hover,
#tlp-portfolio-container-10015 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-10015 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-10015 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10015 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-10015 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-10015 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10015 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-10015 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10015 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-10015 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-10015 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-10015 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-10015 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-10015 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-10015 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-10025 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-10025 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10025 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10025 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-10025 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-10025 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-10025 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10025 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-10025 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-10025 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-10025 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-10025 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-10025 .tlp-pagination li span,
#tlp-portfolio-container-10025 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-10025 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-10025 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-10025 .tlp-pagination li span:hover,
#tlp-portfolio-container-10025 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-10025 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-10025 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10025 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-10025 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-10025 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10025 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-10025 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10025 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-10025 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-10025 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-10025 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-10025 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-10025 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-10025 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-10075 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-10075 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10075 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10075 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-10075 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-10075 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-10075 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10075 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-10075 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-10075 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-10075 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-10075 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-10075 .tlp-pagination li span,
#tlp-portfolio-container-10075 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-10075 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-10075 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-10075 .tlp-pagination li span:hover,
#tlp-portfolio-container-10075 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-10075 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-10075 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10075 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-10075 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-10075 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10075 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-10075 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10075 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-10075 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-10075 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-10075 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-10075 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-10075 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-10075 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-10081 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-10081 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10081 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10081 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-10081 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-10081 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-10081 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10081 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-10081 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-10081 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-10081 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-10081 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-10081 .tlp-pagination li span,
#tlp-portfolio-container-10081 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-10081 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-10081 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-10081 .tlp-pagination li span:hover,
#tlp-portfolio-container-10081 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-10081 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-10081 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10081 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-10081 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-10081 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10081 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-10081 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10081 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-10081 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-10081 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-10081 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-10081 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-10081 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-10081 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-8899 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-8899 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-8899 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-8899 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-8899 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-8899 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-8899 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-8899 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-8899 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-8899 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-8899 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-8899 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-8899 .tlp-pagination li span,
#tlp-portfolio-container-8899 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-8899 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-8899 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-8899 .tlp-pagination li span:hover,
#tlp-portfolio-container-8899 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-8899 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-8899 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-8899 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-8899 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-8899 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-8899 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-8899 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-8899 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-8899 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-19197 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-19197 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19197 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19197 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-19197 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-19197 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-19197 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19197 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-19197 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-19197 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-19197 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-19197 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-19197 .tlp-pagination li span,
#tlp-portfolio-container-19197 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-19197 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-19197 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-19197 .tlp-pagination li span:hover,
#tlp-portfolio-container-19197 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-19197 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-19197 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19197 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-19197 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-19197 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19197 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-19197 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19197 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-19197 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-19197 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-19197 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-19197 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-19197 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-19197 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-19316 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-19316 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19316 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19316 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-19316 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-19316 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-19316 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19316 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-19316 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-19316 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-19316 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-19316 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-19316 .tlp-pagination li span,
#tlp-portfolio-container-19316 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-19316 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-19316 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-19316 .tlp-pagination li span:hover,
#tlp-portfolio-container-19316 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-19316 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-19316 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19316 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-19316 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-19316 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19316 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-19316 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19316 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-19316 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-19316 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-19316 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-19316 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-19316 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-19316 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-19348 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-19348 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19348 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19348 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-19348 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-19348 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-19348 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19348 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-19348 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-19348 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-19348 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-19348 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-19348 .tlp-pagination li span,
#tlp-portfolio-container-19348 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-19348 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-19348 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-19348 .tlp-pagination li span:hover,
#tlp-portfolio-container-19348 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-19348 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-19348 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19348 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-19348 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-19348 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19348 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-19348 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19348 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-19348 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-19348 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-19348 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-19348 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-19348 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-19348 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-19215 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-19215 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19215 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-19215 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-19215 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-19215 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-19215 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19215 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-19215 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-19215 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-19215 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-19215 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-19215 .tlp-pagination li span,
#tlp-portfolio-container-19215 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-19215 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-19215 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-19215 .tlp-pagination li span:hover,
#tlp-portfolio-container-19215 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-19215 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-19215 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-19215 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-19215 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-19215 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19215 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-19215 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-19215 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-19215 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-19215 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-19215 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-19215 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-19215 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-19215 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-10033 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #0554f2
}

#tlp-portfolio-container-10033 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10033 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-10033 .tlp-portfolio-item .tlp-content {
  background: #0554f2
}

#tlp-portfolio-container-10033 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-10033 .owl-theme .owl-nav [class*=owl-] {
  background: #0554f2
}

#tlp-portfolio-container-10033 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10033 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0554f2
}

#tlp-portfolio-container-10033 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-10033 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-10033 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-10033 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-10033 .tlp-pagination li span,
#tlp-portfolio-container-10033 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-10033 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-10033 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-10033 .tlp-pagination li span:hover,
#tlp-portfolio-container-10033 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-10033 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-10033 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-10033 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-10033 .tlp-portfolio-item ul li i,
#tlp-portfolio-container-10033 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10033 .tlp-portfolio-item .link-icon a {
  color: #fff
}

#tlp-portfolio-container-10033 .tlp-portfolio-item .tlp-overlay .link-icon a,
#tlp-portfolio-container-10033 .tlp-portfolio-item .link-icon a {
  border: 1px solid #fff
}

#tlp-portfolio-container-10033 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-10033 .tlp-portfolio-item h3 {
  color: #fff
}

#tlp-portfolio-container-10033 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-10033 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #fff
}

#tlp-portfolio-container-10033 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #fff
}

#tlp-portfolio-container-10033 .tlp-portfolio-item .extra-features ul li {
  color: #fff
}

#tlp-portfolio-container-11306 .tlp-pagination ul.page-numbers li .page-numbers {
  background: #f5faff
}

#tlp-portfolio-container-11306 .isotope2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-11306 .carousel2 .tlp-portfolio-item .tlp-overlay .tlp-title,
#tlp-portfolio-container-11306 .tlp-portfolio-item .tlp-content {
  background: #f5faff
}

#tlp-portfolio-container-11306 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 15px
}

#tlp-portfolio-container-11306 .owl-theme .owl-nav [class*=owl-] {
  background: #f5faff
}

#tlp-portfolio-container-11306 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-11306 .owl-theme .owl-dots .owl-dot:hover span {
  background: #f5faff
}

#tlp-portfolio-container-11306 .tlp-overlay {
  background: rgba(5, 84, 242, .3)
}

#tlp-portfolio-container-11306 .tlp-portfolio-isotope-button button,
#tlp-portfolio-container-11306 .owl-theme .owl-nav [class*=owl-],
#tlp-portfolio-container-11306 .owl-theme .owl-dots .owl-dot span,
#tlp-portfolio-container-11306 .tlp-pagination li span,
#tlp-portfolio-container-11306 .tlp-pagination li a {
  background: #0554f2;
  color: #14133b
}

#tlp-portfolio-container-11306 .tlp-portfolio-isotope-button button:hover,
#tlp-portfolio-container-11306 .owl-theme .owl-nav [class*=owl-]:hover,
#tlp-portfolio-container-11306 .tlp-pagination li span:hover,
#tlp-portfolio-container-11306 .tlp-pagination li a:hover {
  background: #0554f2
}

#tlp-portfolio-container-11306 .tlp-portfolio-isotope-button button.selected,
#tlp-portfolio-container-11306 .owl-theme .owl-dots .owl-dot.active span,
#tlp-portfolio-container-11306 .tlp-pagination li.active span {
  background: #14133b
}

#tlp-portfolio-container-11306 .tlp-portfolio-item h3 a,
#tlp-portfolio-container-11306 .tlp-portfolio-item h3 {
  color: #2b2a4e;
  font-weight: 600
}

#tlp-portfolio-container-11306 .tlp-portfolio-item h3 a:hover,
#tlp-portfolio-container-11306 .tlp-portfolio-item h3:not(.color-white):hover {
  color: #2b2a4e;
  font-weight: 600
}

#tlp-portfolio-container-11306 .tlp-portfolio-item .tlp-portfolio-sd {
  color: #222
}

#tlp-portfolio-container-11306 .tlp-portfolio-item .extra-features ul li {
  color: #1e73be
}

.mega-menu-last-modified-1712209980 {
  content: 'Thursday 4th April 2024 05:53:00 UTC'
}

#mega-menu-wrap-primary,
#mega-menu-wrap-primary #mega-menu-primary,
#mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge {
  transition: none;
  border-radius: 0;
  box-shadow: none;
  background: 0 0;
  border: 0;
  bottom: auto;
  box-sizing: border-box;
  clip: auto;
  color: #666;
  display: block;
  float: none;
  font-family: inherit;
  font-size: 14px;
  height: auto;
  left: auto;
  line-height: 1.7;
  list-style-type: none;
  margin: 0;
  min-height: auto;
  max-height: none;
  min-width: auto;
  max-width: none;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  position: relative;
  pointer-events: auto;
  right: auto;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-transform: none;
  transform: none;
  top: auto;
  vertical-align: baseline;
  visibility: inherit;
  width: auto;
  word-wrap: break-word;
  white-space: normal
}

#mega-menu-wrap-primary:before,
#mega-menu-wrap-primary:after,
#mega-menu-wrap-primary #mega-menu-primary:before,
#mega-menu-wrap-primary #mega-menu-primary:after,
#mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:before,
#mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:after,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:before,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:after,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row:before,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row:after,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column:before,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column:after,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:before,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:after,
#mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge:before,
#mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge:after {
  display: none
}

#mega-menu-wrap-primary {
  border-radius: 0
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary {
    background: #fff
  }
}

#mega-menu-wrap-primary.mega-keyboard-navigation .mega-menu-toggle:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block a:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary a:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary span:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary input:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus,
#mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary form.mega-search-open:has(input[type=text]:focus) {
  outline-style: solid;
  outline-width: 3px;
  outline-color: #109cde;
  outline-offset: -3px
}

#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
  outline-offset: 2px
}

#mega-menu-wrap-primary.mega-keyboard-navigation>li.mega-menu-item>a.mega-menu-link:focus {
  background: #fff;
  color: #0554f2;
  font-weight: 400;
  text-decoration: none;
  border-color: #0554f2
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary.mega-keyboard-navigation>li.mega-menu-item>a.mega-menu-link:focus {
    color: #0554f2;
    background: #fff
  }
}

#mega-menu-wrap-primary #mega-menu-primary {
  text-align: left;
  padding: 0 2px
}

#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
  cursor: pointer;
  display: inline;
  transition: background .2s linear, color .2s linear, border .2s linear
}

#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group {
  vertical-align: middle;
  display: inline-block;
  transition: none
}

#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-title,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-description {
  transition: none;
  line-height: 1.5;
  display: block
}

#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-description {
  font-style: italic;
  font-size: .8em;
  text-transform: none;
  font-weight: 400
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon>a.mega-menu-link {
  display: flex;
  align-items: center
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon>a.mega-menu-link:before {
  flex: 0 0 auto;
  align-self: flex-start
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-tabbed.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon>a.mega-menu-link {
  display: block
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top>a.mega-menu-link {
  display: table-cell;
  vertical-align: middle;
  line-height: initial
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top>a.mega-menu-link:before {
  display: block;
  margin: 0 0 6px;
  text-align: center
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top>a.mega-menu-link>span.mega-title-below {
  display: inline-block;
  transition: none
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-icon-top>a.mega-menu-link {
    display: block;
    line-height: 40px
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-icon-top>a.mega-menu-link:before {
    display: inline-block;
    margin: 0 6px 0 0;
    text-align: left
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-right>a.mega-menu-link:before {
  float: right;
  margin: 0 0 0 6px
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-animating>ul.mega-sub-menu {
  pointer-events: none
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-disable-link>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-disable-link>a.mega-menu-link {
  cursor: inherit
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-disable-link>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>li.mega-menu-item-has-children.mega-disable-link>a.mega-menu-link {
  cursor: pointer
}

#mega-menu-wrap-primary #mega-menu-primary p {
  margin-bottom: 10px
}

#mega-menu-wrap-primary #mega-menu-primary input,
#mega-menu-wrap-primary #mega-menu-primary img {
  max-width: 100%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item>ul.mega-sub-menu {
  display: block;
  visibility: hidden;
  opacity: 1;
  pointer-events: auto
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item>ul.mega-sub-menu {
    display: none;
    visibility: visible;
    opacity: 1
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
    display: block
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary li.mega-hide-sub-menu-on-mobile>ul.mega-sub-menu {
    display: none
  }
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade] li.mega-menu-item>ul.mega-sub-menu {
    opacity: 0;
    transition: opacity .4s ease-in, visibility .4s ease-in
  }

  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade].mega-no-js li.mega-menu-item:hover>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade].mega-no-js li.mega-menu-item:focus>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade] li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
    opacity: 1
  }

  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade_up] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade_up] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    opacity: 0;
    transform: translate(0, 10px);
    transition: opacity .4s ease-in, transform .4s ease-in, visibility .4s ease-in
  }

  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade_up].mega-no-js li.mega-menu-item:hover>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade_up].mega-no-js li.mega-menu-item:focus>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade_up] li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=fade_up] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
    opacity: 1;
    transform: translate(0, 0)
  }

  #mega-menu-wrap-primary #mega-menu-primary[data-effect=slide_up] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=slide_up] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    transform: translate(0, 10px);
    transition: transform .4s ease-in, visibility .4s ease-in
  }

  #mega-menu-wrap-primary #mega-menu-primary[data-effect=slide_up].mega-no-js li.mega-menu-item:hover>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=slide_up].mega-no-js li.mega-menu-item:focus>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=slide_up] li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu,
  #mega-menu-wrap-primary #mega-menu-primary[data-effect=slide_up] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
    transform: translate(0, 0)
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children>ul.mega-sub-menu {
  display: none
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on>ul.mega-sub-menu {
  display: block
}

#mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:hover>ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:focus>ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu {
  visibility: visible
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
  visibility: inherit;
  opacity: 1;
  display: block
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns>ul.mega-sub-menu>li.mega-menu-item {
  float: left;
  width: 100%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns>ul.mega-sub-menu>li.mega-menu-item {
  float: left;
  width: 50%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns>ul.mega-sub-menu>li.mega-menu-item {
  float: left;
  width: 33.3333333333%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns>ul.mega-sub-menu>li.mega-menu-item {
  float: left;
  width: 25%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns>ul.mega-sub-menu>li.mega-menu-item {
  float: left;
  width: 20%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns>ul.mega-sub-menu>li.mega-menu-item {
  float: left;
  width: 16.6666666667%
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a[class^=dashicons]:before {
  font-family: dashicons
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:before {
  display: inline-block;
  font: inherit;
  font-family: dashicons;
  position: static;
  margin: 0 6px 0 0;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  background: 0 0;
  height: auto;
  width: auto;
  top: auto
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
  margin: 0
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
  margin: 0 6px 0 0
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-left.mega-toggle-on>a.mega-menu-link {
  border-radius: 0
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right>ul.mega-sub-menu {
  right: 0
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right.mega-toggle-on>a.mega-menu-link {
  border-radius: 0
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-menu-item {
    position: static
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
  margin: 0;
  display: inline-block;
  height: auto;
  vertical-align: middle
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-item-align-right {
  float: right
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-item-align-right {
    margin: 0
  }
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-item-align-float-left {
    float: left
  }
}

@media only screen and (min-width:769px) {

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus {
    background: #fff;
    color: #0554f2;
    font-weight: 400;
    text-decoration: none;
    border-color: #0554f2
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
  background: #fff;
  color: #0554f2;
  font-weight: 400;
  text-decoration: none;
  border-color: #0554f2
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
    color: #0554f2;
    background: #fff
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
  background: #fff;
  color: #0554f2;
  font-weight: 400;
  text-decoration: none;
  border-color: #0554f2
}

@media only screen and (max-width:768px) {

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    color: #0554f2;
    background: #fff
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  line-height: 90px;
  height: 90px;
  padding: 0 15px;
  vertical-align: baseline;
  width: auto;
  display: block;
  color: #14133b;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  outline: none
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-multi-line>a.mega-menu-link {
    line-height: inherit;
    display: table-cell;
    vertical-align: middle
  }
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-multi-line>a.mega-menu-link br {
    display: none
  }
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
    display: list-item;
    margin: 0;
    clear: both;
    border: 0
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-item-align-right {
    float: none
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    border-radius: 0;
    border: 0;
    margin: 0;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    background: 0 0;
    text-align: left;
    color: #222;
    font-size: 14px
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row {
  max-width: 1200px;
  margin: 0 auto
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column {
  float: left;
  min-height: 1px
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-1 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-2 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-2 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-3 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-3 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-3 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-4 {
    width: 25%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-4 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-4 {
    width: 75%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-4 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-5 {
    width: 20%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-5 {
    width: 40%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-5 {
    width: 60%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-5 {
    width: 80%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-5 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-6 {
    width: 16.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-6 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-6 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-6 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-6 {
    width: 83.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-6 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-7 {
    width: 14.2857142857%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-7 {
    width: 28.5714285714%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-7 {
    width: 42.8571428571%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-7 {
    width: 57.1428571429%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-7 {
    width: 71.4285714286%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-7 {
    width: 85.7142857143%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-7-of-7 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-8 {
    width: 12.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-8 {
    width: 25%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-8 {
    width: 37.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-8 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-8 {
    width: 62.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-8 {
    width: 75%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-7-of-8 {
    width: 87.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-8-of-8 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-9 {
    width: 11.1111111111%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-9 {
    width: 22.2222222222%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-9 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-9 {
    width: 44.4444444444%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-9 {
    width: 55.5555555556%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-9 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-7-of-9 {
    width: 77.7777777778%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-8-of-9 {
    width: 88.8888888889%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-9-of-9 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-10 {
    width: 10%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-10 {
    width: 20%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-10 {
    width: 30%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-10 {
    width: 40%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-10 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-10 {
    width: 60%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-7-of-10 {
    width: 70%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-8-of-10 {
    width: 80%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-9-of-10 {
    width: 90%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-10-of-10 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-11 {
    width: 9.0909090909%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-11 {
    width: 18.1818181818%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-11 {
    width: 27.2727272727%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-11 {
    width: 36.3636363636%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-11 {
    width: 45.4545454545%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-11 {
    width: 54.5454545455%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-7-of-11 {
    width: 63.6363636364%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-8-of-11 {
    width: 72.7272727273%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-9-of-11 {
    width: 81.8181818182%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-10-of-11 {
    width: 90.9090909091%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-11-of-11 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-1-of-12 {
    width: 8.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-2-of-12 {
    width: 16.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-3-of-12 {
    width: 25%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-12 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-5-of-12 {
    width: 41.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-6-of-12 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-7-of-12 {
    width: 58.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-8-of-12 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-9-of-12 {
    width: 75%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-10-of-12 {
    width: 83.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-11-of-12 {
    width: 91.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-12-of-12 {
    width: 100%
  }
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-column {
    width: 100%;
    clear: both
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
  padding: 15px 9px;
  width: 100%
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
  z-index: 999;
  border-radius: 0;
  background: #fff;
  border: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  max-width: none;
  left: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
    float: left;
    position: static;
    width: 100%
  }
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
    width: 25%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
    width: 75%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
    width: 20%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
    width: 40%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
    width: 60%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
    width: 80%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
    width: 16.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
    width: 83.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
    width: 14.2857142857%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
    width: 28.5714285714%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
    width: 42.8571428571%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
    width: 57.1428571429%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
    width: 71.4285714286%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
    width: 85.7142857143%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
    width: 12.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
    width: 25%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
    width: 37.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
    width: 62.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
    width: 75%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
    width: 87.5%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
    width: 11.1111111111%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
    width: 22.2222222222%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
    width: 44.4444444444%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
    width: 55.5555555556%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
    width: 77.7777777778%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
    width: 88.8888888889%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
    width: 10%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
    width: 20%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
    width: 30%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
    width: 40%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
    width: 60%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
    width: 70%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
    width: 80%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
    width: 90%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
    width: 9.0909090909%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
    width: 18.1818181818%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
    width: 27.2727272727%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
    width: 36.3636363636%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
    width: 45.4545454545%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
    width: 54.5454545455%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
    width: 63.6363636364%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
    width: 72.7272727273%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
    width: 81.8181818182%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
    width: 90.9090909091%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
    width: 8.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
    width: 16.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
    width: 25%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
    width: 33.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
    width: 41.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
    width: 50%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
    width: 58.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
    width: 66.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
    width: 75%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
    width: 83.3333333333%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
    width: 91.6666666667%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
    width: 100%
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu .mega-description-group .mega-menu-description {
  margin: 5px 0
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item ul.mega-sub-menu {
  clear: both
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  margin-left: 10px
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
  margin-left: 10px
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
  color: #666;
  font-family: inherit;
  font-size: 14px;
  display: block;
  float: left;
  clear: none;
  padding: 15px 9px;
  vertical-align: top
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item.mega-menu-clear,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item.mega-menu-clear {
  clear: left
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item h4.mega-block-title,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item h4.mega-block-title {
  color: #555;
  font-family: inherit;
  font-size: 12px;
  text-transform: none;
  text-decoration: none;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0 0 5px;
  vertical-align: top;
  display: block;
  visibility: inherit;
  border: 0
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item h4.mega-block-title:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item h4.mega-block-title:hover {
  border-color: rgba(0, 0, 0, 0)
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
  color: #0554f2;
  font-family: inherit;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  text-align: left;
  margin: 10px 0;
  padding: 0 7px;
  vertical-align: top;
  display: block;
  border: 0
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover {
  border-color: #0554f2
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus {
  color: #0554f2;
  font-weight: 400;
  text-decoration: none;
  background: #fff
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover>span.mega-title-below,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus>span.mega-title-below,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover>span.mega-title-below,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus>span.mega-title-below {
  text-decoration: none
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link {
  color: #656567;
  font-family: inherit;
  font-size: 15px;
  text-transform: none;
  text-decoration: none;
  font-weight: 400;
  text-align: left;
  margin: 5px 0;
  padding: 0 7px;
  vertical-align: top;
  display: block;
  border: 0
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link:hover {
  border-color: #0554f2
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon>a.mega-menu-link {
  display: flex
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link:focus,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link:focus {
  color: #0554f2;
  font-weight: 400;
  text-decoration: none;
  background: #fff
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu {
    border: 0;
    padding: 10px;
    border-radius: 0
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item {
    width: 100%;
    clear: both
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-no-headers>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-no-headers>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
  color: #656567;
  font-family: inherit;
  font-size: 15px;
  text-transform: none;
  text-decoration: none;
  font-weight: 400;
  margin: 0;
  border: 0;
  padding: 0 7px;
  vertical-align: top;
  display: block
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-no-headers>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-no-headers>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-no-headers>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu.mega-no-headers>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:focus {
  color: #0554f2;
  font-weight: 400;
  text-decoration: none;
  background: #fff
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu {
  z-index: 999;
  position: absolute;
  width: 200px;
  max-width: none;
  padding: 0;
  border-top: 0 solid #fff;
  border-left: 2px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 0 solid #fff;
  background: #fff;
  border-radius: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu {
    float: left;
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0
  }
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    clear: both
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  display: block;
  background: #fff;
  color: #656567;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  padding: 5px 13px;
  line-height: 35px;
  text-decoration: none;
  text-transform: none;
  vertical-align: baseline
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child>a.mega-menu-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child>a.mega-menu-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child>a.mega-menu-link {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child>a.mega-menu-link {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
  }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
  background: #fff;
  font-weight: 400;
  text-decoration: none;
  color: #0554f2
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
  position: absolute;
  left: 100%;
  top: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    position: static;
    left: 0;
    width: 100%
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
    padding-left: 20px
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
    padding-left: 30px
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
  display: inline-block;
  width: auto;
  background: 0 0;
  position: relative;
  pointer-events: auto;
  left: auto;
  min-width: auto;
  font-size: inherit;
  padding: 0;
  margin: 0 0 0 6px;
  height: auto;
  line-height: inherit;
  color: inherit
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
  content: "ï‡";
  font-family: dashicons;
  font-weight: 400;
  display: inline-block;
  margin: 0;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(0);
  color: inherit;
  position: relative;
  background: 0 0;
  height: auto;
  width: auto;
  right: auto;
  line-height: inherit
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
  float: right
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on>a.mega-menu-link>span.mega-indicator:after {
  content: "ïƒ"
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
    float: right
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-toggle-on>a.mega-menu-link>span.mega-indicator:after {
    content: "ïƒ"
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile>a.mega-menu-link>span.mega-indicator {
    display: none
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children)>a.mega-menu-link>span.mega-indicator,
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-hide-arrow>a.mega-menu-link>span.mega-indicator {
  display: none
}

@media only screen and (min-width:769px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item a.mega-menu-link>span.mega-indicator:after {
    content: "ï…"
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
    text-align: right
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link>span.mega-indicator {
    float: left
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link>span.mega-indicator:after {
    content: "ï";
    margin: 0 6px 0 0
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
    float: right;
    margin: 0 0 0 6px
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    left: -100%;
    top: 0
  }
}

#mega-menu-wrap-primary #mega-menu-primary li[class^=mega-lang-item]>a.mega-menu-link>img {
  display: inline
}

#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link>img.wpml-ls-flag,
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link>img.iclflag {
  display: inline;
  margin-right: 8px
}

@media only screen and (max-width:768px) {

  #mega-menu-wrap-primary #mega-menu-primary li.mega-hide-on-mobile,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-hide-on-mobile,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item.mega-hide-on-mobile {
    display: none
  }
}

@media only screen and (min-width:769px) {

  #mega-menu-wrap-primary #mega-menu-primary li.mega-hide-on-desktop,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-hide-on-desktop,
  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item.mega-hide-on-desktop {
    display: none
  }
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary:after {
    content: "";
    display: table;
    clear: both
  }
}

#mega-menu-wrap-primary .mega-menu-toggle {
  display: none;
  z-index: 1;
  cursor: pointer;
  background: #fff;
  border-radius: 2px;
  line-height: 60px;
  height: 60px;
  text-align: left;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  white-space: nowrap
}

#mega-menu-wrap-primary .mega-menu-toggle img {
  max-width: 100%;
  padding: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary .mega-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
  }
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-preferred-size: 33.33%;
  -webkit-flex-basis: 33.33%;
  flex-basis: 33.33%
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
  margin-left: 6px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
  margin-right: 6px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
  margin-left: 3px;
  margin-right: 3px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
  margin-right: 20px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
  margin-left: 6px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  outline: 0;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0
}

@media only screen and (max-width:768px) {
  #mega-menu-wrap-primary .mega-menu-toggle+#mega-menu-primary {
    background: #fff;
    padding: 0 15px 0 0;
    display: none
  }

  #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
    display: block
  }
}

.elementor-sticky__spacer #mega-menu-wrap-primary #mega-menu-primary,
.elementor-sticky__spacer #mega-menu-wrap-primary #mega-menu-primary .mega-sub-menu {
  visibility: inherit !important
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 {
  cursor: pointer;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: .15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  transform: scale(.8);
  align-self: center;
  outline: 0;
  background: 0 0
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
  outline: 0
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner {
  display: block;
  top: 50%;
  margin-top: -2px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:before,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:after {
  width: 40px;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:before,
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:after {
  content: "";
  display: block
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:before {
  top: -10px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner:after {
  bottom: -10px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner {
  top: 2px
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner:before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: .15s
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner:after {
  top: 20px
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg)
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg)
}

#mega-menu-wrap-primary {
  clear: both
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a:before {
  content: "";
  position: absolute !important;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50%;
  border-bottom: 3px solid #fff;
  transform-origin: top right;
  transform: scaleX(0);
  transition: .5s;
  width: 100% !important
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:hover>a:before {
  content: "";
  position: absolute !important;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50%;
  border-bottom: 3px solid #0554f2;
  transition: .5s;
  transform-origin: top right;
  transform: scaleX(1);
  width: 100% !important
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children:hover>a.mega-menu-link>span.mega-indicator:after {
  transform: rotate(180deg) translateX(0px);
  transition: all .4s ease
}

/*! This file is auto-generated */
@font-face {
  font-display: swap;
  font-family: dashicons;
  src: url("/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800");
  src: url("/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix") format("embedded-opentype"), url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHvwAAsAAAAA3EgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFZAuk8lY21hcAAAAXwAAAk/AAAU9l+BPsxnbHlmAAAKvAAAYwIAAKlAcWTMRWhlYWQAAG3AAAAALwAAADYXkmaRaGhlYQAAbfAAAAAfAAAAJAQ3A0hobXR4AABuEAAAACUAAAVQpgT/9mxvY2EAAG44AAACqgAAAqps5EEYbWF4cAAAcOQAAAAfAAAAIAJvAKBuYW1lAABxBAAAATAAAAIiwytf8nBvc3QAAHI0AAAJvAAAEhojMlz2eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/Mc4gYGVgYOBhzGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfHVnAnH1mBgZGIE0CDMAAI/zCGl4nN3Y93/eVRnG8c/9JE2bstLdQIF0N8x0t8w0pSMt0BZKS5ml7F32lrL3hlKmCxEQtzjAhQMRRcEJijhQQWV4vgNBGV4nl3+B/mbTd8+reeVJvuc859znvgL0A5pkO2nW3xcJ8qee02ej7/NNDOz7fHPTw/r/LnTo60ale4ooWov2orOYXXQXPWVr2V52lrPL3qq3WlmtqlZXx1bnVFdVd9TNdWvdXnfWk+tZ9dx6wfvvQ6KgaCraio6iq+/VUbaVHWVX2V0trJb2vXpNtbZaV91YU7fUbXVH3VVPrbvrefnV//WfYJc4M86OS2N9PBCP9n08FS/E6w0agxtDG2P6ProaPY3ljaMaJzVOb1ze2NC4s3Ff46G+VzfRQn8GsBEbM4RN2YQtGMVlMY2v8COGai0Hxm6MjEWxOBZGb+zJArbidjajjUGxJHbgUzwYG/EJPsNDfJLFsYzpXM6Pmcd8Ps1BvB8LGEE7W7KSzdmGA9ifgzmau7ibcUxkB7bnHhZxb+xDgw/yYb7GU/yQp2NgDI9xMZ61sWVsFZtHkxb5+ZgQE2NSdMYmDOM5HmZrfs6H+Cbf4bt8m28xhb2YyjQWciDHxk7RGg2W8DFWxbyYE20cx/GcwImcxKmxWYyIGXr3l7MPp/MAn+PzfIFH+Co/4296Q2v+wdvRHP1iQIyKMTE2ZsZesW8QSzmHi7mFK7iWsziTs7mIG/gAl3Irl3Az13A117GeC7iSdVzIjdzGMXycP/ITfskv+B5PRk/MjT1iCPuyLAbF4Jgds2Jj7uOj7MmX+DI78hfejBa6+Kxmekp0s5TBXM/kiNg29uaNmM5p0c6fmMmMGMbLMZS/8w2+zh78lPFMYFvt9Ul0Moax/IA/s5P2+hy6mcXO7EoPu7F7bM1feSR25wzuZAN3xBasiJGxDSfH9pzLeVzF7NgxtmM0+/FK7MLrvBNTeZSXYlP+wO/5J//SV/2O3/Iiv+EFfs2veDf68xHOj53p5Yt8n72ZG6MZzhoO5wgO4VCO5CgOY3VM4S1epYxdYzKP8QSPx3xu4v7o4Fmdydbo4j1eo+IZbdaW/+Gc/L/82Tj/0zbS/4kVue5YrmzpP3L1Sw3T+SY1mU46qdl05kn9TKef1GL5J6T+popAGmCqDaRWU5UgDTTVC9JGpspB2ti4TOMmpmpC2tRUV0ibmSoMqc1Ua0iDLFfwNNhypU5DTJWINNTQGqRhFos0DrdYrHGExUKNIy16Nbabqhhpc1M9I21hqmykUaYaR9rSyM+7lZGfd2sjP2+HxRKNo01VkTTGVB9JY40HNY6zyGs23lQ9SRNMdZQ00VRRSZNMtZXUaeQ5bmOqt6RtTZWXtJ2pBpO2N1Vj0g6mukza0VShSV2mWk2abKrapClGvtumWuS1mmbkNZ5u5HWdYeQ1m2mq+KRZRl7v2UZ+9p1M9wFpZ9PNQNrFdEeQdjXdFqTdTPcGaXfTDULqNvK6zjHy+vUYed5zjbwee5juHNI8I++f+ca9GheYbiTSQiOfp17TLUVaZLqvSItNNxdpT9MdRtrLdJuR9jae1rjEIu/tpRZ5/y6zyHPZxyLvkX2NtRqXW+R13s8i780VFnmdV1rkc7+/5SKRVhnPazzAIu+7Ay3yuh1kkffdwRZ53x1ikc/0oUY+f6tNNxTpMNOtTFpj5LNyuOmmJh1hurNJR5pub9JRpnucdLTpRicdY7rbSceabnnScUbep8cbeb1PMPKePdHIe/YkI7+fJxt53muN/L1Psch781SLXPNOs8h74HQjv4dnmLoL0plGXuOzLPL+Otsi781zLHINOdfI8zjPyPM438jzuMDI8/iAkedxoZGfcZ1FrlEXWeSzebFFPpeXGLlWXWrkfXSZkffa5Uae3xWmjoh0pak3Il1l6pJIV5v6JdI1ps6JdK2phyJdZ+qmSNeb+irSDaYOi3Sjqdci3WTqukg3G29rvMUi3123WuQ74jaLfEett8j1+3aLXIM3WOQafIdFrk93WuQ9c5dFPmd3W75G0z2mbi8/ah/1fRRh6gDV85t6QYpmU1dI0c/UH1K0mDpFiv6mnpFigKl7pGg19ZEUbaaOkmKQqbekGGzqMimGmPpNiqGmzpNimKkHpRhu6kYpRpj6UoqRpg6Vot3Uq1J0mLpWitGm/pVijKmTpRhr6mkpxpm6W4rxpj6XYoKp46WYaOp9KSaZumCKTlM/TNFl6owpJpt6ZIoppm6ZYqrxpMZpFqrvxXQL1fdihoXqezHTIq/TLFOnTTHbUJ0tui3yGvdYaH3LsNDXlQ0Lvb5sMnXplM2mfp2yn6lzp2wx9fCU/U3dPOUAU19P2Wrq8CnbTL0+5SDjTY2DLXe95RBTEqAcasoElMMs195yuKH6VY4wJQbKkabsQNlu5O/dYcoTlKMNrXs5xiKvwVgL9RblOFPuoBxvvKFxgimLUE40VCvLSRb5Z3aakgpllymzUE429J6VUyzynKYaL2ucZpHnPd2UcihnmPIO5UxT8qGcZcpAlLNNaYiy28jPPsfIz95j5DnOtfybg3IPI89jnpHnMd/I67TAyOu00JSzKHtNiYtqoSl7UfWaUhjVUlMeo1pmSmZU+5gyGtW+prRGtdyU26j2MyU4qhWmLEe10lBvVK0y5Tuq1aakR7XGcq2uDrfIX3+EKQdSHWlKhFRHmbIh1dGGamh1jCkvUh1r5GdZa6E9V51iSpNUpxq6d6vTTAmT6nRT1qQ6w5Qnqc405U+qswy9l9XZFjo71TmmdEq1zpRTqS4y8jpdbLyi8RKLvP6XmvIs1WXGOxovN2VcqitMaZfqSuMljVeZEjDVjaYsTHWTKRVT3WzKx1S3mJIy1a3WN8fbTOmZar0pR1PdbkrUVBtM2ZrqDlPKztdlH+Vt6jAlb+qG8a7GJlMap2425XLqFkN9Rt3flNWpB5hSO3WrKb9Tt5mSPPUgU6anHmzozNRDTDmfeqgp8VMPM2V/6uGG9lw9wtCeq0ca6i/rdkP9Zd1haC/Wow3txXqMoV6zHmtof9fjLFRH6vHGWxonGK9qnGiUGidZ6EzVnRaqR3WX8ZjGycYTGqcaj2ucZqFaUE839N7XM4z7Nc60yPOYZTyrsdvybyfrOUZe7x6L/PPnGu9pnGe8pnG+UWlcYDzzb8iLsxoAeJysvQmcJMdZJ5qRlZmR91F5VWXdZ/bd0511zEzP9PSMPKOrS5JHEpJGI0uyRbUk27KMMMuitVU25lgW+cAyuGt3f17A2Muaw6bHwMIzC5g15jFlMNcaA7vAmp41ZtnfW1h48PbVvC8is46eGZnj97qrIiMjj7i/+H9HfMWwDPyh/wddZTRmnWEaYbfj+cl/F4dYcErIc7BgIAHDv9ftdDtnEASbkL7ZRS98qimf8DXL84pOsbr/qTWMc6Io59OWVFC0WiVfkDTFUbEr5kQX/8mnmgpniLqtmTzGQ7gb0rGH4Q5NKuTLdU0pSJZZUDHOY0yKFpfvV9CvMCpjQGyziBwdVddQaxvZbYyY7uVO5/Jzlzvdy898EP0KjXYuv/mxzvi3Pvt68ih9fohGTJph7GjTKyBHWEa4Xas2T6NWZ3DoFYteNIjcYhGNiu4VtzgY0MMk7y+iX2fKTASxTrsTNsMmruIN2hg4aZJtRFql20GdbvLv+cW4vdBvI4RYLKqYU+or9XVPVZRUyg/8SMnUcjl//ICnYlHgJT29YkoCVvOrC+iHUqwoSIKEkODnc7WMlgm8IMOynpI51lipj39AdxQ/LemylrKkak3J8VxS1hHUM2SOQT/WBOzjUMBurd0McdhthrV21OmGXb/TbUeu53d97PkR3uy0mlXB8dDoONYXOgte0At8OOq42xWMhU7o5XuBB0ddOP6l8urqzurqKOeH8Q30CT/YTZ44flzQQ5LwArltZ5UUKUXL9Qvo5xmJ0UkfICgWlMdvR9h3K22/XXPRMMx99KO5X+i3hsPx1VEfNZPzaGF/f/+lwWD6nq+i/8x4TJU5DnFoYQPpCAYs1MBATRiW28hLkVMyWh2vg7sevWWNpdd8GMzeJvqsaxhu6J7IP2uW18xnsU5OTvz2PxctX/xO0fTVZ0VI8o6fWIb7FtzjhWetyir693AP3KjjZ821svlsnpwYxvhL/1z0TYRpGNFUT9eXZ7dWSLE5WvZr6BpjM3lmielA/7RbzWUU1nCtKsCI9KLKZifc9Byh2mx1/MiKI9EmNA+G7pqcop6hLFf71WXZMGTEKMYw12i0m83RgISBgHv9KI4dXpGNKDJkOBifbLbJXeH4L+nd7LvelXuExqBYUjzJ0G8yPKPADHOZHIz2BrPIQPch2lMGCtswWqCjfHJeilMbPgwtGpArFdKNb37zm+3BINj7+n5/t4XpyX+n4XjQv4r6/auDFmq10H1PPGE///zWQw/bly61lpf3Hn88/fzzaRpGj1y69Ah8dyL4S8b076P/RtuN9jiGDjfYGoznDkw7bzZ8fyJrWdnCPfVjvWYv+6tprZA5dy7UHSfvOOjnsufOZgua+aD4ePQfG68twK3fQi7knckcJ/QhRdqia1UsPnIrVjREzPhwdJ2JBqg3Pggi1EvG4GfRLzMYWqkGcWiITpHF0Dow14GqkG46g9qtbscnFwyE7rv/2P1CxuF+079W0kqFzFNlpewpZSx9FpJtHt+P3gd3YN7xW4VrriaJZcWDW96QLVQvQbKdEe5PaNgfoD9mYDghyKxJhzWZSJTINGOiHHY9Os6Rsv6D6+6G5Vi8trZ9B3ayaU/W5LSB79hedzbSdppHB2s/sK5xEN1wyS1GWtYkP51x8e3bSfp0zo3QFRgXy8ztMGqtVrNWqQquFY/YRkSG7DKi4/M0qpFBugXV72x6rj9/VkDzd7bRyFDGB3QM9xTjOpNVDEPJirI4jQwCcjXACg5IEon0UYukja9C+F2GazQFDFWHyMsk8shNKZN5N2IRrB0R8wBzGVaAqo6cItrcRq015OsIr6Gw021WsQALXgER6t6EZux2Qph7ReRvdrpeClK7HZg/zRDuhgMl8ckS6cGITAG9F3Cne7j97Pb2s28nwTt535RWSrwh2YLEsaInNyqcqAeSXpDa60GR5QwO/x92iuU5JImKUMAqdLaPc4WgYpXltMln3DvfbZQk00McyyRvheCjVh6XI81SBFGxJA1xWgbZnosUxcgG9omKKWrjrzielrUlQ8EplktxUr6TFnguldILS0iqr4Tn0JsESTM4RWFg1s/aaAFWjlPMG29oJRtinS40BtS0RhpICGmjkVUvJO2jo2YXmsrzyaXmOnLXYCKQxvPIdCUDFK7FLUf+BZc0IcS2WeiAuTZTeUlkeV3lUq7Ga6JTNNQ0JxliKFsPWTlWQk7uQmpTcQRsBxBWNZ9nWVZjOY7n0rwoaBiX/BrmIDGFrbKSYhGbUrx7X3/M9eebcPxLWEKiyIoFQ0urCPE4lTJVhDmfFwsZS87ZXAlaS4BLLMe77xQMSYYsDF7UeFbiBMnzcx5b9FRXF6DAdU8xpAa09tqWZTptaE5rrk3TTIYpAK1YYNZgDJ5gdpjzzC5zkXmYeYx5A/PMDW3NR55fa3bbMLIAXvm1dujWyFgjIYZvJPiRW2v6pAlDWELJ9D+N4ABXyHUYpPCGELoJQpKSglO4kzyJ55p6/Ndnkdg1vti0RV6V2Mdqtwui3XyMlZpnOaMrBo9dlB4l1565wEP6ZQTpKfO4yCLpuJFqrqn+sfL/8tXVcnlV9TdKf+lrq+Vj8038f9eqlR+7z2hoeq1aO/8N9xla4w3na9Xz9Ur1wvnqbffqDc249x5I1b8hSa7Wq9VKfa9e8JbPFurL4/9aK3or54q1JW9Kh2h7nmTuuGl84s5kbIUwKEndaSQeeHS0wsgssnS+kqGKJ3fPtUjwNGAuXUqrvMilMvbpNdYo2Xb/LCBRjktrupgXZFHXontdG/NVuRMoJtAkTeXE1JGx9fndlapnq1jGHAFfkrxoq2pu+96Uk81nChYrcDbisF7K6apsqvfV1pqXli1d0hVBlmd49zfQFxgHxg1DAE6yqjRhvmAfIA3vJase+nj2Qvm77E7T/pimbZ4t3XXHXbI+/jD2DMMDBJTV9Y/Zzbb9L8rnN3XlrjvvKu18GhsE/Uzz+RlY9xxY6xlUJQ2yDjO5s+l7CdjHXUDbBTqDq+RiGzB3hBjH0CSBSwmW07MtPgUTQjWcC4VOOVerHrv/WLWaK7ZLyNYVW7e0Zr5czjc1S7cV/dx6tZPfwRIviryEdwrtygSffwHquwXHJmE0CKILm8YU2QHJIFgWlxCBr9toHU0uzI4Avj+j+2njkW2T41Kav6Zxosw5mllWXjl5SbtvLS3sfFAVRN5NYSWluT6HZdYIntR5AX1GEwT99QHQwxQGTKqlZIFzBcxrr2wL6bX7tEsnX1GrmuZwsshpGz45GKcfUhyfFF2gnYbRb1F0WwT0vcXcyzDtShv4AjZcY3G74ls1i9cJAWwDCoXx522jNehZD+gfjM5tBHO9SwhqkRDOW6QhZvtU67zjpHffsHmdObyKHta6gSqaq25g38/JmIUVBF30o4zAszLPLVRsJSVLbErncmdLgsBKAt9ZDdI0zY6w6dkPvKm1cVtGw8F4iPq/EdiaID1hibLW5VNIkgUkKk8akoBkmUdQXM3iWUHm/K6t80iCvJBQtHI8yytceYoTrgBOSAEygkXFrrQrqF1xMRx7qA95RACkaGQAseGwH83G+uQ5QBcVyydPHoyHMMyuMwckgFv5G95vAB6kediAOhsRBPDlJ3kdHqJsD/7G1+Yy3IuG0X70NcpaQNOyQqZHizp5Zjh5pgsd2k3yPdwfAZOyD+hkfPUK5DKXx/T+Btwfwt0ufNHBfmv6wLWoFTGvXj9aL8imFlGIHZevB+HhoNdLyrgfDYd/R91c0qoDWq8oadoj/RDjpF9DP8eYwFvdxzwKJRZqMOXJKh7BEg/TrNuMuX/AcQnPGwJMAoq6eQYR8ttuwVivEaLhRICaYKDDNexWAQH4ruN1XU9nARG2W+jDd97/lsspjl16+vjqgw0eL6dDI4VYw0hjWQC8YhhfcRd0Q4ZJVeU4nWP5XC3dyJR4vAJPuYEmppaW/Ry7cInlJEvWjG8tdRCXaoRBFgkpX+RUJMC6X5M5xGqNFrLSrsyyJU7Scj3ADRmF1dM1zPOsZrCaZfKmGGaUbO2fyWo2rVjmMsOIU16atKMJPFEWaHEFuCI6RslIwW6U8GptwLpd4K3dyZe0+WjcR3vjq6h1rUdY4ZNucbhH/0hahIZwuRf0epSfjqKimw32WnvBXjDpw2uzsYMIk1yxKg3CYR2OW1n6dDBEw1arB3MkCBIaegXKKxIZhwUcAhDKw1Y/OjiI+lCYUT84OAj6zFQecgXtkVFnEylAOBgM4EbUHwyyBwezewaoRWYo8DhosNdH0f7+7BrhCURaNpoVnuWBgiTb6b17cC9P3kNuTXJBcZ7Te3pQHpZKn1APhvPe1x/Np9uuhLRSEYribCaVO5oH4YF8PKRZJDlMrtP3A8CGyYr60/cnbdaoWbQa4bT004xuarMG5X6TCgxvarMeyecM8g/2+gfD4Q3pCEco2BtBHae079MwroDTtr2YlfO9WIBEVgmSoBOWhEJt36OAu0kQ9e9hFokqm0qrvl4IZN8vFng+W1jffMtl11akU43mDm4sSorI1xcUBf1ECnNKWjYV0ZSCjKDywtnOyehksZRqbyxF6/c73idMFKQ9RxcKlj2hR59Evw6UKAPlC2kJfbIA+6SJ12FMYJ+MfsLUhZMItJ/fjRp+F4e1b9D1Vmlrq9TS9ai8tVV+dOnUqQdObS3HEqRzlfbZ+s74z8qdnfoO+mfxfeT+cgT3/+KpB7fg5mwsRMqfUL/3xHee0D54ImmzX4dylZglIg9gdZagO8p9bLNrrE4Hmb/N4ma7u0EkFd0memzzJI4uv3mjvqktSQvFxgMXQn717gcu2Mdekteyl9+8LaJstvcC4tBPwtkbTuIgfbKeK22aNr0Nbm5m7v1gZvOk8EdY4V988WIHsTOaPQLqKQIuNQFHQf/CZOVxFEbJl5AKBOtYfzzid8SI38HwFccjSrtHe9ksjCHyd53IF2MsgT6PPg84YoFpM+cASbyRoKIEruKQoB0ikY3FskB6IblBZbFwreUTmEi6gkoHZidCtZtgSALunG6z1gFcAo8ChiQUXgBSHTkEVaInK2mP01Sd812loe1oWtrQ9ee0hvIRT+fG/zMSTE67y+QcQXiO1yX+OUFbmkQ5/RMQkYXnBD3FvVkWRbG44KQkvZ7VBEtkFcWtB/UsSnNekE2pluundX0HOADHAG7gLZr2MU7XT7R4XrvPFPQXBI17q6Bq3HMCWhLIgcYvvJVX9NRbgHgbb5btpbyIFUkLmpqAjaLipoNcY4Yr/jX0jUAkJg1YjmqwBLVblC1YQ1XBdQBmFaCVSIetIcS4xX7xxaUqAt4x7Zt8dZnNuyjyC0Cb3eJvbNW6MiuximXBlBK7jeN+KO/siM052jAkXB8iazX5EqFeBfKroUGvD6uOjvq6gvot+NOV0UjRp/Laa/Ac4Pxuxa3A6mi1OhHQeiLR6loE4xNJy2aHiqBg6pTJUTGMbWA94NOLVkuoVVodDwHVP4ICgqvHhzwVnKPp+2FCo8hK3r6FrBp5e1RBwyh+5+EhkbCgAGDX3tz7pu1I3nECxiJjAxyB8rnwOSr3EWoTAVByrIaThDYVAfkTMd0oWi/6+cAtFt0A8tA0CKJJJFgtR0PZIBwKOjyIiuue1ysuFUmSfJyjwp9WHHLHyWEvW149OKAMjZHMHbJmS4zP1OnseRuUmXR1t9PuNP1OE2oOk8GLNrudIxxkqhpLdoC9idUL3dm923AVGKFOd9PBG0QgC8QYLpK51N10McFDRC5C2CcBw6vpC18omTkO4ccE3TVyHBYs3TO01e7j3e7jz5Ggu3B7lrO4Uuvhpx9utR5eFXTHDDiZswyn+GjzfMbyMR8UzaKt8Szp6nwG81kvqBRE4XgtYxpcfmV1c/2e9fV70JNL3Ubt7Z4gCx/JlV1rJe2kTbSc5APB+IVCjnf5Ns0IgrfTu2yPrSOpnGM5JH9T2t/2bKyzqRTiX0wvV8sriqyXuML6Pa+7Z500a6KIgeGgAhJqAq06xewyj9+gjfHnmxQfvYKLMFbwNnCQTUzGARkPRP9A5RxRi1A3gw3pCghgdcLOI+bC286ff9t3k+DCuefPnn3+3SQ4t/XU1tZT30SCZ1y7FOpBZeVyaWVle2XlHs0xVMyzbNk1sqrU6XQaviXyLMpxItZVU9FYJnkhBFryQgiyyQshWFHxRjnwhIVcaSUgL91eGRiCqaU1Q+3kHXiZ224j18w5vl0PfJrfhHZfgbki0hm9GNNuuxVCq0B9u5MIbpOpUIgT5+I+UKcbphE8MFHFbVJYsA3tOtE2uXHznkZTdd1hVjZNx9gL6BzaiydGcuhvLPhlL/DK/sKG7S6JtqfaVaJFEpcWDkxHXZIqtmYcu/j6i8d0wy5Ljqc66CCTkwuuacjJ8b2PKIYpHw3M/Lp+xvR9c3eXhGf09eOer6WwxAkCJ+GUtvoWIWWxAD78Xn49l1vP93zFklhRSgkz3oOsoz5TY9aJlHkiR25S4gHw2sGU3vAVEtYqFHbPxxNqBDdCSHiMLn0DunTF9DxzkfXMwPTYRTgZ/+85IXKdKFAM5ToJtymVySe35uEE9aCxME8qxWPSdnFD9uLDruEZk4sQnfAMA6iHDr2/ypxmzjLnmTuZHh0DzXUK59xkJMyfpqgmKB4FUFs6JubPw66LzyDXQPER/6Eqaqqii6q/6g1VUVdUTVS9Vf8VQ45IdSLZGNKQnh9GwBomH/QmM5t2LctNZ82sbWePnI3/dkQeGZFXTGMfCSL6DzglaMF3uq78FNRznWpkiEIG10IhFov7BE/4AvbbaywlpmSF7dJlF2gw+u6qFBiR95rcbV7HCKSaZbP8Yg4bUbCqOCvbq7a8FrRNKb/IszZ6In1XzQvYwSCV82p3WxIyjcoZ05OffJ+49ZqtWg0C8QOvF7PmTsUwETO3Xo0YjeqLAOz4wK/FiNoOuyGGDyBXDGwPYo7dv1Qe991cUC81R48/rpwU/lCNxMcfln/gY2i0Uy6PD1HgZJy86Yy/4+7b5cpz2jdmxNvvVJ5+dkoT0RfRLzH3MA8xTzDPMS8y38F8ANAGUeKtI4d0sJEIvdsT+NUlgxNaCNqDDtFooh1JjvFAjm8g497zw8nS2Z3QTaLFJAMDhhGMEz8eLXESzJPO5Nyfi6Nf8FbP+KIqpSVbIpyApIr+mVXPdNI1lq8EelPiyJoMa00LviTKSaEWVDm2mguuSSYZ9A/FS/N5HtYm+Ka4gHuNxO3CJBd2BfzILtG5kKBEcQgJ/sbfWfW1Zt41RYUXVNF0cw3NX93xZU1eP6nq1ZMuLDuwxGvkWS0O4ZQ1BPdkVVdPrpvWU/F8i+LDBzgVgA+f2hGwCAhzCyuiqOAohkMJLTlEf0TXKTIHATtTxEygMqxDs5NOi5g1kI6aImPPwfz81IQGRYpSVt5PFHLvV9BptaS+T/VJ3HwjSXvjGlHlvZ8E4y8roqpIiiA5hlhFv6Mo71dLPrl2WonvgOD736iUfRWeou/wS+p70jnbteyMHeh+fiq/eRl9gXHpCsKQqUREr2GXcDmeTway3zQQgTCwWgKxCCn2wB7KfmN6uflAczn9gn6ieSbKamo6WN/4pgyAtoWglmnuOIG90/R8M0QXf6Pu2bZX/0Imh+6ub7iKId6lvmOFy6653x14q17AF1zgZyhdZpk5mZTP5IDzqgE/uAyzP2K6zBZzhmEIYvVr7Wjyxf+AOJGYUElWP4r2WsB8R6NXj/SJwAr+WKZHDtGA4OnWII7T8HCfxOZli7/KNJg1qm+Pp2IN+y4O292wGuumCBtAFk8CCrsA9SiAaaIDzcooQdpeNIMgveza2YyMJZF385X1zQvbJfOgHqqNVkMN790pe0Vd5FIrlV4+36uspDhDlUwtY+1g4BV0jNGLJ+85duy+4zP53K8yAZUUE9kKnqAeKMMWonpcWlLCS4fT4lw8HgTH12F9S/mF4nJYDJeLBT8lOO47F+FvUhbE9Or1nuo7DX+bZI7gK2z7DccX0ouL/+ekGNNyjKActzN3Q+uQpqkRAUsVC3F7dD1SlHYLmKcuEUEkIIOQNShTZ9KcIVGdxv8wZXwoNBqaWb2EspcvZ08WskG5ura4uFYtB+O/MhqczYsqLyqGnQHWTeMaJUfLcBxiBfNZU2ARx2U0Z29ra+tQF1KpzusuHw+8E3eIooAR9JUo3tE5rwoZK6jwgoB5nLJM1RRULKT0QFP8ghmGZsFXtEBPCXgleOWV6Ti4hgYwgksQq8zsLU4jAKExiCCWQJDkuUT2TMgf6kPI6+p4qOq6ivqqjgZFl16C4IAkDhRdVxiqtKH2A7GsZImi4/PMa5lLzOvi/CbacuC/mqmbpCYz8cnXuBTjQapXnyZ2iWxhcJ2hBSThoWbZvp3Wjhx6WhoIDJxNDukgnX7O9h04rUCib1vZ67Cqo9F8ZcffBhfgcxluBJj7UHw4uCExk7Gz/vdoaUe5RILjSfpDpEm0ZC3+EtCN0hF6cRsdc/cy98d8qXV0DXRrFBWRvqkK/lzcJis5kIstRMThkYtviE8oC3Dc437PL/l9+B7GK8NBfKBkBpjwPSApyWFICQsajgdokCVwLkvDHbKE7ZD1aBobfwuRm1+jJCdLiU1Aw2iCBW6u6z+sfu2K241VCvQb1wMwaB/A5y3qMWwNSbn30d7fUe5XDg+zV+gfMzcfRolNDWBnGJ90EsTygW6UmhrVDO5WDVMZP6uYhnp3rx9RId4pmOHq+DeUdFpBa6oZjQ9OPXgKPvP2IsSWhtjbkXpYNVxzuxPbpmEPDa5Fg2ul1dUzq6sIyDaMvqB1OEpMxhKbDfRtgKhX6FxiGk6i8OzW1lhCtWsTdEwbNIrDuB0rVMHmT5lMtAMtCA14eRGv7VTD4zhtFx1NbGzWL9Y3G6LmFMb/QzpXcyv4E9B+Jd//KHAJ8MRT1cgTcadZtCu6k200suTr6EW3VKvLQtknAww+Ezz8x+h/EK1fN5HeAl1M7EO2UaxXpclNCgmbVIabcHaYGlRgYi9IFYRHokKUvufC3T1b05S8bsmOKWmeKuCMVlJ9N49QvaaJMse5Ws4GUq+noctLxYqb9pfrHOIlrr6SNhdKHMvLXDFsWOkFs1qK2mWvUijIImfpHAZ4Y2IuhQQ97aTLnKcVlBNphfV0gDKqKRlmRpJUtbyaSUkim8qs5ooLHitjlnXDO7bOMsxMXzECxFWFsc90owln1rYSRo6M/gqu4ckYiKaD4XDCgFF+pacYaLd/qMVd8Fcm6TiPCngUxNBDdLDnQdrkMyfnGhLrLbtC5psPE4hIzPoHrSsB6sH46rUOZ7wmKWuBacIsPU70OVQoUaWrF4YjDjuzczQpKD81zZtE0EglUNXUntXKgdBJERSr7qJ9hYLk8X9SiA7e+P4YM0doS8joZPEwssIPy2k9lCRidqr5+DvRIIa2B0f4y+lcGs3rEOk/mVOjvagf7cWKpGB8OBrN8T5lZgNijoCtCmE3OpSB9qnoipySo1tEKQt7iZghJLo+jEaaMn7Hm3hoVtSAZRVfNjwT0IuibTwoQEcsKjD0LqKPKg43/sSPSjIhNxxvquxH1LTpp1Ip3h7/S1T4PrgCTDebxuy75nEY0c9QCSkwhW7oRlPhEGI2Lh4bXdm4+OT9x47dj5iDYxc3hleOkZMnL27EfDXLoDFgz1Wmw5xktplzzAXmLoKOPaoogVkkEDRPBN3rKBFzA49HzeLaa6gGM6wm+EnHbRoIkBU++kUbNaOUV50sQimOrWP8VdEVfxnjP8Oup7/DAGjCskjVJE9Vc/eLtIt+KP2D6V+efn/A/lz6B230V3WWwJmMq+bKel104QX4l+FVXxXP6S8Zdk5VPUnTUIpNWSLtZwueege84aW571zfEz6mfoOczY4lbLG0DZgC7APLsoEdxBx/Xbf7uudJcHzpwtLShQdIkEml0Au9LNRslFyEYLyfXIXgO1MIdS6++CKvzPPQQ8CGZYbYPLeILBSTgErN3RjMAB8adgkf/SJ/aqmwoRpK0EzVVtp1BFh7/Zcu1teerKPAkJdOl7N8Iyezwma13ulcaH3gtfW119fn5m3lVXLZQu1al8xlSsdvzOZS74UXdh+BrG7OBK70IKN52pCDY+vVq4Lenjq1VNzQZW2uEqsoSFn80mngZ2flvz2a0pFfR78FfXMnc5H5ZrLSUeUCwWik3JR+ABV0CblI6lJt8gQwd6iomTAePiH1XWroFQe+12k3G1N8Rwu8jNzYaN2jGgtPoAnkCpEeVJv/SpRVCTCwkTZYRVUV1kjDoiAi2VnLK36KXauH95cKWSwWyk+t5DVdFRSFNWXTcPzU+K+XycJ9SknBQ1gWJUmRiLxZSxsp8i6k5SWJZWWlgHlN0bEti4Yo29iQDf4Zt1jAjeWF16TTWi57d2OhWDf8vJk2RU1CuiCzrO8ET8bI4EXexrqi8bgAr+NkKS/y8Ir4dbM1hPQTBh4TRl03AcyNmA2HlZ2qRKKQtK4LLdkvekRnMx4V3QM4/H7YbofLGVtR7MyAkNknHRKOogc2Lzu5x4LpuP499HuA0pcSucBUnRZLBKhdEZ/YLPqxgeMZFKLPOW17HeYrdjEeiI6YFkVjzR5/ryMJMi9aaddVV1Tbeddl9DnbXktjnIZ7B6KYxq5ordvta44NN7hu2hJ5WZDgxjm6OIhtX7qRVbPh29sn5iSxrQbDHFnfBBhlDbdrAfFEzHAI38ceG1997LEb7kF8G1t+G42uT25CLbiJTeSTwyQ/K7JIfkQ91aOmKOQ7zY/cR/TlGoqLMiSq7CltuEJl3Izt4nal7eO23+66FTfsuoMIZff2gmh8bW8P9XrNj0a93WiYHGfl3Kd2DaQmoVuzIrdLjAuAyx+h05fHo8uXX3wRRS++OF8vYnNDauW3ocxtPBoOye2foVV78cXxVXL35P4gtgWwI8igFu0NBlAUgpjn8SkP6//5yT0NOvWcmIslmpxONyIrB2FxiRiTMr01eiWWvU8vRERwQHM4L+sZ03XNjC6zKSnFcjyyrbKlOarKcXII8A1WEJIuiaqoKBBIHCfxyNLzcel+l5PTQe11tSAtcwDmZFZK1zohAAaJk2XuPQs5XUQSL6UEUbWWLFUUUpLMs6KeY+b3FxApzXGCme3KBNcLFNcjAEaNVoxOyXaCmOndjBUwcTI98XHFrRxHL2tOWh0/r9g2+nZiEQUcuqSnc7pK2M20qSmiwPNQFNWsmyoU5o/pCDq0lfHvahabVtGiYo9HZOjsyTKVoV4h3PKeqXmmY8LH00wRK6L024SeitN+0RgPOChih0w0jncTvSjBZ3S1A1pgT9DXzVASd+NNEtNNFJXplZiZ2ew8gXbcDF3+Mp+K4dmjMTz7TzFoe+nrAMTtxXG0HV96m0GNKfu5czW6uh6vnUPZOK0VI7X48563EdnAcnc+rRe/ipnTTYqMA/U7BjzwvWRVn4h2gYUltmEA7dq41enW4tr6sN633VildpqqJWEMzieRIRmtEXNBmob6MTm3KFvaymcCQFYPXYaA6nWOXfTXgslJZUW+HDhZ7uyjxy4iJibTsQgtCoptR89oduFPdV/vaRkdTnoQfZOgZ/QenEBSFATaos8WbXJhrn4yrLRrgNFuI/jM/sdXJZo2jU+b5fDvXZnvi9tgiUgIUf8fWpW4IQ56u7ukSvP1Kty6XjdXA99Y1VvXi3Q5Dif1+sjRysxquXFDvaBve7uzer3jSEX6R2s5uLFeQOppxebHoworLtmRdPv8eHSPjsOv3Vc39e1kHP6T/datqzep08asnnNjMLh15eZ6aXC0nrfspzv//+mnkFrI/YO7yVy+K3359D+2n966Ak9vz+tGVVqvM6SP5sD/TS0f/p0JlNuaFPrviqK+nsmRYkJweLTM/Vl94KDvkavwTQ5zmG5ELSfrsxVpAmgr7QQq0/WJJ9KvCPdQn0gEBhHZFQTs/gDO0MPjq8HhIdkzdJ2RgezKQUAPRH177cqVYX+ebyFtlbmRYwrn9X4zLumne71o8jnCHR3OXWDm94hhRidWjxE1zfXJDI7aaC8aX23t9waDHuCk0WjY2h8O52wlfx19nuzIRMTGhAzGyVZaujuhGAvbO/EOrm0YeGRnG6zFnSb6abVQvuvsome7fNrAAPEVwRZ5XledQOSB3xZct1sweMPJp5csQUYve7aTquzUC13XJdt9eDlnqzrPi46gmIIi6K7g2h5b2jElKTOzF/499AcUE9qw2vrddRb7tu8JBkv3sX6k8smqUflk/csPKEj+fz9Z/3NTrXxf5ROQ9ok6Wn5AKcrj+if/pyKlZjj+t9FvA75KA11h7JpVadfIrDIQAL12t9M00Bnk9wHBjtBTFTEjQc/uYXa44791EQ3GBxG6rSKyOBiPhn0p8z3+zlsXJ+/9CXQA8zvZQ0oKCJjdI8w80eqip85LCI/eWxzh3On35t+z9978e9EPn5ey4ucL7/m8iO57X/59PwVp0zk1s7WmVltk/PHJEfWvoiygnmx8AJJElFM0ZL7W8/7k+egwsUPv3/T4qz3vJ/mTIzo4PCRm+TS84fGkLd4JmNiAFi5BG1sxO0j2FhAGF7djARyONqk9xPAb26eDohds3Vaq5YNMEC4eD/KQDG29WmlilgsLK4vvvssK08eXfG8OcxP73ijG9RExFjscDK6h4bXeXr/HzMsJeGppTq17bbJBAx/2+9nhsEdD1O+TXb3XGXqY42euUJ4c4He35nb9ShcazweEj6M2DiuY8DgfOHmy3C8/Me4/AYc4joYQR/c/MYbjXvnECQieQP1JfGqL99FYZkLkXgImwnSK5qlQD2YbEa/HWnmAxcxGlNaX9l/XsOwHP/CAbTYe23dVU7Qi9E3d9kYtl4P1qBquv+be+25bDytwpiuGWdlod0lW/LQuRN4d750FnsKtQaZhF/OkLn7Kx1C5CqlleDAcDvZKx59Ezl7pyeOl6taTpfEIolvE2rhfevLE7f3SiSfR7ZXHT5T6EH183qZfjTWZM/IPND0kBnbAqBLBBg4JGoY+BwbWxYkQoYoOEmIOwfcvqJahGJpXMCuNUsNwdbGJ9ayuZ+eXBUXRXeD2bdmo2MWs5RuKIt0rBCqQ+ilWv5aMXzIbParNrBIZCLByRBsTEaaw1iDR5Bslx95h0O9H8LnOHB7AMA/6ox4Z4kE224suPULgZ6/V2o0ich7N2viGvREomW0TXUk8a8jWiMM+0G6YNjD69qiqprXfn7Ph/hcxL4lgduBaN+rCF31L546O8aMmDWHSRdFhazpPR/Pz1AbWaP4/Fr/Ofw8I7qYqoUR/fm0qv/0a+nNi4U/XP3d+G0H89V/lGtF4VZI42RUAte/3okE0aME36s8njAbZEcpCFAHbPOj3e63p3+DatdHBwX6U/O3GqXM6Irpyo1o83rYQVVeR5Zou5TROkZIPLHzv58vtYrFd1kzbjD+BZJrmAI1K7TPt0r5smjKKSDge0XgPbtm72mdmtnNXoG3uZy4zTzBPMU8TqSCwpDCHHYOsuLVuwpOvI+KBoSoQDwcdv0kn9wakwwwgUu4OoXs4hhk+NTskeLUauqS4rdRml7wL+3w0Gz9okDJYIcUv3rFSYgWWZ/mUgkUeiYhs+dwQZRXWUlW3dZno1JEp8KoIHDyHeJlXeMzLoRdxnJOuyOO/uEb/UImFl/Apll9Mp4speI6XOY4kpFhR5j8mcgKv6ByWDZ7VeJ5Np1iOg7U9xad53VRQTby3n9XCYAj/8+0j0l26K8xF5uuodg37Z4iBFSE5wDtSC8GYPGB/mxJAWCbjy5RC+ARguBMMBotEtQntMls/yObSIVRDFdGdh4flFc1ICRw2LFnFqqCoQiplZGFZqtimo8tY5g1Fw1hXFQXrWEs7nqbJWgXWvV4/0CQsn4+CD6WRCvVUDRWzgqDzgiBAPY3A2AzuVjXF4FOqKFiCiVOcLViGrCHE6lYwoTNXbk1nanStxDAN/HbUoAQg/taS40EfZnJACA2aIzTDbJbqbG9FaGZ+Qip/nxGPBv+h3C6V2mUFWHzTIQZSAYxqMth32qUPUYvqiNhIjqlFHSJqnSlNGQFV02FmrRAkAxO8O7WP7t6kjiUG6sTBAqGh6PRt15nXnIplF98XkhePhyQMddRqXd1toVEvCHqJCimAq6NJQaxTp34Q5vvgpjJs3FQG2yJSZ5pWmxkvECM/+ER+Fz5HCvJFkv/4qk7LQ/A7NGgQtDeAqLeywZEijUdxWU6bSdm+eGUwgA+UK6Y5vwj02SaWMd3YCAawMNGDJtvQbpH2F6bipA1htVbbqi2K/Gajsvz5I0nCRrO8/GN5R4fpV7qQ3sy3tm5b74aVm1LmcP5PMQ6lez6RuydapdMo1isR/yLraCY4Rs/lTfPfGavGCcMgh3d9RBS72MM/hHFXdNF35Q0fUOq/M83jptfx4RZj/NUfwi7cgz8ieriLGeYfTm9LqP2Po7ejPpHxTuwVfo0iyHVYh04z54m0jQoEu82YZwZWpK3Htrg4CmHFhPXSfRWsSYhzaeLjgerUQvS9kiTIkrNateoVPy06kp/Jfil3Incyp291ukHBsDSjUHY8y9DN51Z0PiU+lbUsy8gBzgxGffTv2RTnynY901zEXorLHy9++3C4/Jah75oWh9i05tg7y7KnBAuWEtTVjPbBwSgY9qaY4RfQPcxZ5nbmXqCWl+gukK5LhbhhLbYUBsRZIx5YyO49GNWAUagI1IUujwgl3fTxGtQfMCSQRbjQwNE6EqANKN7CG7Uo1sW00AdlS0n7lbSRyvCFbLeeyRknjVwmU83k/LXVtCJhA7MVVpDKa46EbcnVJPbuu1lJHf8FnxMF7vmirJvWG1euoI3AND/LpVzsWAVRdTI7O8vLO8HOzk4KnnbgMVNN27KbEgzFChzZeFB3PNNcQqIvv2ZZzc5kO1eO4I7ZvsUb7O9mOxXjmRh/kn2wxDqmNYzxTDxG3011NDK8L0rVUtBqYa2L7j/2TKt/LP9G5WJzQLTRvfDtszVrSNcsl1oHNMnO/Yl2iyxKr3rycqz7P3Z4uHOLGDXNhngU7N8UmckC9tCArhpMbE8fxob11JS+7RIlej+qd9JOlCn+01LmEA2+pxHabu0D37taDsPS6k9CreM16Kvoq0wGkFsRZmebOQ6YbZtJvA8JOCSKI6AGbBi7H+J9IJEh9qncKPE85MdGp10+hPEGc8NPXBApVmc5JD6InNOWqBInRON3jYatfjQcjT5t2rXEBVH9lBValVUT8ZOL8DzxMKSK1lJIvBHZZ7qmQtwRnYWLo71+9H7rVB1Ol08c92q2uWCuViw3uUSqZE3Xuq+FS2M7LdJ6sKpaBMFHKEGdeA6B3ur4atfQsAcYfdi7zgSICbLDLDlcnQY3JaBREIwH2SzqZ8nfYBCQv2gaBJBCLkQ0IAlTe5QW1VHBcLATtb/XmNgE1SaRQXGpCB9EfH9B7HPxgSgWybEYX40/UxpN+O7V2H9Tbc6WMCSepoghQpVujiTD7QyRe3Q7RL2CDj1zvE/sItCe6VWEFPf0U5hPSannO93nUxLLC089zbGACP/Nv9FfPiSWFST4G0HhnngaCyn28Y2Nx9mUgJ9+glMEWX3nO9Up//1nUJ4i0foR7TAAiAZVQhPvCWTbaIklXpIcYE6uUqvGFoTC8ONEc8Rx3/+ulKygL78orvn/xXPFbyFH3737z19QMM8idPLjHIul2Xy6RnmnLJXkQVZQe8iIbIci0h1i0+T5bwBacGz8o8e+9CM8p1ji+78Hp+UUj4ZrX1yDzx+8hzMNln/DG3jWMDlmprcibUp8pBCL5xvsM3HNnbnCinzsu8R1WDds+0csNT9HNooVXV3t95vN3d2g2QS0V/SuEiMbCHp7RDlTFJ97GQAEDEDC/vfm91onvPuNuUOX3jq/198ql4/Nv1yYe7cNrVaClX31VvU7WquwDaOnOzXAO1LHg4Np5a6tFVumQsSt+nwJRvsvzJUhu9N01rZjqeyRtl6lnmhuUdupT6nmvD+pkHqcetW2/zNZTAluvoJNB+sKruRd2RexxApuz1X8b71VSw1EMSO5haqgati2hGreEVhJlDKKc5fLp47Nt+N8uX06Sm5uw5Aywt1XHx3RAHjiW3ZZfWOwVt07Miom+CHWp2aYPPWGdpPvq6ltWIUg9PkTdGjI4z71bjWUjfEg0Sg+NL7WmkUjRHcc0fvQd8XweH9/NInM2U0RDwRE5mwBE2ABKxAbLSFA2f3+Z56rf/zj9efQQexfY9R6rv4jP1J/jpm3uxJjz4cuGVrdmk109Ras/+7hKHpv/V8+HUXja6NWHx2MgnvfW/9X15ledICy0Wxv/ltgnXCJhQKgpBpxbbaF2k1qggkF+t27t+U7BMltZspL0Zkz0c/euZYW5bOpaLVz51TWNzoq/4/fc+Q1bqIGuAu9SQYm8um2eFpLl61iY7nd/iUJBvlIk8evyNqHt0PDOM4uh6vbH9ZkcjMzlR9cozbYs9VsTgcevxxROQpdyNp8cjzaDeNhtheMxlchoC7KhhOWZrx/7doIWEVgbAOqEpjKGr9EfXW0EwV6CbnYBbK/jtq9bKWy9sBapZId2F7FVNHLEcY8/URXDlK8qesvMUd9oLiJZ5H2xLmYK8Q29oOol615axvBci1YzrY3/GaEBuPBcCQiRGzjpZHKIowRO6Fpv0/bnOiZAXGRJk42GtamGw4npsfxcuFDF8T8RVXwYYwLc9fDVvOAF7NYga+KfUPP6IaPVwOgKuXVK7kG6zgQdRzURC9L3M6OgCfhA1aWpabyB2zWeoCTtOE+NTAfrODNmr+gf5ycfVxf8Gubc3Nusp+e+kCxcMUmIrCEC/a7tQBd3R+PdmOTleFwNBigw/FoHwE22AOIEAT9wax/rqFDsjrajQ4dCZOFBLsJY0NOWp0DRBRKd7XbDds+5KNqo9Vq2I6OPhmxpjL+xUa7fVdL+v7oT8orcJP0W3TQsdPy2gTXIjqSp15FY5vXqbdRN0zSUeC6tR7BG+6+V9wnR+haIEaoX7fXe72iS82X+nD0iru7RW9A/JDO2iZLLVepZcS85TZ1vRdvHid7GMh+nInRg9+ZGH3U2nPmHhEdrFYtFgah4SYVJnxKMWkE3a2YY6AC42sDArnLfgToQ1Q0M30trco8x6KUIGt2ThfZg6yp/AkamuRheHLTJA+Td30eZRPE/obEBGQ0VGVL1VXNkLWspsH7/0Qxs8yN9it5gq9vmrvAv9jTOk0MWax5Q5aNJJHET6Lv1tNpffyNEKLvGA8PYhTXS+xYYpvjcqAJsRFLuhyoGB0mD+jk4fEe5YFI3ywXi29U1UKmamfoXlHlIAqyUA9LVgNtNhYIP019aR2VU2DhFsKLJPH3bC3j2EJ7cWm51ky72tZyuPl/pbWMm8btxcWVatN2tJOQ9jOVjMnzfOOie9KpNlc333R2Nbw5aUoHr1GOq0g9wZ6IuXqHQlLil3KCLaKbIvgm6xrEvP3EsWMn/pYEcmyV/a0mtb3+1rhrfyVOPD3ZtX9scbh4jAZX5+2048/LyViKzWemcghSXonRAK3HfnbKk96HFbfjE7EDkT0kX7oLBBLpytoy3toKoh7wAoP4m+2Nh4P9/XgBRmhfNqgnKOIM6pDu3tijugB9ui6lKDerQ97OdN1oQh+ukN2tRJND1gu+WwPs6TZCtwuMHZSBOGMCxMHDlIJruBuWUNtAUXRwcO1g/PPN3mgA4SAMd0Kylg6Je48BAmwRhOGl5g4gkBHx+bHTHAwGcEsvbGrhdQZSgMEJw72wCbfuNBlmTlYnQPs4VLtE9EhUywYMZjuFY4UZ0ZeF3YPB2vnwjs+t3RGeX3shPL88WPub82uDtTvQaEDT4CokXmdCmkqun791HvFbqRTHjXiaU60SZ/xQ/Q54+PAOchh/jh5QH95Wh1zopTpNe4WGNH1ajy8AhiO7Y1p0X+YaIltTqf/kif57M1n1yJ4JHFtD0UXan3Bw3UkEfZ+y4A/9BSVv6IJjFKywqGfyvl5sWkXTEXTjMMgG8PkuzdHgs6Hbmmbr6AXbcezl4+2HdMWUSxnJMKRMSbIU/aH28TVyf9CUyY36kkwe02bryK9Su3rCC0fUPRu1BNz0u2sTWR1x/NAOm+gzP/88PruweZ5FpRPVldpWcEez+7rjx1/XPXlpg2VRc3dhg0XnN6tbdVQ8HuSpi4bo0ZO6fSPunOCYmyihn3jbnXjdnUcwPzdE/f2IBEcx6FXicIy6KUtoxK+gnwZezqO+h7aoTRPphk3Cy1UpcUqi/iya6naASpQQ2f0XwhG6Yh016XaCTY+wDtUw3vjyeU5R9WqgiIVq4bmU5BU8GWcL2T/kZIhKOFPIpsv6xrObRpkvheUP5ay8Vs1xOXVpVZY/v7qkQryqF6x8ipPRe6wl3Swu1TKZRb2ezdYLjmNMIuOrz60fP77+nJZOf6HZeVLU1ccW1hFaX3hM1cUnuk2OQ9P++1P0acK5Evam2wwnGwW6jWSfTgmh/1h/pO7p2W/6DuyKJYBS2a2ve+ZMLjACAb2u/lDdrQQ//M0Yl7CHxw1UzihZo4pn42OQ6BVnohIL7Qx24IOG3/7t44Nv+zbUm9z7m+iniFSqETt0IO7EBRxvUiDGIIg5vbESZHmvcTK7Ydsb2ZMNj49WNu4Klhc31h/Mr7GuabrsWv7rHl9cno6ZrwB+JLLcJnOK2WFi6+ZmTUcYcJxHBFFF1EWdFo+hwl0dxTYmJaBJmJiVLyPcKRHXA9Q7jgEx9LOiL28vLd35YpU3iivLIrIyEjovjr9S3Siu35nl3iyzsKrLP+hlsmWv8swpJ1A948xb65zGcdo39JdOoR/BeNtAd52RHbRQWBYzFpLQHVLmv1Tya+cyubuPSzkZ462ymc2UoxMBi9BWJDg8l5b6p2bt+jGYd4T3qlHLeWgwuljVKvGGd0IuCAlJPNpQvczLGmvYx9Yck9WIxen4kIRH01AAYb9TDguFsNKO+eOjZ3M8xRXoV5vKJtaZNvFEVqPMZsw9UP0rifsRkVq2a7hG3PzRG1LUIiKm1f2IiKei+uOVKKilmkHA5s08e3U3G/2vrS3zkUfWaNine5kHgGL3Bg89NLhvZ+e+QR85J7dKlx55Zetk6ZFLTOKvO1m74vWK9PhrmDuYXWgnQH54G51JdShhYl0yX1Ob3UQrhsNqst2ZjLRN4PFZYltb86catEpswEKEwsPrPE5xKUBMlibqIo8QD7yGrH4BVq2HambOEARRti090DXNteH8Cl1nqR050KT3pDAvi5LiG4KsYl6y4Iy7LYA1OrvumTm9TFwtAZCEA8eX9ZyVy2ZbQbBLQ2amoxgm9Tye1JPWkZ+rI3ZcH+rI/z3rF9dtfI0XWS7FskJaEzWoHM8Cw6IibvBdNSOvAypU0lA1Q42rdo2oqMbDPmp9IytysiTCYCfV4mSoFlSu3/d8K9DLQOFT8FIWsTypk9mmcsoomPn1A6iYBpyTgXokBr/JIgejBLgE14/a6LDfG/X7vYNe0OvvEcVln353s70DGBxTO/b/hr4wkXGiCTLmyUwn9NqfuBhFfbJl84FT4//e8JZfe5e3dPHXGq9d9u66uOShZ5eoseJ97sW73KWLd3qfdV2SfufFGSaH8hIZMSkzQ9iFCX1LAZ8KIxwwETq82rp6taUFO/0+YvqxGQbqUysMgqC1S/B3JX4fC2+E9+nJ+1y6grWJNV0jCv2KW8E1n2V68RvGf3Hl0gF5ySNXLqGA5HH1atT/KOTDTMpHfRIpVL5WINgI8G3UBva15jegrGTrrU81pyG8+mAzbYenzq/dhj4MXXk4gjwGdOPzoGY7ndtPPPRpwI6IOYyg3Ye3fD8MpG4NqI8LQKVRARIPhbdJa7SJkhZ9aPPibasXtkLbGr8L3gNvi3q7WZLBQw+duL3j2LcdEhwYXWd6B4dztlCERy1TlF4ku/aoUr4bIwoyeKvE+W3b3wZOf6e9eeLEZnvn1NPlc97ZxuLtS0u3LzbOumv7xypvQIfl4jMvPVMsd9fDQm3p9tfevlQtNltXFpeJK/fpfCIyf6IVyUOei8TrHBAHq0IaCapjQ9tFrSaBFt2IjCkSa0z4A79dpdCn5hL3iK1oPAImda/4K9lRH3irQTARnN+xVHV2nMryoIeYXg+qi6gXNeDUe3DDjw0GWcJSLRf7kQrQVR0cobVE4lakPgcJ919z426MqA3MdDt8mwCfLl+JI4BAI+LXNEK98egwLgM/Pgx61Ifs+BrxbHatFaEgGl27thdzgsPg6uHh/iA7OpzDXfP6EIZwGpXEFw/5lQMojEX3mcM3QFfHwAn/E806JH4ziRM/9OPjd6M9V01bX0e3NDPEX0WrNcfbphLvWUSSVpt6cwmPOiKj9qqx7ephq0VMChzTlM88e/r0s+8gwZmZndZg2I/1vv3kGgTjvZm117wNbqyBu8Ff14RoUGXYnFnsxWR/w7xJbLIt4vfpuJ3ZJSvQW1Q6SqSDber6DvD6vI2yPZ9lqtKuHLaojVQwZ3Fc26pWty6Q4H2EZIyoMdLw2MU3kKsQoFZ16/aT1erJ27eq40E0zf/aLH9Ec3ZpKV69SVNkngZfqwC/g/ooujH/8dVZ/sRajWSfmvYr6dUGxF8917myIeaWfem3dnfhgw5v3ZUoS662ZjxCbLtvUf8dj8/R/+5NrFJYrVVrsEoKxLGHAyslcTOyOfmdmtOIuO2lflH82GqKTHEiqSJiXmo/hc4vnFyAT/30w6fhk48R0rfxSsOu5l2OaIpYyc3X7EaxYdf0nJqk6HrNafyHSrXzb6OGkU4bS2s0gpgCedtCYYW87fQ5GFe+bm6wqqfpVbtRpm+VyCt4NWfU7Dp5K+SDWfTDD0SNSiW9mv232dU0jczJjq7QmevNpAczjokH6h/GprkxTOwRFxeJuwv0CIEsPeKRs2Wq6BXVRAe6MvGqoejR6KB/kCW/SzHf9vN+munOPbdGdvCliB6bWAYOBsPBYH9vbx8iRCUOqOMQBYAhYIkcZPeYmdyX+KWlnmuJ/qJHXENf37t6de/rmek974cxVmY249nr0p9ioro+6uuMCG/XETVmhelFfylmOblEZJGICc+FmgxcsmQofcWQgDeW9PBccygqWFcjVcOKiA6b50K35GUcMafEv8Ch5EQn45VcuHP8rOdppqppqjkb95+lbaASayxS7yk18yk8aAEj4cceL+gPPuz0ek07lwuD4IO7u5axZJg9362UTkUo/45cMwefH14ef/l7CmkTmVbpe35soxAIQmaCdY/qYTaZDtVNM93Eo8pEJ2O/qj7m1U/meefTt1TT3DoaxGx1/CTaT1xURf1JZO+mlCkt/gVKi4Gvb3TnPA9M3WP4XUCxuN0FjrRXNOxmu5E2i7GQ7dQDb//Xg8FzK5/4kFhMB81mkC6Kr4sla99SvdZqRYetxs/M7VUgFhdMvHFusr948ttdbeqhcSrkW7qw5JgFPg8sLa4aeb5gOpBUb7XuaMEiQKLVYpbznZVsdsXxuWyxWofEc9Gdrdads30EQ+rDr0G1nFN9w43aTuAvE5cEAqZaICKvHgQAUANqpMRA+HxLkTW/6CtqnQALFOwunzq1vGvKB+QWCK6c4GzZ8H1DTade3CWqvKP7P25c6Y7smD+yTX5G+I/s/zhIEiEgr535+OGovFCj2gmP0n1ikU2czPlRiKkKMpwL8WZn4lDMm3YxivbGV0e9Xn+ttLbWmwahlWFZJRIExGZMIpRWFDTaGwMHtNfTokALslor0LKBFmUh7GctqZzPFVUjd1qxFPgc6QdSznBWMpsaa0FXJP7gNgnl77rEHwmV/06KFAjcmyVeTOmOUxLNnmoLsmsZzrQc4799Nyc4rPIQ6xQcrOsPmlspXpALjnskb5lqLEnedOcNMMdk8w3NBFZPokXr9bIA1+LXjg+jVra3u9vLEl/47JE6TGswKeG0KDf2i3iTLUvyLNmoQ/oGDu1KgY3oL46F8SnlCumrgyEU62DYv870gXL3h0Qem+RFbNN7wMP1qIQQeNxsNjtlUxPsOilveqJ7nLU8LP0YuLtoHU0NnBIUOalTdBVeF5BsYgrzTb3ecNbk1/b3iVH2bgLKWq0ezdg8UvfY/3SGovo6tRA+xrQSnjkpS8IDT8ye8T8gTgt6hVjutIbQd7cKp+XtxYY5weRADXeyyaFFTXQSu6pb9dut+izZm3PLzor3ydOd7jd1VkRzh0+CESZ9RNH9pH9u9L5JdIOTfsmaco+6pZHN3WiuQ3bJEkkCYxDbm8Vj/0voT6Hl6a9/IM8lkAuo3zLy49W4G1InmWvUp8A2S382rDbdZY4SQXgsjqT7VgSq+YVFAn1BRGbJ4QSW437sBBZ6AkZBCUmu5Boidr6S4kTRWWmWTiJD9bBWMSpGSVMLpXIFi5Ysp0RdMLHBC5hV0dPFUn6zIrDoZXiIexkhUbJP5DPSd7MpjhX0WvRTnB60/FxUNlROWlp4rlD8NJvCtptRZAfuwHrG9SWNme1Lmf0mBvm9CvhaEMT2g/R72LrSQkyrNWunQeLzIHmmTdS709+nSL4D4vRv2Jo8wzIzPzhobkSwzJiZfNGAWJb19nu9adlumc9c2QiLPslnQncIT0E8m8576XXILqLYtjX5TbPpKkY3FRCNRBTzlXt3diMiY6ToIOrcBVMW1jbyczzBfqL1LbknHpTbMTBoyw+eIHeSBU425n1uD+O9hnZEERWgS7qnpj/dX4j6rcmuw6ntOrV+I7tUYocOwbT96Lp4grlAfa6R4daKf2SAuAQC6A/zihhUT2BCvGOCyoY9wrbEG4zCr8GqIsNSeJ7jMId5T/dFQ7WKjmmnTCWPNVUUZcOVVTFQjGw671mSIknp5pw37GOvPXbstU+QAAWcwkqSxPIoxaZLoizW65zlO4Gh6CleFDOqLEtq3lCMapiy5HyQwemfnXN2/a7kPRBMeCUYO4Q3aMLMJL5aGJj3tZkfGFzp6ogKSbdTAI1ifY5PpYaJNDHWeJxh6fJNnUOF2wgnu6uaLGNvVLMLiizbBWH8v38HGBcO8RiqiPkUYWJMDav4eSOjlyt6RlczYtEtitbXFxYXTzgStE3tm4NGAB90MB5VN3Ie51pfxqpgpiSR5wVJ4kSZ/MzY9xe0rEH8S2iFlIBSKcSxiycXbcPSA2z7j6RzuUa8Hk1kSteI1S+iFJxsUq3RbXyJQx0iYuzv0k9yRMzcCTlO5UUx9o5R9x3MffHMOOKfeIJr7NhbzYQvmf9hS/ITJlMWdRLBAEMAoTVRZMixW3fZiJItBUW3l02/Jp3tTawWg/FwP3F6Hx8+1HxHkzt5z0mY9onrMOPhZJPBwQiaOJ3NpqGtIVr88eEwwe5yfHAdxyatha5fT2jLg8SieWKtMTHhIG3390qbbGSeWX5Mtti4aEQZKrqrORjM4tlBMIsX3SNX3OJBvL6QIIpeJe4V58+KM19oL6GXKJ3E8Q+tEh0EeunRR+uPXmo8+mjj0qPoUXICMXKePPN+9H76zOwRH3Ue7V56tPMo/SDmUvfR5KQ7R6M4uks0rMH9qYqNtOhj6dCJUC8C8vSXP59NnNjE938efYZ6xmTs2Mx+YqvRrBIv+kVWmFjbC24tNvAgW5boXeQH3cjJnNDq91XRV2Tdz3sFP68s7VUMO7+ZZg0j1a6kzSXPGZTy6yvrGf/ia/RaaSGzoivloFbIWLvvi80Q0Gc4uRDU7bSbzmxkPC5dWm7Ki2fl7IWdS7ed7iw2TG6znc+kjdA2pEztKzETlrTXf0Z/NLMC1xFg/DUU/8YsoZ9Ev0jdkNFfJ9OpR0JiSknEfcLcD0iiK+RHS69kzuxkORJ7h3XM00TPe4cIK/s7sO7hd5DfRLI075h1xV8pplKSIAJUkDhhA/1s9ty5zKcyluFxmXPnsi9ZoiKI/hn/JWy4+CX6hvQxT00Lsmh9yttZQYjYinnEGT7LTuTB8Z52smO+CphxkzkJa2XicYvs3bYwHcg1ss3D9WPbPfpzR4m7kgiWVeLHInnkFQdWSjwYod4fO6YTrJnOM3mnXrcLj0fArvbGh1f671UURTeGARBFFBHndZ8x3GzfMdN2oZ93fEDB/eCwf9DSfWNeB6TQX8Ob+FaF9bwzdQrTnZDiKU2mJk8b9Ffrmq1pavemyBNoZ5Xyewcxth7Eh2/U72k2GqFurpbfnphjxheGiVuX43fEKv07/igmJ4uEaOn6rrbgWLv3aGZ5NRunKEcOE/nRj9P1qAR88gnqxW4zBoFk6BNOvTZ/LhRRl6ZT/8Tk1xNasfcywrV1af0hsglnpD3Qhm/qkpL2TaB096UV2TD9tCKxWvbXMpaZNn0I/rzqmemaZ1oXsyeaTbMVbBrLzRNoMZ8NPNMuZHKuadummw/yacu1wiDIZ/J2LpfN2fn7cu28HbRzmdWz+YrjVPJnV2e6qK8CN7ZKf5c5bMZChhLC5PfBsDBxtEx6hPiy9r1EDNHthHzYjB0flBBqCxKSexoPy9/eWz3V1mEJ9PDJJ+RA1OzierH0fEkgysazpiYI4vjTvMKyWk9RZR71BVmT79EQq/IvvbVYXCs5mhjI5x4RfQANSlp137oIC7LmnU1rqiF8mVdEXu3JrMTP6ZmJVQpxCk3kMV7shjkhUXQPqQDknSxe1NOxD3BJ2IjlKVNVDeI7C82wkBFSKS7lS8VK1C1kvUzN8K1UpqyoYglLiCtqLMZSOR1uV5fvRCPPOb9QaJssp6T5VP6+fLFSXFkuVVnHlI9V7TTWraxjvhhusmilLgYZzVi6cP9tzdk+n2sJxiW/17wxQ8eEV2pQ59aT7Q7dNjD8SZzKYhKGEIDHgBiTjkbou4e8IJpuobCQZweKnCkUlgrSXw/39sjG5thBd1RAgvC2VGGxkEm/lH+Eh0jB/QQW9ycOCvAN5crRPZvNoyXr3rCGElOjG4qztxc7ByXBww8+COdzpWjNfqPgSivqTX0rXP9bsqij65AzkX516CrY7ayxbeJklRrgEacblPoSQweINRtUMo5jt/BklhGXb5fvXbtX4GxX+aenT2Zydo4XO7nC+XvWz36b7Av02vhXVQmXFL+olp7M5opa8b+it5MLvs29DT9xbFM3RJUXtkvwVHThqzIn3Lt+kfNrWjmfeT0846slLGrOl5O18XfR7yZ+S4pIZ9fYbdZLzRQqLnplMZ9/7Zve9FoaXtjb24XWeGVhkgDh+CdJ2u7MB8KVxB5lakYV/+5gC7iCfRKZYcVYj3PDvQPqzqRHQvrz60k5D9BvQo9ukV9Bi61nyc+UEY0zZZfohshOy16DOnhxnCyMUJnkPuIDF118RobZyeoax4qOya2dW/OfwWmzVn3k4ddkMlUSF5/JWNaxc2czJZwVBMMRKsqHn5EDJ5XK6LLJif9fZVce3MZ13vft9fbGsVgssABxElyKBEGRi0MSKZKSTOowoYOU4viWFQW04qN2bcty3ThIrXQSJemRNrXJmcTNjNI2mTRNQ9e5HWfGaTIxWTfH1E3SNskfISepp+00bqedNlDf9xYAQcpuEhDcA8Du2337ju/4fb8vFMyMlg6Rw/QI4rK2feiWm7MXpGCIHHfwwO5QKJa5rYAjmiCV3w6X7ev/LVInJrn6GkVF5wHLRBE4E4gmUhCxnfedHpyYJ0IrGaHIx76wCzZ3PyFQgYahT1DAaWNBUtFg3BFZQ74cEQKnJZV9uIElXMPKU1oE/YFisMNIwQsKvoto22z4QVFhizza/wBPtHG8T8M8i5qacu38haQiTYZknNd1vfVtU1X+XlYKvIJ5vh+LX7R/KEoC0JxvPYcl8sx8zz/opmAuGOvopLjDlowaw1lH17PDRAFtm6hRI1+TPhw0ZfxNqZYnSmfIl7d79M5NonWCN8sPD3cxEOpOoTZqlA58oCn6/SSKfiM3NpaT5URr4zWulItls7uz4oIcMAVWilt4UUMbu2fH2ETrZ6hZcN+XG83liA60KNsJHoUMaVHs9Uv740UnCo0pgCeR/AOgpkbDxzo6Bxju/TGMy9NO4kcyes2ms7JSr9dpMAT4bzxE1zevkVfZcTbidaceX1taMtSmZjSblMK9tbnaqC/He3yaOvUiwUzWZgH2XMgf5ULxHqllF1t+go4K3qYFQMC97Qv9jGYoopTFAVaXjegsGw6usudOnDjH1g11BcwDEjtYHWQl1UAK2VFZ0HJV4/6Q7rp66Ey9fvpKOn3ldH2dkuaphgvmftdQmS285ia1NfYD43KHZRyC+4EBIUVqCFJ11cZyogCW3zEy2Lr06sto1Wk1nNxEPhGLJfITuda652RGEDOScepOmYhkmyjukc8VhfzG84byI4teZiQ/5N1r5zwv18uhCFbeuK9jYhpBWxE8oj/kBfIBmeSJlrm+1GjWyWNprdf7kgkPrSw1+/qcBmrMe+tgeNlT8p6dh6W3dV/PUZbfObCiFWiyKKKm1+xu4B45f87COUxT10W9LrXVFBK64p/o5lw/jzHwcUd9wnwiqaP1hCmFxMnJyCEzEY4YcoA/LLLOwao+4OiSQD2tmtFaD8fDZjy0OlgYyvM8i1E6m0sJAU0PR2Jh1vx5xGGJHHNXUA+RsyhSWLjfNRIFQ9Jy4CLOaWI0Arz6kfDhBG/zEstaPG8JUtGMmWY83KujQ+5lsPCAZcdHtFl536yy3lxebg7t3z/UbFImX6LlLjXqk2cmvV2HFw/vYnb6n/v+P/8zGLvfwO/81NobuZzXy+UeW0KFPA1S+fmyWxvvAMZhMBjIV3q8WFY7brxa8yi8nfQatBJ3pXu1v+KDXKJQqAyIz1p5O1k8UEzadnJyqK+kXZIGY+kSO7KatOPWF7iBSqGQUAKfC98rufFMsZghx18yRp3hyaRtpUYyqeJWG/wa6asxmuHPTyFGkTlE4vTAfGMRlRJ3A+meOLGndtvZX7ulfmNx5L0njr79qDtb63tPNJMZyWS8++64rVKrF4tH528+8vjherI6W0gXM5liuvusPoEe83OYUrLod3/ySP+930KXyOqebzLXj2FbGBLgiWmz4gCEXKDpYdvoQWCMoTTe15jGNWZpjYzpS8sNSHBCptzmChG7INLodfiizB0I4I1l1CBTOqB+nS2gb3dM/wJ6kWJ9aLYm38QHiTMByQOeY2qUJlM0blfVOKrllYQsa6GgpIdVFIo7CU1WHVEcvDWbMM3qkaOyUzlWLh9DH+x/yy4JS5om6URNCLKqqcmBgiRYejZx9EjVNJ93biyXb+yx/W6ir9I4yAWwkUNu0xJHZDKDx5ZIx5ApDhi9uS5lJx6APMIAWqhN8bVKlQaKGxzpfyUOPSOLTloWiZ6i2rZqhUMa6a4Xb+AUJ5MLu244l3HODJQHyPsHnV+aejSmm+Gg3v1l1nRdM5tx0L1GOiwaOKzJrCCw5PbDCpKUeTHgWAFOkriA5TzuwMkGFjq/lDhB4CQtGJE7vzTArG5YTi9XrkKxbrgCSFWYNbisH4JH7pj08339uwvCrYubyPFazX+fGz6OvMY80sPF2ePC8damt+v3kKO5nXb4FdLGcsBlQEc6MsS7PszDbjO9g4kSR4HuHT1EU61yD9gHR0YOxB7gIL/CAftBjnswSnMtZGR5wiEbzoQs05+SjTD5aJtcCFwo7exynk+Q20n70k5sBUgSxGAciiT7+vOlbNWJSIoSMIimaYQ0Q5RmZjImWud5BcwTT9x2aDgq84KkaEEzGk9lC7tKXrwnhsYvc88vUyqRCqgKWaGfUYIGCuT+RRfT5AXyx+fdvkG1KUdDTjgS/IUXuC6Sx2wn85Ks6Opqvr8vGQnrPXMhpihBpkblkZBne2be9tN9h1bK5aWlZPWO6gLZWFkrt9YgnL28Vka0X3T0uKXtfA01wETCyEHGCpgW3LZ61ERMa9UjR5NRYoW81tbiK/S11Cay6fhY1tt4GDK/dOIufTSMSXOX45U10K5g8fyK02jsCHek1L0bzW6//TZ6nNosimC9A32Y2ifG/HwC2/c5PytVbsDFKbRqpbAWDMZNnPoLsqkHgk4Y99UOP2LnzHOXzpk5+xH0OMRtc6yg0QQJ3c3WRxZvUPfMze1Rb1hktuLt6j5eBmVtL+si5xrTnEdME9UhC/MWD6hG7t0hsuQQ1Yl7GdMKNmlNRFrAFGTZJZ0AUwUuIdut1mxjO1X+qwNx9awxhtSzanwgPfaUDzD8vL/3T+0ve0AF/+h/c9L/Ztn3C0X8vWn/O6Y37kZjksxuyK+6bQY3aZwJzrngqoGomFzeDz2hjkH4KIV8hbaEqDGRqliI2XKrDLIav+uOosYLwvjSqBhFiOV1sfS2iqCznL7vsbLAs7uPHPIkncfSxNHFKlE3VHLnW96U73I8a6u6IsgooDnqqMjxCS3IYsGQw4E0r1eSokB2gwYXEsUsFxSDvXGRMmVqI0o2rtmQMzqNIHqq5pLxor58oW9lpe/Ccn3y0VPRS5eipx5FG8vmox+bn//Yo+bZS4FbL09OXr41sM2fIZP1652j50hme/mB68u/ruzryu2WuYQ2YPyDgGmfW8Emcw8djsA5RpPb+sGzzY1YOh27CZHZABuYTAlvJvvo6gF0UHDjenxAOHhQTqSseNxKJeSDB4UB8qHbnZ8pxjgDyHaTUpO0GUq2rfYjN0vUPNuPOvDHwAimnWzHBnYCpYCzY1FvER2n2WjqWoDHmO8bTfWsEjpiVNXMZMydS8h/nvnvZnOVlRVRDhCVxrK6a8Uga5PtznPALAXcqFkM+b/JI5qGCof8VPX19Y8Ui1L/mG2P9RNBdn39PGxJwyUp2+ufBD4q0GhrgocLOD8NilbErnkBMhdMsW7FRcm/bG14q8h55tjMC+dXB35wZOq5wfHKYhEJiFknL6f0/mK9fvzAxdJv9wfM+tLeOuePCazexrF3cQaFHuuKANw4vkmb/kP8LLr7jjuKd97ZepHVWk8/SV/oSOu7yP3M7aXbyfu30EutCvr4uSz5Q3e3nn6jcswt6GeFI+Vw5NxmT1lXaTF/y2ovwsmvXqYv9IxfSOuP/FJaT6O7aUlMx6epd/Py5WmkYq3i2jXLBVBDIV+hhAi4za1vV/wF1/XsYPtqNns1k3nx56+hVy+LzpMJ8cknw4EnY9LlPzx52l08OXhywV04iVAGZ7OZuey/wFUcdHCiVEpgB909GQ5MTMSk4dbayUV38ZR7cmFw4WR3Lnuduu5UNOC423Vda/8DjyI6d6z/GHm3PuxX9lXyvnyZ3PhL/3PsWO7YsavtuoZXevONyzE7FU1Kg7ouANEfYG5BCidlfdwv5uOklM/RUuh5XyL1fSstp/VZeqOkFCRups91sAedcvJg9doiEoY7cfOu75vP+rYKTARy9NcnT5HacxdOu6dPts6yWkbLjpQyRqvyTObLz2c/hF76PlTvqQH4waknoMir8GzbD3grN19n/n69SGgPN3oS2aL+awyR/HdSFvgggGYvNo6HvGzIs5DbRfUjZ/Uas4rm/UBntA57DR+gD4cp7fH0Web1eCwpd+UWw0+W4pp6GX86fJUwU6O11eYyIOfja2hto0FEmaVVb7WBVsHj3IToIZrdse60Xz0cnB32P1obvuW4G2sP8F4/dsTyGpThxnKaQP6BRgF061B87+YmWqW5QppNuvIcL16OM1v8optML6YXemqe8lRQ+1LFz1JJlHJvjb4o5eZa69m4nx+XeUPeLdQmL+itE6DWo2FINLPG0vIKWllvEJHLN29Tsl/for2lQ1Dew1rOHSsh6kZspzkeo7ZICwL9DES6mfd5Dqsyx9m2VlcNjxcl/NOqdFzkDaRC3kw+oipzVtBQg1dlLG9ID6uSsrzRLueb6G8oVzdEooylECWtAm92hPJVg+uPaC9EciKPE831lhN3egpq/QcA+7olWW863VvSFiZjkwmSeyozpyh+HVcofxAu1KJTRCusQQZ2opzSFOxpSHdadW24JAOBQdknyjajnp2tULtQxcO2P0f72WLsqECd8nYbjcAyTmQgELac1hOO6RrhiIO4vKBpX9FiQp5Xta+IghL69AsS5vJcAL8giWyeVURuVQ+hFhDIWAl8VNFNfV03LaG1oeHoN1RpHWvo9qMIEwUSH3nPESk86OKjrR+fJeecI+c+q8f4OVZdn+MMfBfGHFlLZwXc+rpSnycC4fFIgguqDd009REpFGlI6pExSVUZzccksAy1rk0SufAYqaMLzGPMO5h3Me+HDMOICNrbasuuQqhXClXdqJ0nX9ljUbBY1+xodZQdENMsBnbHUVJrmIi3JXB7TIP67Vo2iDKAcNlWlX5iajKliBGPTOJubXwggPJVXIaDa9TBDZioaSC8qgG1/vX1+5+Bwol6H/n3ckEkqkTU5Fk9wiocy8WiPMdLyKU7feHSWayjsPZgVRM4PlQYQsGArpypCImtur8vMXlm8k8LLKcYkZzKIz4mChGpGEveU+REpRS3kryOLib6AgENXTyCw4MD+OiVw7CWjv5wsJ7sP0n+P6KlWVEPBlUcSl7gkISwjESWHxq/wGEkG3g6bDRN7+whIyDbpczxBVbkpZvNkDV/IxkJj1tunwsgrRkdiWhw8jw5Hkn7zPAldWQ6KAUi2T3OkHZKE/jbT53osdP7/D1EDiUaf0XEFbGQtYjqWq2R0eSOM7ehQGsF8u989p7n7Oqx6k+ei9fqnsUI0AbomGuTUW+IuZHaS3zrJ6aRpltYEwvna/ZOd1pHtEkh0i3y5CkRnYw844FpEBRJLybKj0caCHJcLYrto/uHzSOUd2Q1mnqo7Dy0SrfJ4uWFvlMZLqQH8xKRsYKjlrU7RDbkfEgPsdMRsYpNhOqKNLvqNfwjrMaN4+0tGGyTtVoylA9gmY/JIU0LKXHSrwL9wbFwOh1GW3YhP38qxcWjnuwAYFLHHo1Jz3L+/bnIq2tGazWg1PlCqXCuztux6D3IsYPKZ+UAi1YMzXHUAFyAahhvbv1cNnSlq289T8qR20wTjIlDEHjp1SqkdQN/Lp1CwN8wG14olW78/fzM0p4TqDTT37/U34/WD7W+tWvXu1793oTnvXbo/PnzbT3hQ+ScSZBycvtRO+d2Bzxo0yzclRJC569IH7CyWesD2ZFUKrXvSjTDZp9R6umRdNVOp+1/rmaybNay0+1z/hh9nuYMaDt3wBMDCIASaq/2k+5fQjSVeFsHt6s1EVfRj81kOrNvZuH4QV054KV2y7Kk6dmhSNS09fxb93E1N9KvZxJqKoF+py+izUzOFIaG0CDqTyJOLOeQivRd49FimVUVtxY0cDAX5np4nCLQDinrrg+HtDqub+8XGax77dUWZCjazmO+lawHxqZ2PqYA3aCggTEfPADADtB+0MbUhScuTNHFhs9IslxMjxeL4+liysr1KZqAsVIwg+FIwMJKSFZTOSuFmOn2MVMX/tcnjHwMCzQImRcCMsZCbcrdw/E35PL9g/E8x7+tUibn6eHA+xh6npEoPvRXvWDml7/KL/0ql7aFl++jviDfGJ9vp5z1x4VuhmPb7c12STGrHoRedLJwBtQVRdHIdWqKghwaWUFDLwLqKuW9UQPP1gRTBSJD1RRqW/UCY1WIcm7BzBztEGPgPPBTe5RsCcxB0Fpq3gekqcFkKThszw0W58dx5eZbXrhlQpnc9hlyBrxY1EumB+eGl5a8JXc8Fh3ry5C9bpmvoj/3ywQ3hw0oRz9altyjmSM9BbCOPvUOWHSEkflxsXrLLZPy1GBid3A4PtdXrO/4BH1i8PBwo+GOx63xvkzrz3r3tu51hXKlGDRyFuCUHTP8OjjLl8uoXF4BgG4ZoLq9MWMgEQL7yYHrueRciGmnkm1HNezh++jYwl3KZk7NvtXadlnfoWjmryFN0kBw1qTWa5Kmfd/PJrMUMcJkCgsb7eQqncPimpSZL89nwH4PR6742X0fTYnxIAyfwbjIbOnnKzTGIANZddpBJBQuXwu5eAcglFxZE1STphpYXlqKb0E1UNP3Nj8C7g4PMqWqyzSurjdHt+lza/aesGaHoK12ZxWi6qx2MnGnzjyEmIe2tUOIVr+uhgsVG22krBY9B6pbqdYmZNmDvWuwHF3rxtX/hFwHsCdVGGCpoeZnPzcjRQvUgIii3fntHJBSiF0nZHnABToN9J1d75w9vG84JwR3zUxd2bcrwuu8JP2dnDDNhIknLmRHj8ad0b27+wL60dHsBaTv24vxULaqRvb1JbTBTEqwBFWbkU044At7xw/GUm5yLOmM9nFmvxE7OL53e2xv8PrY3lo+jboOnR7j5Bl5Xt4jh/tNM99r5Py3j370TXI6HE6He2UXwIWADuOLE6EsUYRq21AiXn0DxR0H8mHHEcRdtJqbNC+208MZDOcJv4HuZvco1O3H4dEo8X+dAdZj/43WKY4XNDey+l7n4/jMDNMbH4D99olcM2+6BaFL9wqmXeo6pvBScFd8WfM0MiKD/uW3SPV3k6KujJ2KxU6NKbqYRMx8axP1B5aWHKxKkopX9g6U2N2uu5stDfTmhghQK/Pw6/TocWgJVNraomKjzj/gXO7tu+vDJzKZE2+CxR2+rdgDAoS1FcRAv6GX+Mpgf2FwsNA/OE95TFOfcRzQXfV2m+/lPfRjf/Yy+8k4c4w5/jq8lURV7rAgUibEzkwGiiTIlu62D3b+ghILNenFN4HcEtVbq04dkBWt74oYaqvYaCw3my90d1Z7v2mgOh2DVsFsMbVU92Otm34tO06zLikSeTvA0y8B0Fvq+tL+Af2EtHXIIUw1EIuMmbXqOK65RJD9VL8k3U8eWagkWVeu9F8Jox/1Y0u6/79QsyT96D2FK9Wtdv0yepm0xxnauylOiegwIFURVYrmeWx7mSjR5XgUlKMIpgRHbXoqGAVonAT6ZOqu++4c51JCZF4qVybHR8e4xWCc19Rw3/SQxUckrAtExTBY4O7lOTYQicdkng3zAr8LeHHvJwfsu+u+UVyPCMk0OdkH4xxiOTU1FXfTFiY6dpYXWSwqLOaJKqsIWAjziLUENgA6wrVrRE9EpE4OMHVmkbl5h0wluHBLeSI8uv6kPOADTMm1+4ghdxwUaaLagXg5NiBGvTS7uwKoTJo4AgGgqJam37LM7MUrF2dnH3nvxdnW125KibwoWnEjkH7rRPFkOqAbAi8LRliWj8tYEHlBjMYC0QFR4EU7+3Vwkyb2l1/ZN2d+52Aunybda5ac6+J7HyGLG37KIkNHLBrdk0myimapmhTEMdeuJexXWJZog0QE4lAwyN6kISuUdscnpt+WkpIPHBofeueqJm/ZHeHxAhaiztzE3M68ZUdt7EwINl6FqhlGb1w1/i9yo2QmgpqhiFWX9ISCCRXTrZdH3kduAxbXeqRL7XhCILVgRnWj75aKeyShq7rIyZwWlKRZDD4CnnzpRE2R54Ro3wOHeIE0klit9am7vOmXJ1IZJ4GYufaJZx9BxS1xt/XMt1hdQ2hoPBlHsmIqmhTgonlrLBZ5gWUNA0RGsjz+pU/roXA8Xrz/zp+2fuacnyyd+GNV6vSBT1P8WIGMyRTeFvEA0AqT7TRbpWg4sPnYkIIA7AZf4owJ0n53zXCcwO1ThZlvcBwrwsYBdJqV+QkB8wvoQUUSZu/nRUF5YIXDnPLrD/ErAmkMT22LzTV3IlXyfrRBzxx1JLeYO3g5t80J98WHM1NPx5iOb+bD6Ema69bGcDj6zdwH4Rj0ZOyVhzP7u+X9CUWfQsQTOMpyFIIcafficT+djEDkgq9KyUpipP/USS1CpunOTlKSrjHvQpeSkgBJW/iItv/i/vaOlNw7PfFuyDXwfwVB8YUAAHicY2BkYGAA4lWM4ubx/DZfGbiZGEDgtpnQKRj9/9f//0y8TCCVHAxgaQAQawqVAHicY2BkYGBiAAI9Job/v/5/ZuJlYGRAAYwhAF9SBIQAeJxjYGBgYBrFo3gUD0H8/z8Zen4NvLtpHR7khAt1wh4A/0IMmAAAAAAAAAAAUABwAI4A5AEwAVQBsgIAAk4CgAKWAtIDDgNuBAAEqgVSBcgF/AZABqAHIgc+B1IHeAeSB6oHwgfmCAIIigjICOII+AkKCRgJLglACUwJYAlwCXwJkgmkCbAJvAoKClYKnArGC2oLoAu8C+wMDgxkDRINpA5ADqQPGA9mD5wQZhDGEQwRbBG2EfoScBKgEywTohP4FCYUSBSgFSAVYBV2FcwV5BYwFlAWyhcIFzwXbheaGEIYdBi8GNAY4hj0GQgZFhk2GU4ZZhl2GeIaQhqyGyIbjhv6HGIczh0sHWQdkh2uHf4eJh5SHngemB64HtgfCB8cHzgfZh+eH9AgGCBQIHQgjCCsIQohQiHSIkwihCK2IvgjRCOGI8Ij+iRqJOglFCUsJWoljiX6JmgmlCbcJxInPid+J6wn9ChQKIoozCjsKQ4pLiliKZwpwCnoKkQqbCqcKtIrQiuiK+YsPix6LM4tAC0yLZAtxi34LnAuoC62LuAvTC+ML9gwTDC0MNoxDDE0MVwxjDG+MfQyQjKCMrAy7jMaM1oznDPYNGA0ljS8NM41GDVONbQ16DYiNmQ2kjbmNyQ3SDdeN6A33Dg6OHI4ojkcOTY5UDlqOYQ5yDniOfA6bjroOww7fjvmPAA8GjwyPJg8/D1OPbY+ID6APtw/KD9mP8A/6D/+QBRAckDYQQRBQEGEQdhCGEJEQrpC3EMOQ1pDkEOiQ9BD7kQ0RKxE1EUKRURFnkXARehGEEZURmZGvEcoR1BHaEeKR75IIEhASHBIpEjYSSZJWkmOSchJ8koQSk5KgEqkSs5LAks4S8hMrEzKTUBNdE2eTchOEk40TpRO4E8gT1pPlk+wUBBQQlBkUIZQ3FEKUS5RYFGaUd5SUlJ2UtxTYlP4VDJUWFRqVKAAAHicY2BkYGAMYZjCIMgAAkxAzAWEDAz/wXwGACE9AhEAeJxtkE1OwzAQhV/6h2glVIGExM5iwQaR/iy66AHafRfZp6nTpEriyHEr9QKcgDNwBk7AkjNwFF7CKAuoR7K/efPGIxvAGJ/wUC8P181erw6umP1ylzQW7pEfhPsY4VF4QP1FeIhnLIRHuEPIG7xefdstnHAHN3gV7lJ/E+6R34X7uMeH8ID6l/AQAb6FR3jyFruwStLIFNVG749ZaNu8hUDbKjWFmvnTVlvrQtvQ6Z3anlV12s+di1VsTa5WpnA6y4wqrTnoyPmJc+VyMolF9yOTY8d3VUiQIoJBQd5AY48jMlbshfp/JWCH5Zk2ucIMPqYXfGv6isYb8gc1HQpbnLlXOHHmnKpDzDymxyAnrZre2p0xDJWyqR2oRNR9Tqi7SiwxYcR//H4zPf8B3ldh6nicbVcFdOO4Fu1Vw1Camd2dZeYsdJaZmeEzKbaSaCtbXktum/3MzMzMzMzMzMzMzP9JtpN0zu85je99kp+fpEeaY3P5X3Xu//7hJjDMo4IqaqijgSZaaKODLhawiCUsYwXbsB07sAf2xF7Yib2xD/bFftgfB+BAHISDcQgOxWE4HEfgSByFo3EMjkUPx+F4nIATsYpdOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjWTlzbgdbo874I64E+6Mu+CuuBvujnuAo48AIQQGGGIEiVuwBoUIMTQS3IoUBhYZ1rGBTYxxG+6Je+HeuA/ui/vh/ngAHogH4cF4CB6Kh+HheAQeiUfh0XgMHovH4fF4Ap6IJ+HJeAqeiqfh6XgGnoln4dl4Dp6L5+H5eAFeiBfhxXgJXoqX4eV4BV6JV+HVeA1ei9fh9XgD3og34c14C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io/h4/gEPolP4dP4DD6Lz+Hz+AK+iC/hy/gKvoqv4ev4Br6Jb+Hb+A6+i+/h+/gBfogf4cf4CX6Kn+Hn+AV+iV/h1/gNfovf4ff4A/6IP+HP+Av+ir/h7/gH/ol/4d/4D/7L5hgYY/OswqqsxuqswZqsxdqsw7psgS2yJbbMVtg2tp3tYHuwPdlebCfbm+3D9mX7sf3ZAexAdhA7mB3CDmWHscPZEexIdhQ7mh3DjmU9dhw7np3ATmSrbBc7iZ3MTmGnstPY6ewMdiY7i53NzmHnsvPY+ewCdiG7iF3MLmGXssvY5ewKdiW7il3NrmHXsuvY9ewGdiO7id08t8TDSMY9niSCpzwOxEIuCLRSPDFTGkUitqaYHmTG6kjeJtJuLhiKWKQyaOVspCPRzqGS8ZopcCRCyRcLnCkrjbSiUBALu6HTtUJBwoflQKKyoYxNOaCNLUwywloZD01JSVePK7u4la7uxne1prwwy2qtShMzI1LT4DJNFI9Flat+FnW4kkNaM61fpEs5GWRK9TZkaEetXKDEwBYw1rFYzGHiprmhpRmeyuHItnOBx8V7pE7UeMRv03GTx1yNrQxMnafBSK7TOaSp3uiFeiPOV7mFrramvJjpvjozs6TlTMeLIW+DG1vaja+2ZwSdHGeJG+nOktWVCQuzRMmAW9EoRfM8tTW+wdPQ1Po8WMuSSp/Ha5W+ECn9KNXtKx2s9UIx4OQSjb7Wa05pxYGVfhaGMtCx6fHAynVpx3tMRf1+kgpjekoP9c4ZMaHxdGTbdMQ5cRaTkqWpbKDTLDLLM4JUijg0M1OGqc4S05kKkmhmfipoyWJ2vtUJHdyM7TalhZOrNvqZVCGBdj8zMiYLIx4vlDghz9Nxt6QbmgZr/cxaHbcCroJMcavTDkGyj6dukxoloQmRSLmT1XI4H/CUIJ2CrdDDTbViqNNxKxgR7fFU8GYO++59jyhYRSFMJCElk76mo6sG7oza9JuFPcPXRdjJMR235n44CxcCHYqesdwZRKcd6MFAiA4lEp2SumBNpHUiWRSbLm2LTSnqes4lliaMDsN5ysJEkHAKyOlsCsrx4oTRzgtulyfcrJG5pG/7Fkmhc2UiXHc2CDJueXdR3A70ukh7MqL00wy5GfnVd0JueZ8byh9huDghYjPRqZ1yGW3lqYhIW3fC16XYaJSsHgqzRo5SD6WJpDENF7luL5uh80eK/LUWZUs6Ep6SLR66pFhxaMX9aOcBlDaKtDQrcrG9PCvIM04h6WsVdkpMXrC2oyD+/CYRvDiRxs5/Jwrz1O+cpFtIaCPozEv1I6GSckTGIVm3PGGUXG2kUzEZt2ResFCwW0izHIzL1a1JG4xETNGQbwWJlJ18VFMetao5YaUSnVn3zXI/Eipqw5Qno+WJwFAhsGLTbpVQ8Znsyq2ZtmLPguTHSF4UcV9vSlvo66UGCl2lyFZyvVJiU7km7Igyx3BUqqWTV6I0zFngQ6NcQqbKoYx2LXWh2J0IXBUt1axTmdAN+qJMjDRNEXGpXOC3Jmi16mFbRH0R9ngWSt3NcVGmi5FkpK1uFZgKayH2H+iIzUCkifVuWxGb0jbIYpFSXeoMeCDKPN0oSYOCPXThVxtIRRMrA8WHlYHWYSffvB43pHhCnFXtgpA32YUCD7lSIh2X83wslsQfTLcglGlsZsohb3TVEbPgirMJUiF8bdw2Q906nKw6pCRpakOth0o0h6kM/TpreaqvjTh1O2l9JLjL1lV6UhEbyZA8qznSWTpU3JjKyEaqRm+SPibDlre0F6Q66eQw34cdBaHjor4olVTdyeu3zUgp5VC8c7WcyyhjU/j5Ar2yRZKX4VlR/k3jLGhP4WrLxd1mL3C5S8YD7YLC+VPFkU4ehj0+IOO6Bek7Bxe1nDXpYV3URDVqASlJ0WNMKprOJG9EU7nffqb6DeeZ5JgxiUzuLB2qFdxK7Te/UZKFvMqX2aUW8ZQKQte3hL2ix2kXzLlGK8cuJxWTig5hoWA6yFxHupxT6ZKg7xFEITHUAvDQjISwhS4XcsUnvLc0IzGkzEDdWoM0Zc7cZglWJ2hXxaFWJN3Jusn1SNLeWFGlfjEzzYhEY+9THlVctqjH5F60ha2iqyUnqsXaO0qs2zohTxxQFhZpI+EqsuSazYRT/XcFdz4JB23C3q8pu1cSYU3Vf7mZ+GUKaoFdJfQ77jdrSv3CFoueuedzkggbxL1nNEuwWnGommh6uenKFplD4eiSQBFXTd9B2ZE09ST1n3XPdR6MG0mqwyywpkn3hdDfAmqpoF7HVuiha3nCbDgz6Voh51Njqr5naBiyJ8yU6ObRqBPnGKZmhDv/pqGS4lv01gStVj0kgRTKB1othzSZjHbOUTOKlmxa1Eql1u9SjQqqooMwNGPeaFM3iXZ1pUULo2IVJXbc9pDiUwlS5fCIq0HNl91xleoblSiT0SGMROqPrTlhiz6Lu+tRHkFLU54H0YwgFEpQIc0Frh2efcPxLW/4/t2/UfMCO08e1KB/3121Le2nJBeTXDWdJ+ftgPdpO8qivvHNf7PAWdJ2iyHXcebXC1yxtFdtKuexUT4qq4TNqGY3XK1tuwcZmL+R4woVI72dmmZKUobTmoPANdbusrC7sEZlimK8lSUhz+9atRzWii5x3YVv03uoP+YJWp3CXQSN7EtFXXqd+raYQmdpQyhq3X375Vc9EZS30pVSoMiV6G5Jm7pcilxK8re9HaWE7llDtzEurqevbqTuhkiXkWFjg8qRoRtx1zUF+U3C+cCEVTbJqvo4z7bz9Ky79Jj1xdzc/wARDj0u") format("woff"), url("/wp-includes/fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800") format("truetype");
  font-weight: 400;
  font-style: normal
}

.dashicons,
.dashicons-before:before {
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  speak: never;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 20px;
  height: 20px;
  font-size: 20px;
  vertical-align: top;
  text-align: center;
  transition: color .1s ease-in
}

.dashicons-admin-appearance:before {
  content: "\f100"
}

.dashicons-admin-collapse:before {
  content: "\f148"
}

.dashicons-admin-comments:before {
  content: "\f101"
}

.dashicons-admin-customizer:before {
  content: "\f540"
}

.dashicons-admin-generic:before {
  content: "\f111"
}

.dashicons-admin-home:before {
  content: "\f102"
}

.dashicons-admin-links:before {
  content: "\f103"
}

.dashicons-admin-media:before {
  content: "\f104"
}

.dashicons-admin-multisite:before {
  content: "\f541"
}

.dashicons-admin-network:before {
  content: "\f112"
}

.dashicons-admin-page:before {
  content: "\f105"
}

.dashicons-admin-plugins:before {
  content: "\f106"
}

.dashicons-admin-post:before {
  content: "\f109"
}

.dashicons-admin-settings:before {
  content: "\f108"
}

.dashicons-admin-site-alt:before {
  content: "\f11d"
}

.dashicons-admin-site-alt2:before {
  content: "\f11e"
}

.dashicons-admin-site-alt3:before {
  content: "\f11f"
}

.dashicons-admin-site:before {
  content: "\f319"
}

.dashicons-admin-tools:before {
  content: "\f107"
}

.dashicons-admin-users:before {
  content: "\f110"
}

.dashicons-airplane:before {
  content: "\f15f"
}

.dashicons-album:before {
  content: "\f514"
}

.dashicons-align-center:before {
  content: "\f134"
}

.dashicons-align-full-width:before {
  content: "\f114"
}

.dashicons-align-left:before {
  content: "\f135"
}

.dashicons-align-none:before {
  content: "\f138"
}

.dashicons-align-pull-left:before {
  content: "\f10a"
}

.dashicons-align-pull-right:before {
  content: "\f10b"
}

.dashicons-align-right:before {
  content: "\f136"
}

.dashicons-align-wide:before {
  content: "\f11b"
}

.dashicons-amazon:before {
  content: "\f162"
}

.dashicons-analytics:before {
  content: "\f183"
}

.dashicons-archive:before {
  content: "\f480"
}

.dashicons-arrow-down-alt:before {
  content: "\f346"
}

.dashicons-arrow-down-alt2:before {
  content: "\f347"
}

.dashicons-arrow-down:before {
  content: "\f140"
}

.dashicons-arrow-left-alt:before {
  content: "\f340"
}

.dashicons-arrow-left-alt2:before {
  content: "\f341"
}

.dashicons-arrow-left:before {
  content: "\f141"
}

.dashicons-arrow-right-alt:before {
  content: "\f344"
}

.dashicons-arrow-right-alt2:before {
  content: "\f345"
}

.dashicons-arrow-right:before {
  content: "\f139"
}

.dashicons-arrow-up-alt:before {
  content: "\f342"
}

.dashicons-arrow-up-alt2:before {
  content: "\f343"
}

.dashicons-arrow-up-duplicate:before {
  content: "\f143"
}

.dashicons-arrow-up:before {
  content: "\f142"
}

.dashicons-art:before {
  content: "\f309"
}

.dashicons-awards:before {
  content: "\f313"
}

.dashicons-backup:before {
  content: "\f321"
}

.dashicons-bank:before {
  content: "\f16a"
}

.dashicons-beer:before {
  content: "\f16c"
}

.dashicons-bell:before {
  content: "\f16d"
}

.dashicons-block-default:before {
  content: "\f12b"
}

.dashicons-book-alt:before {
  content: "\f331"
}

.dashicons-book:before {
  content: "\f330"
}

.dashicons-buddicons-activity:before {
  content: "\f452"
}

.dashicons-buddicons-bbpress-logo:before {
  content: "\f477"
}

.dashicons-buddicons-buddypress-logo:before {
  content: "\f448"
}

.dashicons-buddicons-community:before {
  content: "\f453"
}

.dashicons-buddicons-forums:before {
  content: "\f449"
}

.dashicons-buddicons-friends:before {
  content: "\f454"
}

.dashicons-buddicons-groups:before {
  content: "\f456"
}

.dashicons-buddicons-pm:before {
  content: "\f457"
}

.dashicons-buddicons-replies:before {
  content: "\f451"
}

.dashicons-buddicons-topics:before {
  content: "\f450"
}

.dashicons-buddicons-tracking:before {
  content: "\f455"
}

.dashicons-building:before {
  content: "\f512"
}

.dashicons-businessman:before {
  content: "\f338"
}

.dashicons-businessperson:before {
  content: "\f12e"
}

.dashicons-businesswoman:before {
  content: "\f12f"
}

.dashicons-button:before {
  content: "\f11a"
}

.dashicons-calculator:before {
  content: "\f16e"
}

.dashicons-calendar-alt:before {
  content: "\f508"
}

.dashicons-calendar:before {
  content: "\f145"
}

.dashicons-camera-alt:before {
  content: "\f129"
}

.dashicons-camera:before {
  content: "\f306"
}

.dashicons-car:before {
  content: "\f16b"
}

.dashicons-carrot:before {
  content: "\f511"
}

.dashicons-cart:before {
  content: "\f174"
}

.dashicons-category:before {
  content: "\f318"
}

.dashicons-chart-area:before {
  content: "\f239"
}

.dashicons-chart-bar:before {
  content: "\f185"
}

.dashicons-chart-line:before {
  content: "\f238"
}

.dashicons-chart-pie:before {
  content: "\f184"
}

.dashicons-clipboard:before {
  content: "\f481"
}

.dashicons-clock:before {
  content: "\f469"
}

.dashicons-cloud-saved:before {
  content: "\f137"
}

.dashicons-cloud-upload:before {
  content: "\f13b"
}

.dashicons-cloud:before {
  content: "\f176"
}

.dashicons-code-standards:before {
  content: "\f13a"
}

.dashicons-coffee:before {
  content: "\f16f"
}

.dashicons-color-picker:before {
  content: "\f131"
}

.dashicons-columns:before {
  content: "\f13c"
}

.dashicons-controls-back:before {
  content: "\f518"
}

.dashicons-controls-forward:before {
  content: "\f519"
}

.dashicons-controls-pause:before {
  content: "\f523"
}

.dashicons-controls-play:before {
  content: "\f522"
}

.dashicons-controls-repeat:before {
  content: "\f515"
}

.dashicons-controls-skipback:before {
  content: "\f516"
}

.dashicons-controls-skipforward:before {
  content: "\f517"
}

.dashicons-controls-volumeoff:before {
  content: "\f520"
}

.dashicons-controls-volumeon:before {
  content: "\f521"
}

.dashicons-cover-image:before {
  content: "\f13d"
}

.dashicons-dashboard:before {
  content: "\f226"
}

.dashicons-database-add:before {
  content: "\f170"
}

.dashicons-database-export:before {
  content: "\f17a"
}

.dashicons-database-import:before {
  content: "\f17b"
}

.dashicons-database-remove:before {
  content: "\f17c"
}

.dashicons-database-view:before {
  content: "\f17d"
}

.dashicons-database:before {
  content: "\f17e"
}

.dashicons-desktop:before {
  content: "\f472"
}

.dashicons-dismiss:before {
  content: "\f153"
}

.dashicons-download:before {
  content: "\f316"
}

.dashicons-drumstick:before {
  content: "\f17f"
}

.dashicons-edit-large:before {
  content: "\f327"
}

.dashicons-edit-page:before {
  content: "\f186"
}

.dashicons-edit:before {
  content: "\f464"
}

.dashicons-editor-aligncenter:before {
  content: "\f207"
}

.dashicons-editor-alignleft:before {
  content: "\f206"
}

.dashicons-editor-alignright:before {
  content: "\f208"
}

.dashicons-editor-bold:before {
  content: "\f200"
}

.dashicons-editor-break:before {
  content: "\f474"
}

.dashicons-editor-code-duplicate:before {
  content: "\f494"
}

.dashicons-editor-code:before {
  content: "\f475"
}

.dashicons-editor-contract:before {
  content: "\f506"
}

.dashicons-editor-customchar:before {
  content: "\f220"
}

.dashicons-editor-expand:before {
  content: "\f211"
}

.dashicons-editor-help:before {
  content: "\f223"
}

.dashicons-editor-indent:before {
  content: "\f222"
}

.dashicons-editor-insertmore:before {
  content: "\f209"
}

.dashicons-editor-italic:before {
  content: "\f201"
}

.dashicons-editor-justify:before {
  content: "\f214"
}

.dashicons-editor-kitchensink:before {
  content: "\f212"
}

.dashicons-editor-ltr:before {
  content: "\f10c"
}

.dashicons-editor-ol-rtl:before {
  content: "\f12c"
}

.dashicons-editor-ol:before {
  content: "\f204"
}

.dashicons-editor-outdent:before {
  content: "\f221"
}

.dashicons-editor-paragraph:before {
  content: "\f476"
}

.dashicons-editor-paste-text:before {
  content: "\f217"
}

.dashicons-editor-paste-word:before {
  content: "\f216"
}

.dashicons-editor-quote:before {
  content: "\f205"
}

.dashicons-editor-removeformatting:before {
  content: "\f218"
}

.dashicons-editor-rtl:before {
  content: "\f320"
}

.dashicons-editor-spellcheck:before {
  content: "\f210"
}

.dashicons-editor-strikethrough:before {
  content: "\f224"
}

.dashicons-editor-table:before {
  content: "\f535"
}

.dashicons-editor-textcolor:before {
  content: "\f215"
}

.dashicons-editor-ul:before {
  content: "\f203"
}

.dashicons-editor-underline:before {
  content: "\f213"
}

.dashicons-editor-unlink:before {
  content: "\f225"
}

.dashicons-editor-video:before {
  content: "\f219"
}

.dashicons-ellipsis:before {
  content: "\f11c"
}

.dashicons-email-alt:before {
  content: "\f466"
}

.dashicons-email-alt2:before {
  content: "\f467"
}

.dashicons-email:before {
  content: "\f465"
}

.dashicons-embed-audio:before {
  content: "\f13e"
}

.dashicons-embed-generic:before {
  content: "\f13f"
}

.dashicons-embed-photo:before {
  content: "\f144"
}

.dashicons-embed-post:before {
  content: "\f146"
}

.dashicons-embed-video:before {
  content: "\f149"
}

.dashicons-excerpt-view:before {
  content: "\f164"
}

.dashicons-exit:before {
  content: "\f14a"
}

.dashicons-external:before {
  content: "\f504"
}

.dashicons-facebook-alt:before {
  content: "\f305"
}

.dashicons-facebook:before {
  content: "\f304"
}

.dashicons-feedback:before {
  content: "\f175"
}

.dashicons-filter:before {
  content: "\f536"
}

.dashicons-flag:before {
  content: "\f227"
}

.dashicons-food:before {
  content: "\f187"
}

.dashicons-format-aside:before {
  content: "\f123"
}

.dashicons-format-audio:before {
  content: "\f127"
}

.dashicons-format-chat:before {
  content: "\f125"
}

.dashicons-format-gallery:before {
  content: "\f161"
}

.dashicons-format-image:before {
  content: "\f128"
}

.dashicons-format-quote:before {
  content: "\f122"
}

.dashicons-format-status:before {
  content: "\f130"
}

.dashicons-format-video:before {
  content: "\f126"
}

.dashicons-forms:before {
  content: "\f314"
}

.dashicons-fullscreen-alt:before {
  content: "\f188"
}

.dashicons-fullscreen-exit-alt:before {
  content: "\f189"
}

.dashicons-games:before {
  content: "\f18a"
}

.dashicons-google:before {
  content: "\f18b"
}

.dashicons-googleplus:before {
  content: "\f462"
}

.dashicons-grid-view:before {
  content: "\f509"
}

.dashicons-groups:before {
  content: "\f307"
}

.dashicons-hammer:before {
  content: "\f308"
}

.dashicons-heading:before {
  content: "\f10e"
}

.dashicons-heart:before {
  content: "\f487"
}

.dashicons-hidden:before {
  content: "\f530"
}

.dashicons-hourglass:before {
  content: "\f18c"
}

.dashicons-html:before {
  content: "\f14b"
}

.dashicons-id-alt:before {
  content: "\f337"
}

.dashicons-id:before {
  content: "\f336"
}

.dashicons-image-crop:before {
  content: "\f165"
}

.dashicons-image-filter:before {
  content: "\f533"
}

.dashicons-image-flip-horizontal:before {
  content: "\f169"
}

.dashicons-image-flip-vertical:before {
  content: "\f168"
}

.dashicons-image-rotate-left:before {
  content: "\f166"
}

.dashicons-image-rotate-right:before {
  content: "\f167"
}

.dashicons-image-rotate:before {
  content: "\f531"
}

.dashicons-images-alt:before {
  content: "\f232"
}

.dashicons-images-alt2:before {
  content: "\f233"
}

.dashicons-index-card:before {
  content: "\f510"
}

.dashicons-info-outline:before {
  content: "\f14c"
}

.dashicons-info:before {
  content: "\f348"
}

.dashicons-insert-after:before {
  content: "\f14d"
}

.dashicons-insert-before:before {
  content: "\f14e"
}

.dashicons-insert:before {
  content: "\f10f"
}

.dashicons-instagram:before {
  content: "\f12d"
}

.dashicons-laptop:before {
  content: "\f547"
}

.dashicons-layout:before {
  content: "\f538"
}

.dashicons-leftright:before {
  content: "\f229"
}

.dashicons-lightbulb:before {
  content: "\f339"
}

.dashicons-linkedin:before {
  content: "\f18d"
}

.dashicons-list-view:before {
  content: "\f163"
}

.dashicons-location-alt:before {
  content: "\f231"
}

.dashicons-location:before {
  content: "\f230"
}

.dashicons-lock-duplicate:before {
  content: "\f315"
}

.dashicons-lock:before {
  content: "\f160"
}

.dashicons-marker:before {
  content: "\f159"
}

.dashicons-media-archive:before {
  content: "\f501"
}

.dashicons-media-audio:before {
  content: "\f500"
}

.dashicons-media-code:before {
  content: "\f499"
}

.dashicons-media-default:before {
  content: "\f498"
}

.dashicons-media-document:before {
  content: "\f497"
}

.dashicons-media-interactive:before {
  content: "\f496"
}

.dashicons-media-spreadsheet:before {
  content: "\f495"
}

.dashicons-media-text:before {
  content: "\f491"
}

.dashicons-media-video:before {
  content: "\f490"
}

.dashicons-megaphone:before {
  content: "\f488"
}

.dashicons-menu-alt:before {
  content: "\f228"
}

.dashicons-menu-alt2:before {
  content: "\f329"
}

.dashicons-menu-alt3:before {
  content: "\f349"
}

.dashicons-menu:before {
  content: "\f333"
}

.dashicons-microphone:before {
  content: "\f482"
}

.dashicons-migrate:before {
  content: "\f310"
}

.dashicons-minus:before {
  content: "\f460"
}

.dashicons-money-alt:before {
  content: "\f18e"
}

.dashicons-money:before {
  content: "\f526"
}

.dashicons-move:before {
  content: "\f545"
}

.dashicons-nametag:before {
  content: "\f484"
}

.dashicons-networking:before {
  content: "\f325"
}

.dashicons-no-alt:before {
  content: "\f335"
}

.dashicons-no:before {
  content: "\f158"
}

.dashicons-open-folder:before {
  content: "\f18f"
}

.dashicons-palmtree:before {
  content: "\f527"
}

.dashicons-paperclip:before {
  content: "\f546"
}

.dashicons-pdf:before {
  content: "\f190"
}

.dashicons-performance:before {
  content: "\f311"
}

.dashicons-pets:before {
  content: "\f191"
}

.dashicons-phone:before {
  content: "\f525"
}

.dashicons-pinterest:before {
  content: "\f192"
}

.dashicons-playlist-audio:before {
  content: "\f492"
}

.dashicons-playlist-video:before {
  content: "\f493"
}

.dashicons-plugins-checked:before {
  content: "\f485"
}

.dashicons-plus-alt:before {
  content: "\f502"
}

.dashicons-plus-alt2:before {
  content: "\f543"
}

.dashicons-plus:before {
  content: "\f132"
}

.dashicons-podio:before {
  content: "\f19c"
}

.dashicons-portfolio:before {
  content: "\f322"
}

.dashicons-post-status:before {
  content: "\f173"
}

.dashicons-pressthis:before {
  content: "\f157"
}

.dashicons-printer:before {
  content: "\f193"
}

.dashicons-privacy:before {
  content: "\f194"
}

.dashicons-products:before {
  content: "\f312"
}

.dashicons-randomize:before {
  content: "\f503"
}

.dashicons-reddit:before {
  content: "\f195"
}

.dashicons-redo:before {
  content: "\f172"
}

.dashicons-remove:before {
  content: "\f14f"
}

.dashicons-rest-api:before {
  content: "\f124"
}

.dashicons-rss:before {
  content: "\f303"
}

.dashicons-saved:before {
  content: "\f15e"
}

.dashicons-schedule:before {
  content: "\f489"
}

.dashicons-screenoptions:before {
  content: "\f180"
}

.dashicons-search:before {
  content: "\f179"
}

.dashicons-share-alt:before {
  content: "\f240"
}

.dashicons-share-alt2:before {
  content: "\f242"
}

.dashicons-share:before {
  content: "\f237"
}

.dashicons-shield-alt:before {
  content: "\f334"
}

.dashicons-shield:before {
  content: "\f332"
}

.dashicons-shortcode:before {
  content: "\f150"
}

.dashicons-slides:before {
  content: "\f181"
}

.dashicons-smartphone:before {
  content: "\f470"
}

.dashicons-smiley:before {
  content: "\f328"
}

.dashicons-sort:before {
  content: "\f156"
}

.dashicons-sos:before {
  content: "\f468"
}

.dashicons-spotify:before {
  content: "\f196"
}

.dashicons-star-empty:before {
  content: "\f154"
}

.dashicons-star-filled:before {
  content: "\f155"
}

.dashicons-star-half:before {
  content: "\f459"
}

.dashicons-sticky:before {
  content: "\f537"
}

.dashicons-store:before {
  content: "\f513"
}

.dashicons-superhero-alt:before {
  content: "\f197"
}

.dashicons-superhero:before {
  content: "\f198"
}

.dashicons-table-col-after:before {
  content: "\f151"
}

.dashicons-table-col-before:before {
  content: "\f152"
}

.dashicons-table-col-delete:before {
  content: "\f15a"
}

.dashicons-table-row-after:before {
  content: "\f15b"
}

.dashicons-table-row-before:before {
  content: "\f15c"
}

.dashicons-table-row-delete:before {
  content: "\f15d"
}

.dashicons-tablet:before {
  content: "\f471"
}

.dashicons-tag:before {
  content: "\f323"
}

.dashicons-tagcloud:before {
  content: "\f479"
}

.dashicons-testimonial:before {
  content: "\f473"
}

.dashicons-text-page:before {
  content: "\f121"
}

.dashicons-text:before {
  content: "\f478"
}

.dashicons-thumbs-down:before {
  content: "\f542"
}

.dashicons-thumbs-up:before {
  content: "\f529"
}

.dashicons-tickets-alt:before {
  content: "\f524"
}

.dashicons-tickets:before {
  content: "\f486"
}

.dashicons-tide:before {
  content: "\f10d"
}

.dashicons-translation:before {
  content: "\f326"
}

.dashicons-trash:before {
  content: "\f182"
}

.dashicons-twitch:before {
  content: "\f199"
}

.dashicons-twitter-alt:before {
  content: "\f302"
}

.dashicons-twitter:before {
  content: "\f301"
}

.dashicons-undo:before {
  content: "\f171"
}

.dashicons-universal-access-alt:before {
  content: "\f507"
}

.dashicons-universal-access:before {
  content: "\f483"
}

.dashicons-unlock:before {
  content: "\f528"
}

.dashicons-update-alt:before {
  content: "\f113"
}

.dashicons-update:before {
  content: "\f463"
}

.dashicons-upload:before {
  content: "\f317"
}

.dashicons-vault:before {
  content: "\f178"
}

.dashicons-video-alt:before {
  content: "\f234"
}

.dashicons-video-alt2:before {
  content: "\f235"
}

.dashicons-video-alt3:before {
  content: "\f236"
}

.dashicons-visibility:before {
  content: "\f177"
}

.dashicons-warning:before {
  content: "\f534"
}

.dashicons-welcome-add-page:before {
  content: "\f133"
}

.dashicons-welcome-comments:before {
  content: "\f117"
}

.dashicons-welcome-learn-more:before {
  content: "\f118"
}

.dashicons-welcome-view-site:before {
  content: "\f115"
}

.dashicons-welcome-widgets-menus:before {
  content: "\f116"
}

.dashicons-welcome-write-blog:before {
  content: "\f119"
}

.dashicons-whatsapp:before {
  content: "\f19a"
}

.dashicons-wordpress-alt:before {
  content: "\f324"
}

.dashicons-wordpress:before {
  content: "\f120"
}

.dashicons-xing:before {
  content: "\f19d"
}

.dashicons-yes-alt:before {
  content: "\f12a"
}

.dashicons-yes:before {
  content: "\f147"
}

.dashicons-youtube:before {
  content: "\f19b"
}

.dashicons-editor-distractionfree:before {
  content: "\f211"
}

.dashicons-exerpt-view:before {
  content: "\f164"
}

.dashicons-format-links:before {
  content: "\f103"
}

.dashicons-format-standard:before {
  content: "\f109"
}

.dashicons-post-trash:before {
  content: "\f182"
}

.dashicons-share1:before {
  content: "\f237"
}

.dashicons-welcome-edit-page:before {
  content: "\f119"
}

div.tnp-subscription,
form.tnp-subscription,
form.tnp-profile {
  display: block;
  margin: 1em auto;
  max-width: 500px;
  width: 100%
}

div.tnp-profile {
  display: block;
  margin: 1em 0;
  max-width: 500px
}

.tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field {
  margin-bottom: .7em;
  border: 0;
  padding: 0
}

.tnp-subscription label,
.tnp-profile label {
  display: block;
  color: inherit;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  margin: 0;
  margin-bottom: .25em;
  font-size: .9em
}

.tnp-subscription .tnp-field-checkbox label,
.tnp-profile .tnp-field-checkbox label {
  display: inline-block
}

.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea {
  width: 100%;
  padding: .7em;
  display: block;
  border: 1px;
  color: #444;
  border-color: #ddd;
  background-color: #f4f4f4;
  background-image: none;
  text-shadow: none;
  font-size: 1em;
  margin: 0;
  line-height: normal;
  box-sizing: border-box
}

.tnp-subscription input[type=checkbox],
.tnp-widget input[type=radio],
.tnp-profile input[type=checkbox] {
  max-width: 1em;
  display: inline-block;
  margin-right: .5em
}

.tnp-subscription select option,
.tnp-profile select option {
  margin-right: .75em
}

.tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit,
.tnp-unsubscribe button.tnp-submit,
.tnp-reactivate button.tnp-submit {
  background-color: #444;
  color: #fff;
  width: auto;
  height: auto;
  margin: 0;
  display: inline-block
}

@media all and (max-width:480px) {

  .tnp-subscription input[type=submit],
  .tnp-profile input[type=submit] {
    width: 100%
  }
}

.tnp-widget {
  width: 100%;
  display: block;
  box-sizing: border-box
}

.tnp-widget .tnp-field {
  margin-bottom: 10px;
  border: 0;
  padding: 0
}

.tnp-widget label {
  display: block;
  color: inherit;
  font-size: 14px
}

.tnp-widget input[type=text],
.tnp-widget input[type=email],
.tnp-widget input[type=submit],
.tnp-widget select {
  width: 100%;
  padding: 10px;
  display: block;
  border: 1px solid #ddd;
  border-color: #ddd;
  background-color: #f4f4f4;
  background-image: none;
  text-shadow: none;
  color: #444;
  font-size: 14px;
  line-height: normal;
  box-sizing: border-box;
  height: auto
}

.tnp-widget input[type=checkbox],
.tnp-widget input[type=radio] {
  width: auto;
  display: inline-block
}

.tnp-widget select option {
  margin-right: 10px
}

.tnp-widget input.tnp-submit {
  background-color: #444;
  background-image: none;
  text-shadow: none;
  color: #fff;
  margin: 0
}

.tnp-field input[type=submit] {
  position: inherit
}

.tnp-widget-minimal {
  width: 100%
}

.tnp-widget-minimal form {
  margin: 0;
  padding: 0;
  border: 0
}

.tnp-widget-minimal input.tnp-email {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  display: inline-block;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  color: #444;
  font-size: 14px
}

.tnp-widget-minimal input.tnp-submit {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  display: inline-block;
  border: 1px;
  border-color: #ddd;
  background-color: #444;
  background-image: none;
  text-shadow: none;
  color: #fff;
  font-size: 14px;
  line-height: normal;
  border-radius: 0;
  height: auto;
  margin: 0
}

.tnp-subscription-minimal {
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0
}

.tnp-subscription-minimal form {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  white-space: nowrap
}

.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name {
  width: 70%;
  max-width: 300px;
  box-sizing: border-box;
  padding: 10px;
  display: inline-block;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  color: #444;
  font-size: 14px;
  line-height: 20px;
  border-radius: 0;
  margin-right: 10px
}

.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name {
  width: 31%
}

.tnp-subscription-minimal .tnp-privacy-field {
  margin-top: 10px
}

.tnp-subscription-minimal input.tnp-submit {
  width: 29%;
  box-sizing: border-box;
  display: inline-block;
  padding: 10px;
  border: 1px;
  border-color: #ddd;
  background-color: #444;
  background-image: none;
  text-shadow: none;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  border-radius: 0;
  margin: 0
}

.tnp-subscription-posts {
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 2rem
}

.tnp-subscription-posts .tnp-subscription {
  max-width: auto;
  margin: 0
}

@media all and (max-width:525px) {

  .tnp-subscription-minimal.with-name input.tnp-email,
  .tnp-subscription-minimal.with-name input.tnp-name,
  .tnp-subscription-minimal input.tnp-submit {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    margin-bottom: .5rem
  }
}

.tnp-button-form button.tnp-submit {
  box-sizing: border-box;
  padding: 10px;
  display: inline-block;
  border: 1px;
  border-color: #ddd;
  background-color: #444;
  background-image: none;
  text-shadow: none;
  color: #fff;
  font-size: 14px;
  line-height: normal;
  border-radius: 0;
  height: auto;
  margin: 0
}

.tnp-comments {
  clear: both;
  margin-top: 15px;
  margin-bottom: 15px
}

.tnp-comments label {
  display: block
}

.tnp-comments input[type=checkbox] {
  display: inline-block;
  width: auto !important
}

.tnp-lock {
  clear: both;
  display: block;
  box-sizing: border-box;
  box-shadow: none;
  margin: 20px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd
}

.tnp-nl-checkout {
  margin-bottom: 1em
}

.tablepress {
  --text-color: #111;
  --head-text-color: var(--text-color);
  --head-bg-color: #d9edf7;
  --odd-text-color: var(--text-color);
  --odd-bg-color: #fff;
  --even-text-color: var(--text-color);
  --even-bg-color: #f9f9f9;
  --hover-text-color: var(--text-color);
  --hover-bg-color: #f3f3f3;
  --border-color: #ddd;
  --padding: .5rem;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  clear: both;
  margin: 0 auto 1rem;
  table-layout: auto;
  width: 100%
}

.tablepress>:not(caption)>*>* {
  background: 0 0;
  border: none;
  box-sizing: border-box;
  float: none !important;
  padding: var(--padding);
  text-align: left;
  vertical-align: top
}

.tablepress>:where(thead)+tbody>*>*,
.tablepress>tbody>*~*>*,
.tablepress>tfoot>:where(:first-child)>* {
  border-top: 1px solid var(--border-color)
}

.tablepress>:where(thead, tfoot)>*>th {
  background-color: var(--head-bg-color);
  color: var(--head-text-color);
  font-weight: 700;
  vertical-align: middle;
  word-break: normal
}

.tablepress>:where(tbody)>tr>* {
  color: var(--text-color)
}

.tablepress>:where(tbody.row-striping)>:nth-child(odd)>* {
  background-color: var(--odd-bg-color);
  color: var(--odd-text-color)
}

.tablepress>:where(tbody.row-striping)>:nth-child(2n)>* {
  background-color: var(--even-bg-color);
  color: var(--even-text-color)
}

.tablepress>.row-hover>tr:hover>* {
  background-color: var(--hover-bg-color);
  color: var(--hover-text-color)
}

.tablepress img {
  border: none;
  margin: 0;
  max-width: none;
  padding: 0
}

.tablepress-table-description {
  clear: both;
  display: block
}

.dt-scroll {
  width: 100%
}

.dt-scroll .tablepress {
  width: 100% !important
}

div.dt-scroll-body tfoot tr,
div.dt-scroll-body thead tr {
  height: 0
}

div.dt-scroll-body tfoot tr th,
div.dt-scroll-body thead tr th {
  border-bottom-width: 0 !important;
  border-top-width: 0 !important;
  height: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important
}

div.dt-scroll-body tfoot tr th div.dt-scroll-sizing,
div.dt-scroll-body thead tr th div.dt-scroll-sizing {
  height: 0 !important;
  overflow: hidden !important
}

div.dt-scroll-body>table.dataTable>thead>tr>th {
  overflow: hidden
}

.tablepress {
  --head-active-bg-color: #049cdb;
  --head-active-text-color: var(--head-text-color);
  --head-sort-arrow-color: var(--head-active-text-color)
}

.tablepress thead th:active {
  outline: none
}

.tablepress thead .dt-orderable-asc .dt-column-order:before,
.tablepress thead .dt-ordering-asc .dt-column-order:before {
  bottom: 50%;
  content: "â–²" /"";
  display: block;
  position: absolute
}

.tablepress thead .dt-orderable-desc .dt-column-order:after,
.tablepress thead .dt-ordering-desc .dt-column-order:after {
  content: "â–¼" /"";
  display: block;
  position: absolute;
  top: 50%
}

.tablepress thead .dt-orderable-asc,
.tablepress thead .dt-orderable-desc,
.tablepress thead .dt-ordering-asc,
.tablepress thead .dt-ordering-desc {
  padding-right: 24px;
  position: relative
}

.tablepress thead .dt-orderable-asc .dt-column-order,
.tablepress thead .dt-orderable-desc .dt-column-order,
.tablepress thead .dt-ordering-asc .dt-column-order,
.tablepress thead .dt-ordering-desc .dt-column-order {
  bottom: 0;
  color: var(--head-sort-arrow-color);
  position: absolute;
  right: 6px;
  top: 0;
  width: 12px
}

.tablepress thead .dt-orderable-asc .dt-column-order:after,
.tablepress thead .dt-orderable-asc .dt-column-order:before,
.tablepress thead .dt-orderable-desc .dt-column-order:after,
.tablepress thead .dt-orderable-desc .dt-column-order:before,
.tablepress thead .dt-ordering-asc .dt-column-order:after,
.tablepress thead .dt-ordering-asc .dt-column-order:before,
.tablepress thead .dt-ordering-desc .dt-column-order:after,
.tablepress thead .dt-ordering-desc .dt-column-order:before {
  font-family: sans-serif !important;
  font-size: 12px;
  line-height: 12px;
  opacity: .2
}

.tablepress thead .dt-orderable-asc,
.tablepress thead .dt-orderable-desc {
  cursor: pointer;
  outline-offset: -2px
}

.tablepress thead .dt-orderable-asc:hover,
.tablepress thead .dt-orderable-desc:hover,
.tablepress thead .dt-ordering-asc,
.tablepress thead .dt-ordering-desc {
  background-color: var(--head-active-bg-color);
  color: var(--head-active-text-color)
}

.tablepress thead .dt-ordering-asc .dt-column-order:before,
.tablepress thead .dt-ordering-desc .dt-column-order:after {
  opacity: .8
}

.tablepress:where(.auto-type-alignment) .dt-right,
.tablepress:where(.auto-type-alignment) .dt-type-date,
.tablepress:where(.auto-type-alignment) .dt-type-numeric {
  text-align: right
}

.dt-container {
  clear: both;
  margin-bottom: 1rem;
  position: relative
}

.dt-container .tablepress {
  margin-bottom: 0
}

.dt-container .dt-layout-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between
}

.dt-container .dt-layout-row.dt-layout-table .dt-layout-cell {
  display: block;
  width: 100%
}

.dt-container .dt-layout-cell {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  padding: 5px 0
}

.dt-container .dt-layout-cell.dt-layout-full {
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.dt-container .dt-layout-cell.dt-layout-full>:only-child {
  margin: auto
}

.dt-container .dt-layout-cell.dt-layout-start {
  align-items: center;
  justify-content: flex-start;
  margin-right: auto
}

.dt-container .dt-layout-cell.dt-layout-end {
  align-items: center;
  justify-content: flex-end;
  margin-left: auto
}

.dt-container .dt-layout-cell:empty {
  display: none
}

.dt-container label {
  display: inline
}

.dt-container .dt-input {
  display: inline;
  font-size: inherit;
  padding: 5px;
  width: auto
}

.dt-container .dt-search {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center
}

.dt-container .dt-paging .dt-paging-button {
  background: #0000;
  border: 1px solid #0000;
  border-radius: 2px;
  box-sizing: border-box;
  color: inherit !important;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  height: 32px;
  margin-left: 2px;
  min-width: 32px;
  padding: 0 5px;
  text-align: center;
  text-decoration: none !important;
  vertical-align: middle
}

.dt-container .dt-paging .dt-paging-button.current,
.dt-container .dt-paging .dt-paging-button:hover {
  border: 1px solid #111
}

.dt-container .dt-paging .dt-paging-button.disabled,
.dt-container .dt-paging .dt-paging-button.disabled:active,
.dt-container .dt-paging .dt-paging-button.disabled:hover {
  border: 1px solid #0000;
  color: #0000004d !important;
  cursor: default;
  outline: none
}

.dt-container .dt-paging>.dt-paging-button:first-child {
  margin-left: 0
}

.dt-container .dt-paging .ellipsis {
  padding: 0 1em
}

@media screen and (max-width:767px) {
  .dt-container .dt-layout-row {
    flex-direction: column
  }

  .dt-container .dt-layout-cell {
    flex-direction: column;
    padding: .5em 0
  }
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

  h1,
  .h1 {
    font-size: 2.5rem;
  }
}

h2,
.h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

  h2,
  .h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

  h3,
  .h3 {
    font-size: 1.75rem;
  }
}

h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

  h4,
  .h4 {
    font-size: 1.5rem;
  }
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  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,
.small {
  font-size: 0.875em;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr
    /* rtl:ignore */
  ;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.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: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote> :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.9375rem);
  padding-left: var(--bs-gutter-x, 0.9375rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 1.875rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row>* {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333%;
}

.row-cols-4>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-sm-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .row-cols-sm-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-md-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .row-cols-md-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-lg-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .row-cols-lg-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xl-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .row-cols-xl-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .row-cols-xxl-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}

.table> :not(caption)>*>* {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
  vertical-align: inherit;
}

.table>thead {
  vertical-align: bottom;
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm> :not(caption)>*>* {
  padding: 0.25rem 0.25rem;
}

.table-bordered> :not(caption)>* {
  border-width: 1px 0;
}

.table-bordered> :not(caption)>*>* {
  border-width: 0 1px;
}

.table-borderless> :not(caption)>*>* {
  border-bottom-width: 0;
}

.table-striped>tbody>tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover>tbody>tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.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;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: #e9ecef;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  -o-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check[disabled]+.btn,
.btn-check:disabled+.btn {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating>label {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-floating>.form-control::-webkit-input-placeholder {
  color: transparent;
}

.form-floating>.form-control::-moz-placeholder {
  color: transparent;
}

.form-floating>.form-control:-ms-input-placeholder {
  color: transparent;
}

.form-floating>.form-control::-ms-input-placeholder {
  color: transparent;
}

.form-floating>.form-control::placeholder {
  color: transparent;
}

.form-floating>.form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating>.form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating>.form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating>.form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>.form-control:not(:-ms-input-placeholder)~label {
  opacity: 0.65;
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating>.form-control:-webkit-autofill~label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control,
.input-group>.form-select {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group>.form-control:focus,
.input-group>.form-select:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text,
.input-group-lg>.btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text,
.input-group-sm>.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation> :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation>.dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip,
.is-valid~.valid-feedback,
.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' 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(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid,
.form-select.is-valid {
  border-color: #198754;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' 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-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
  border-color: #198754;
}

.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
  background-color: #198754;
}

.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid~.form-check-label,
.form-check-input.is-valid~.form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input~.valid-feedback {
  margin-left: .5em;
}

.was-validated .input-group .form-control:valid,
.input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}

.was-validated .input-group .form-control:valid:focus,
.input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip,
.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%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(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%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-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
  background-color: #dc3545;
}

.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input~.invalid-feedback {
  margin-left: .5em;
}

.was-validated .input-group .form-control:invalid,
.input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}

.was-validated .input-group .form-control:invalid:focus,
.input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover {
  color: #212529;
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-primary:disabled,
.btn-primary.disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}

.btn-check:checked+.btn-secondary,
.btn-check:active+.btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}

.btn-check:checked+.btn-secondary:focus,
.btn-check:active+.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}

.btn-secondary:disabled,
.btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}

.btn-check:focus+.btn-success,
.btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}

.btn-check:checked+.btn-success,
.btn-check:active+.btn-success,
.btn-success:active,
.btn-success.active,
.show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}

.btn-check:checked+.btn-success:focus,
.btn-check:active+.btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show>.btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}

.btn-success:disabled,
.btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}

.btn-check:focus+.btn-info,
.btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}

.btn-check:checked+.btn-info,
.btn-check:active+.btn-info,
.btn-info:active,
.btn-info.active,
.show>.btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}

.btn-check:checked+.btn-info:focus,
.btn-check:active+.btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show>.btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}

.btn-info:disabled,
.btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}

.btn-check:checked+.btn-warning,
.btn-check:active+.btn-warning,
.btn-warning:active,
.btn-warning.active,
.show>.btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}

.btn-check:checked+.btn-warning:focus,
.btn-check:active+.btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show>.btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}

.btn-warning:disabled,
.btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}

.btn-check:checked+.btn-danger,
.btn-check:active+.btn-danger,
.btn-danger:active,
.btn-danger.active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}

.btn-check:checked+.btn-danger:focus,
.btn-check:active+.btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show>.btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}

.btn-danger:disabled,
.btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}

.btn-check:focus+.btn-light,
.btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}

.btn-check:checked+.btn-light,
.btn-check:active+.btn-light,
.btn-light:active,
.btn-light.active,
.show>.btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}

.btn-check:checked+.btn-light:focus,
.btn-check:active+.btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show>.btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}

.btn-light:disabled,
.btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}

.btn-check:checked+.btn-dark,
.btn-check:active+.btn-dark,
.btn-dark:active,
.btn-dark.active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}

.btn-check:checked+.btn-dark:focus,
.btn-check:active+.btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}

.btn-dark:disabled,
.btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-check:checked+.btn-outline-primary,
.btn-check:active+.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-check:checked+.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
  color: #0d6efd;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}

.btn-check:checked+.btn-outline-secondary,
.btn-check:active+.btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-check:checked+.btn-outline-secondary:focus,
.btn-check:active+.btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.btn-check:checked+.btn-outline-success,
.btn-check:active+.btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-check:checked+.btn-outline-success:focus,
.btn-check:active+.btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.btn-outline-success:disabled,
.btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}

.btn-check:checked+.btn-outline-info,
.btn-check:active+.btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-check:checked+.btn-outline-info:focus,
.btn-check:active+.btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}

.btn-outline-info:disabled,
.btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:focus+.btn-outline-warning,
.btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

.btn-check:checked+.btn-outline-warning,
.btn-check:active+.btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:checked+.btn-outline-warning:focus,
.btn-check:active+.btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check:focus+.btn-outline-danger,
.btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}

.btn-check:checked+.btn-outline-danger,
.btn-check:active+.btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check:checked+.btn-outline-danger:focus,
.btn-check:active+.btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-check:focus+.btn-outline-light,
.btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}

.btn-check:checked+.btn-outline-light,
.btn-check:active+.btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-check:checked+.btn-outline-light:focus,
.btn-check:active+.btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light:disabled,
.btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}

.btn-check:checked+.btn-outline-dark,
.btn-check:active+.btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-check:checked+.btn-outline-dark:focus,
.btn-check:active+.btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}

.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}

.btn-link:hover {
  color: #0a58ca;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
}

.btn-lg,
.btn-group-lg>.btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm>.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn:hover,
.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn:hover,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group>.btn:not(:first-child),
.btn-group>.btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group>.btn-group:not(:last-child)>.btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group>.btn:nth-child(n + 3),
.btn-group> :not(.btn-check)+.btn,
.btn-group>.btn-group:not(:first-child)>.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm+.dropdown-toggle-split,
.btn-group-sm>.btn+.dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg+.dropdown-toggle-split,
.btn-group-lg>.btn+.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
  width: 100%;
}

.btn-group-vertical>.btn:not(:first-child),
.btn-group-vertical>.btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical>.btn-group:not(:last-child)>.btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn~.btn,
.btn-group-vertical>.btn-group:not(:first-child)>.btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: -webkit-box;
  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: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav-link:hover,
.nav-link:focus {
  color: #0a58ca;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  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 {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill>.nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified>.nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-sm,
.navbar>.container-md,
.navbar>.container-lg,
.navbar>.container-xl,
.navbar>.container-xxl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
  flex-wrap: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -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;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  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, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%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, 0.55);
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%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, 0.55);
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion-button::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/")
    /* rtl: var(--bs-breadcrumb-divider, "/") */
  ;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}

.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}

.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}

.alert-dark .alert-link {
  color: #101214;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

.list-group-numbered>li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  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: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 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: #0d6efd;
  border-color: #0d6efd;
}

.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 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal>.list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal>.list-group-item:last-child {
  border-top-right-radius: 0.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-sm>.list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm>.list-group-item:last-child {
    border-top-right-radius: 0.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-md>.list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md>.list-group-item:last-child {
    border-top-right-radius: 0.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-lg>.list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg>.list-group-item:last-child {
    border-top-right-radius: 0.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xl>.list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl>.list-group-item:last-child {
    border-top-right-radius: 0.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;
  }
}

@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xxl>.list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xxl>.list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xxl>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xxl>.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: #084298;
  background-color: #cfe2ff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}

.btn-close:disabled,
.btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
  filter: invert(1) grayscale(100%) brightness(200%);
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}

.link-primary:hover,
.link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}

.link-secondary:hover,
.link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}

.link-success:hover,
.link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}

.link-info:hover,
.link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}

.link-warning:hover,
.link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}

.link-danger:hover,
.link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}

.link-light:hover,
.link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}

.link-dark:hover,
.link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.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;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !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;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !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;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !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;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -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;
}

.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;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -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;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-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;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -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;
  }

  .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;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -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;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -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;
  }

  .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;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -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;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -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;
  }

  .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;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -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;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -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;
  }

  .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;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -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;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}

/*# sourceMappingURL=bootstrap.css.map */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}

.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

.dtZoom {
  -webkit-animation-name: dtZoom;
  animation-name: dtZoom;
}

@keyframes dtZoom {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 0.2;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
  }
}

@keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px)
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px)
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce
}

.bounce {
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -ms-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@font-face {
  font-display: swap;
  font-family: "flaticon";
  src: url("/wp-content/themes/techkit/assets/fonts/flaticon-techkit/flaticon.ttf?7666655eb52f200cee5dfd7a4def714d") format("truetype"), url("/wp-content/themes/techkit/assets/fonts/flaticon-techkit/flaticon.woff?7666655eb52f200cee5dfd7a4def714d") format("woff"), url("/wp-content/themes/techkit/assets/fonts/flaticon-techkit/flaticon.woff2?7666655eb52f200cee5dfd7a4def714d") format("woff2"), url("/wp-content/themes/techkit/assets/fonts/flaticon-techkit/flaticon.eot?7666655eb52f200cee5dfd7a4def714d#iefix") format("embedded-opentype"), url("/wp-content/themes/techkit/assets/fonts/flaticon-techkit/flaticon.svg?7666655eb52f200cee5dfd7a4def714d#flaticon") format("svg")
}

i[class^=flaticon-]:before,
i[class*=" flaticon-"]:before {
  font-family: flaticon !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.flaticon-next:before {
  content: "\f101"
}

.flaticon-clock:before {
  content: "\f102"
}

.flaticon-phone-call:before {
  content: "\f103"
}

.flaticon-envelope:before {
  content: "\f104"
}

.flaticon-location:before {
  content: "\f105"
}

.flaticon-create:before {
  content: "\f106"
}

.flaticon-management:before {
  content: "\f107"
}

.flaticon-secure-shield:before {
  content: "\f108"
}

.flaticon-analytics:before {
  content: "\f109"
}

.flaticon-client:before {
  content: "\f10a"
}

.flaticon-deadline:before {
  content: "\f10b"
}

.flaticon-settings:before {
  content: "\f10c"
}

.flaticon-tech:before {
  content: "\f10d"
}

.flaticon-team:before {
  content: "\f10e"
}

.flaticon-medal:before {
  content: "\f10f"
}

.flaticon-graphic-design:before {
  content: "\f110"
}

.flaticon-web-development:before {
  content: "\f111"
}

.flaticon-analysis:before {
  content: "\f112"
}

.flaticon-cyber-security:before {
  content: "\f113"
}

.flaticon-website:before {
  content: "\f114"
}

.flaticon-android:before {
  content: "\f115"
}

.flaticon-apple:before {
  content: "\f116"
}

.flaticon-programing:before {
  content: "\f117"
}

.flaticon-smartwatch:before {
  content: "\f118"
}

.flaticon-lifeline-on-a-tv-monitor-screen-of-a-medical-program:before {
  content: "\f119"
}

.flaticon-previous:before {
  content: "\f11a"
}

.flaticon-left-quote:before {
  content: "\f11b"
}

.flaticon-3d-file:before {
  content: "\f11c"
}

.flaticon-coding:before {
  content: "\f11d"
}

.flaticon-code:before {
  content: "\f11e"
}

.flaticon-package:before {
  content: "\f11f"
}

.flaticon-cpu:before {
  content: "\f120"
}

.flaticon-guarantee:before {
  content: "\f121"
}

.flaticon-right-quote:before {
  content: "\f122"
}

.flaticon-link:before {
  content: "\f123"
}

.flaticon-development:before {
  content: "\f124"
}

.flaticon-analysis-1:before {
  content: "\f125"
}

.flaticon-pie-chart:before {
  content: "\f126"
}

.flaticon-hierarchical-structure:before {
  content: "\f127"
}

.flaticon-infrastructure:before {
  content: "\f128"
}

.flaticon-software:before {
  content: "\f129"
}

.flaticon-settings-1:before {
  content: "\f12a"
}

.flaticon-pdf-file:before {
  content: "\f12b"
}

.flaticon-file:before {
  content: "\f12c"
}

.flaticon-menu:before {
  content: "\f12d"
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: .8
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle
}

.mfp-align-top .mfp-container:before {
  display: none
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto
}

.mfp-ajax-cur {
  cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -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-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -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-preloader a:hover {
  color: #fff
}

.mfp-s-ready .mfp-preloader {
  display: none
}

.mfp-s-error .mfp-content {
  display: none
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: .65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1
}

.mfp-close:active {
  top: 1px
}

.mfp-close-btn-in .mfp-close {
  color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap
}

.mfp-arrow {
  position: absolute;
  opacity: .65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
  margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7
}

.mfp-arrow-left {
  left: 0
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
  right: 0
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px
}

.mfp-iframe-holder .mfp-close {
  top: -40px
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #000
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto
}

.mfp-figure {
  line-height: 0
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #444
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px
}

.mfp-figure figure {
  margin: 0
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px
}

.mfp-image-holder .mfp-content {
  max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
  .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
  }
}


.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900)
}

.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-sharp,
.fa-solid,
.fab,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto
}

.fa-classic,
.fa-regular,
.fa-solid,
.far,
.fas {
  font-family: "Font Awesome 6 Free"
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands"
}

.fa-1x {
  font-size: 1em
}

.fa-2x {
  font-size: 2em
}

.fa-3x {
  font-size: 3em
}

.fa-4x {
  font-size: 4em
}

.fa-5x {
  font-size: 5em
}

.fa-6x {
  font-size: 6em
}

.fa-7x {
  font-size: 7em
}

.fa-8x {
  font-size: 8em
}

.fa-9x {
  font-size: 9em
}

.fa-10x {
  font-size: 10em
}

.fa-2xs {
  font-size: .625em;
  line-height: .1em;
  vertical-align: .225em
}

.fa-xs {
  font-size: .75em;
  line-height: .08333em;
  vertical-align: .125em
}

.fa-sm {
  font-size: .875em;
  line-height: .07143em;
  vertical-align: .05357em
}

.fa-lg {
  font-size: 1.25em;
  line-height: .05em;
  vertical-align: -.075em
}

.fa-xl {
  font-size: 1.5em;
  line-height: .04167em;
  vertical-align: -.125em
}

.fa-2xl {
  font-size: 2em;
  line-height: .03125em;
  vertical-align: -.1875em
}

.fa-fw {
  text-align: center;
  width: 1.25em
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0
}

.fa-ul>li {
  position: relative
}

.fa-li {
  left: calc(var(--fa-li-width, 2em)*-1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit
}

.fa-border {
  border-radius: var(--fa-border-radius, .1em);
  border: var(--fa-border-width, .08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
  padding: var(--fa-border-padding, .2em .25em .15em)
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, .3em)
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, .3em)
}

.fa-beat {
  -webkit-animation-name: fa-beat;
  animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
  animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
  animation-timing-function: var(--fa-animation-timing, ease-in-out)
}

.fa-bounce {
  -webkit-animation-name: fa-bounce;
  animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
  animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))
}

.fa-fade {
  -webkit-animation-name: fa-fade;
  animation-name: fa-fade;
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))
}

.fa-beat-fade,
.fa-fade {
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
  animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s)
}

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
  animation-name: fa-beat-fade;
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))
}

.fa-flip {
  -webkit-animation-name: fa-flip;
  animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
  animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
  animation-timing-function: var(--fa-animation-timing, ease-in-out)
}

.fa-shake {
  -webkit-animation-name: fa-shake;
  animation-name: fa-shake;
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear)
}

.fa-shake,
.fa-spin {
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
  animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal)
}

.fa-spin {
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
  animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear)
}

.fa-spin-reverse {
  --fa-animation-direction: reverse
}

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
  animation-timing-function: var(--fa-animation-timing, steps(8))
}

@media (prefers-reduced-motion:reduce) {

  .fa-beat,
  .fa-beat-fade,
  .fa-bounce,
  .fa-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s
  }
}

@-webkit-keyframes fa-beat {

  0%,
  90% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
    transform: scale(var(--fa-beat-scale, 1.25))
  }
}

@keyframes fa-beat {

  0%,
  90% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
    transform: scale(var(--fa-beat-scale, 1.25))
  }
}

@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }

  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0)
  }

  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
    transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))
  }

  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0)
  }

  57% {
    -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
    transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em))
  }

  64% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }

  to {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }
}

@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }

  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0)
  }

  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
    transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))
  }

  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0)
  }

  57% {
    -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
    transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em))
  }

  64% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }

  to {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }
}

@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, .4)
  }
}

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, .4)
  }
}

@-webkit-keyframes fa-beat-fade {

  0%,
  to {
    opacity: var(--fa-beat-fade-opacity, .4);
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
    transform: scale(var(--fa-beat-fade-scale, 1.125))
  }
}

@keyframes fa-beat-fade {

  0%,
  to {
    opacity: var(--fa-beat-fade-opacity, .4);
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
    transform: scale(var(--fa-beat-fade-scale, 1.125))
  }
}

@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg))
  }
}

@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg))
  }
}

@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg)
  }

  4% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

  8%,
  24% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg)
  }

  12%,
  28% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg)
  }

  16% {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg)
  }

  20% {
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg)
  }

  32% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg)
  }

  36% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg)
  }

  40%,
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg)
  }

  4% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

  8%,
  24% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg)
  }

  12%,
  28% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg)
  }

  16% {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg)
  }

  20% {
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg)
  }

  32% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg)
  }

  36% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg)
  }

  40%,
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg)
}

.fa-flip-horizontal {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1)
}

.fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, none));
  transform: rotate(var(--fa-rotate-angle, none))
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto)
}

.fa-stack-1x {
  line-height: inherit
}

.fa-stack-2x {
  font-size: 2em
}

.fa-inverse {
  color: var(--fa-inverse, #fff)
}

.fa-0:before {
  content: "\30"
}

.fa-1:before {
  content: "\31"
}

.fa-2:before {
  content: "\32"
}

.fa-3:before {
  content: "\33"
}

.fa-4:before {
  content: "\34"
}

.fa-5:before {
  content: "\35"
}

.fa-6:before {
  content: "\36"
}

.fa-7:before {
  content: "\37"
}

.fa-8:before {
  content: "\38"
}

.fa-9:before {
  content: "\39"
}

.fa-fill-drip:before {
  content: "\f576"
}

.fa-arrows-to-circle:before {
  content: "\e4bd"
}

.fa-chevron-circle-right:before,
.fa-circle-chevron-right:before {
  content: "\f138"
}

.fa-at:before {
  content: "\40"
}

.fa-trash-alt:before,
.fa-trash-can:before {
  content: "\f2ed"
}

.fa-text-height:before {
  content: "\f034"
}

.fa-user-times:before,
.fa-user-xmark:before {
  content: "\f235"
}

.fa-stethoscope:before {
  content: "\f0f1"
}

.fa-comment-alt:before,
.fa-message:before {
  content: "\f27a"
}

.fa-info:before {
  content: "\f129"
}

.fa-compress-alt:before,
.fa-down-left-and-up-right-to-center:before {
  content: "\f422"
}

.fa-explosion:before {
  content: "\e4e9"
}

.fa-file-alt:before,
.fa-file-lines:before,
.fa-file-text:before {
  content: "\f15c"
}

.fa-wave-square:before {
  content: "\f83e"
}

.fa-ring:before {
  content: "\f70b"
}

.fa-building-un:before {
  content: "\e4d9"
}

.fa-dice-three:before {
  content: "\f527"
}

.fa-calendar-alt:before,
.fa-calendar-days:before {
  content: "\f073"
}

.fa-anchor-circle-check:before {
  content: "\e4aa"
}

.fa-building-circle-arrow-right:before {
  content: "\e4d1"
}

.fa-volleyball-ball:before,
.fa-volleyball:before {
  content: "\f45f"
}

.fa-arrows-up-to-line:before {
  content: "\e4c2"
}

.fa-sort-desc:before,
.fa-sort-down:before {
  content: "\f0dd"
}

.fa-circle-minus:before,
.fa-minus-circle:before {
  content: "\f056"
}

.fa-door-open:before {
  content: "\f52b"
}

.fa-right-from-bracket:before,
.fa-sign-out-alt:before {
  content: "\f2f5"
}

.fa-atom:before {
  content: "\f5d2"
}

.fa-soap:before {
  content: "\e06e"
}

.fa-heart-music-camera-bolt:before,
.fa-icons:before {
  content: "\f86d"
}

.fa-microphone-alt-slash:before,
.fa-microphone-lines-slash:before {
  content: "\f539"
}

.fa-bridge-circle-check:before {
  content: "\e4c9"
}

.fa-pump-medical:before {
  content: "\e06a"
}

.fa-fingerprint:before {
  content: "\f577"
}

.fa-hand-point-right:before {
  content: "\f0a4"
}

.fa-magnifying-glass-location:before,
.fa-search-location:before {
  content: "\f689"
}

.fa-forward-step:before,
.fa-step-forward:before {
  content: "\f051"
}

.fa-face-smile-beam:before,
.fa-smile-beam:before {
  content: "\f5b8"
}

.fa-flag-checkered:before {
  content: "\f11e"
}

.fa-football-ball:before,
.fa-football:before {
  content: "\f44e"
}

.fa-school-circle-exclamation:before {
  content: "\e56c"
}

.fa-crop:before {
  content: "\f125"
}

.fa-angle-double-down:before,
.fa-angles-down:before {
  content: "\f103"
}

.fa-users-rectangle:before {
  content: "\e594"
}

.fa-people-roof:before {
  content: "\e537"
}

.fa-people-line:before {
  content: "\e534"
}

.fa-beer-mug-empty:before,
.fa-beer:before {
  content: "\f0fc"
}

.fa-diagram-predecessor:before {
  content: "\e477"
}

.fa-arrow-up-long:before,
.fa-long-arrow-up:before {
  content: "\f176"
}

.fa-burn:before,
.fa-fire-flame-simple:before {
  content: "\f46a"
}

.fa-male:before,
.fa-person:before {
  content: "\f183"
}

.fa-laptop:before {
  content: "\f109"
}

.fa-file-csv:before {
  content: "\f6dd"
}

.fa-menorah:before {
  content: "\f676"
}

.fa-truck-plane:before {
  content: "\e58f"
}

.fa-record-vinyl:before {
  content: "\f8d9"
}

.fa-face-grin-stars:before,
.fa-grin-stars:before {
  content: "\f587"
}

.fa-bong:before {
  content: "\f55c"
}

.fa-pastafarianism:before,
.fa-spaghetti-monster-flying:before {
  content: "\f67b"
}

.fa-arrow-down-up-across-line:before {
  content: "\e4af"
}

.fa-spoon:before,
.fa-utensil-spoon:before {
  content: "\f2e5"
}

.fa-jar-wheat:before {
  content: "\e517"
}

.fa-envelopes-bulk:before,
.fa-mail-bulk:before {
  content: "\f674"
}

.fa-file-circle-exclamation:before {
  content: "\e4eb"
}

.fa-circle-h:before,
.fa-hospital-symbol:before {
  content: "\f47e"
}

.fa-pager:before {
  content: "\f815"
}

.fa-address-book:before,
.fa-contact-book:before {
  content: "\f2b9"
}

.fa-strikethrough:before {
  content: "\f0cc"
}

.fa-k:before {
  content: "\4b"
}

.fa-landmark-flag:before {
  content: "\e51c"
}

.fa-pencil-alt:before,
.fa-pencil:before {
  content: "\f303"
}

.fa-backward:before {
  content: "\f04a"
}

.fa-caret-right:before {
  content: "\f0da"
}

.fa-comments:before {
  content: "\f086"
}

.fa-file-clipboard:before,
.fa-paste:before {
  content: "\f0ea"
}

.fa-code-pull-request:before {
  content: "\e13c"
}

.fa-clipboard-list:before {
  content: "\f46d"
}

.fa-truck-loading:before,
.fa-truck-ramp-box:before {
  content: "\f4de"
}

.fa-user-check:before {
  content: "\f4fc"
}

.fa-vial-virus:before {
  content: "\e597"
}

.fa-sheet-plastic:before {
  content: "\e571"
}

.fa-blog:before {
  content: "\f781"
}

.fa-user-ninja:before {
  content: "\f504"
}

.fa-person-arrow-up-from-line:before {
  content: "\e539"
}

.fa-scroll-torah:before,
.fa-torah:before {
  content: "\f6a0"
}

.fa-broom-ball:before,
.fa-quidditch-broom-ball:before,
.fa-quidditch:before {
  content: "\f458"
}

.fa-toggle-off:before {
  content: "\f204"
}

.fa-archive:before,
.fa-box-archive:before {
  content: "\f187"
}

.fa-person-drowning:before {
  content: "\e545"
}

.fa-arrow-down-9-1:before,
.fa-sort-numeric-desc:before,
.fa-sort-numeric-down-alt:before {
  content: "\f886"
}

.fa-face-grin-tongue-squint:before,
.fa-grin-tongue-squint:before {
  content: "\f58a"
}

.fa-spray-can:before {
  content: "\f5bd"
}

.fa-truck-monster:before {
  content: "\f63b"
}

.fa-w:before {
  content: "\57"
}

.fa-earth-africa:before,
.fa-globe-africa:before {
  content: "\f57c"
}

.fa-rainbow:before {
  content: "\f75b"
}

.fa-circle-notch:before {
  content: "\f1ce"
}

.fa-tablet-alt:before,
.fa-tablet-screen-button:before {
  content: "\f3fa"
}

.fa-paw:before {
  content: "\f1b0"
}

.fa-cloud:before {
  content: "\f0c2"
}

.fa-trowel-bricks:before {
  content: "\e58a"
}

.fa-face-flushed:before,
.fa-flushed:before {
  content: "\f579"
}

.fa-hospital-user:before {
  content: "\f80d"
}

.fa-tent-arrow-left-right:before {
  content: "\e57f"
}

.fa-gavel:before,
.fa-legal:before {
  content: "\f0e3"
}

.fa-binoculars:before {
  content: "\f1e5"
}

.fa-microphone-slash:before {
  content: "\f131"
}

.fa-box-tissue:before {
  content: "\e05b"
}

.fa-motorcycle:before {
  content: "\f21c"
}

.fa-bell-concierge:before,
.fa-concierge-bell:before {
  content: "\f562"
}

.fa-pen-ruler:before,
.fa-pencil-ruler:before {
  content: "\f5ae"
}

.fa-people-arrows-left-right:before,
.fa-people-arrows:before {
  content: "\e068"
}

.fa-mars-and-venus-burst:before {
  content: "\e523"
}

.fa-caret-square-right:before,
.fa-square-caret-right:before {
  content: "\f152"
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4"
}

.fa-sun-plant-wilt:before {
  content: "\e57a"
}

.fa-toilets-portable:before {
  content: "\e584"
}

.fa-hockey-puck:before {
  content: "\f453"
}

.fa-table:before {
  content: "\f0ce"
}

.fa-magnifying-glass-arrow-right:before {
  content: "\e521"
}

.fa-digital-tachograph:before,
.fa-tachograph-digital:before {
  content: "\f566"
}

.fa-users-slash:before {
  content: "\e073"
}

.fa-clover:before {
  content: "\e139"
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f3e5"
}

.fa-star-and-crescent:before {
  content: "\f699"
}

.fa-house-fire:before {
  content: "\e50c"
}

.fa-minus-square:before,
.fa-square-minus:before {
  content: "\f146"
}

.fa-helicopter:before {
  content: "\f533"
}

.fa-compass:before {
  content: "\f14e"
}

.fa-caret-square-down:before,
.fa-square-caret-down:before {
  content: "\f150"
}

.fa-file-circle-question:before {
  content: "\e4ef"
}

.fa-laptop-code:before {
  content: "\f5fc"
}

.fa-swatchbook:before {
  content: "\f5c3"
}

.fa-prescription-bottle:before {
  content: "\f485"
}

.fa-bars:before,
.fa-navicon:before {
  content: "\f0c9"
}

.fa-people-group:before {
  content: "\e533"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253"
}

.fa-heart-broken:before,
.fa-heart-crack:before {
  content: "\f7a9"
}

.fa-external-link-square-alt:before,
.fa-square-up-right:before {
  content: "\f360"
}

.fa-face-kiss-beam:before,
.fa-kiss-beam:before {
  content: "\f597"
}

.fa-film:before {
  content: "\f008"
}

.fa-ruler-horizontal:before {
  content: "\f547"
}

.fa-people-robbery:before {
  content: "\e536"
}

.fa-lightbulb:before {
  content: "\f0eb"
}

.fa-caret-left:before {
  content: "\f0d9"
}

.fa-circle-exclamation:before,
.fa-exclamation-circle:before {
  content: "\f06a"
}

.fa-school-circle-xmark:before {
  content: "\e56d"
}

.fa-arrow-right-from-bracket:before,
.fa-sign-out:before {
  content: "\f08b"
}

.fa-chevron-circle-down:before,
.fa-circle-chevron-down:before {
  content: "\f13a"
}

.fa-unlock-alt:before,
.fa-unlock-keyhole:before {
  content: "\f13e"
}

.fa-cloud-showers-heavy:before {
  content: "\f740"
}

.fa-headphones-alt:before,
.fa-headphones-simple:before {
  content: "\f58f"
}

.fa-sitemap:before {
  content: "\f0e8"
}

.fa-circle-dollar-to-slot:before,
.fa-donate:before {
  content: "\f4b9"
}

.fa-memory:before {
  content: "\f538"
}

.fa-road-spikes:before {
  content: "\e568"
}

.fa-fire-burner:before {
  content: "\e4f1"
}

.fa-flag:before {
  content: "\f024"
}

.fa-hanukiah:before {
  content: "\f6e6"
}

.fa-feather:before {
  content: "\f52d"
}

.fa-volume-down:before,
.fa-volume-low:before {
  content: "\f027"
}

.fa-comment-slash:before {
  content: "\f4b3"
}

.fa-cloud-sun-rain:before {
  content: "\f743"
}

.fa-compress:before {
  content: "\f066"
}

.fa-wheat-alt:before,
.fa-wheat-awn:before {
  content: "\e2cd"
}

.fa-ankh:before {
  content: "\f644"
}

.fa-hands-holding-child:before {
  content: "\e4fa"
}

.fa-asterisk:before {
  content: "\2a"
}

.fa-check-square:before,
.fa-square-check:before {
  content: "\f14a"
}

.fa-peseta-sign:before {
  content: "\e221"
}

.fa-header:before,
.fa-heading:before {
  content: "\f1dc"
}

.fa-ghost:before {
  content: "\f6e2"
}

.fa-list-squares:before,
.fa-list:before {
  content: "\f03a"
}

.fa-phone-square-alt:before,
.fa-square-phone-flip:before {
  content: "\f87b"
}

.fa-cart-plus:before {
  content: "\f217"
}

.fa-gamepad:before {
  content: "\f11b"
}

.fa-circle-dot:before,
.fa-dot-circle:before {
  content: "\f192"
}

.fa-dizzy:before,
.fa-face-dizzy:before {
  content: "\f567"
}

.fa-egg:before {
  content: "\f7fb"
}

.fa-house-medical-circle-xmark:before {
  content: "\e513"
}

.fa-campground:before {
  content: "\f6bb"
}

.fa-folder-plus:before {
  content: "\f65e"
}

.fa-futbol-ball:before,
.fa-futbol:before,
.fa-soccer-ball:before {
  content: "\f1e3"
}

.fa-paint-brush:before,
.fa-paintbrush:before {
  content: "\f1fc"
}

.fa-lock:before {
  content: "\f023"
}

.fa-gas-pump:before {
  content: "\f52f"
}

.fa-hot-tub-person:before,
.fa-hot-tub:before {
  content: "\f593"
}

.fa-map-location:before,
.fa-map-marked:before {
  content: "\f59f"
}

.fa-house-flood-water:before {
  content: "\e50e"
}

.fa-tree:before {
  content: "\f1bb"
}

.fa-bridge-lock:before {
  content: "\e4cc"
}

.fa-sack-dollar:before {
  content: "\f81d"
}

.fa-edit:before,
.fa-pen-to-square:before {
  content: "\f044"
}

.fa-car-side:before {
  content: "\f5e4"
}

.fa-share-alt:before,
.fa-share-nodes:before {
  content: "\f1e0"
}

.fa-heart-circle-minus:before {
  content: "\e4ff"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252"
}

.fa-microscope:before {
  content: "\f610"
}

.fa-sink:before {
  content: "\e06d"
}

.fa-bag-shopping:before,
.fa-shopping-bag:before {
  content: "\f290"
}

.fa-arrow-down-z-a:before,
.fa-sort-alpha-desc:before,
.fa-sort-alpha-down-alt:before {
  content: "\f881"
}

.fa-mitten:before {
  content: "\f7b5"
}

.fa-person-rays:before {
  content: "\e54d"
}

.fa-users:before {
  content: "\f0c0"
}

.fa-eye-slash:before {
  content: "\f070"
}

.fa-flask-vial:before {
  content: "\e4f3"
}

.fa-hand-paper:before,
.fa-hand:before {
  content: "\f256"
}

.fa-om:before {
  content: "\f679"
}

.fa-worm:before {
  content: "\e599"
}

.fa-house-circle-xmark:before {
  content: "\e50b"
}

.fa-plug:before {
  content: "\f1e6"
}

.fa-chevron-up:before {
  content: "\f077"
}

.fa-hand-spock:before {
  content: "\f259"
}

.fa-stopwatch:before {
  content: "\f2f2"
}

.fa-face-kiss:before,
.fa-kiss:before {
  content: "\f596"
}

.fa-bridge-circle-xmark:before {
  content: "\e4cb"
}

.fa-face-grin-tongue:before,
.fa-grin-tongue:before {
  content: "\f589"
}

.fa-chess-bishop:before {
  content: "\f43a"
}

.fa-face-grin-wink:before,
.fa-grin-wink:before {
  content: "\f58c"
}

.fa-deaf:before,
.fa-deafness:before,
.fa-ear-deaf:before,
.fa-hard-of-hearing:before {
  content: "\f2a4"
}

.fa-road-circle-check:before {
  content: "\e564"
}

.fa-dice-five:before {
  content: "\f523"
}

.fa-rss-square:before,
.fa-square-rss:before {
  content: "\f143"
}

.fa-land-mine-on:before {
  content: "\e51b"
}

.fa-i-cursor:before {
  content: "\f246"
}

.fa-stamp:before {
  content: "\f5bf"
}

.fa-stairs:before {
  content: "\e289"
}

.fa-i:before {
  content: "\49"
}

.fa-hryvnia-sign:before,
.fa-hryvnia:before {
  content: "\f6f2"
}

.fa-pills:before {
  content: "\f484"
}

.fa-face-grin-wide:before,
.fa-grin-alt:before {
  content: "\f581"
}

.fa-tooth:before {
  content: "\f5c9"
}

.fa-v:before {
  content: "\56"
}

.fa-bangladeshi-taka-sign:before {
  content: "\e2e6"
}

.fa-bicycle:before {
  content: "\f206"
}

.fa-rod-asclepius:before,
.fa-rod-snake:before,
.fa-staff-aesculapius:before,
.fa-staff-snake:before {
  content: "\e579"
}

.fa-head-side-cough-slash:before {
  content: "\e062"
}

.fa-ambulance:before,
.fa-truck-medical:before {
  content: "\f0f9"
}

.fa-wheat-awn-circle-exclamation:before {
  content: "\e598"
}

.fa-snowman:before {
  content: "\f7d0"
}

.fa-mortar-pestle:before {
  content: "\f5a7"
}

.fa-road-barrier:before {
  content: "\e562"
}

.fa-school:before {
  content: "\f549"
}

.fa-igloo:before {
  content: "\f7ae"
}

.fa-joint:before {
  content: "\f595"
}

.fa-angle-right:before {
  content: "\f105"
}

.fa-horse:before {
  content: "\f6f0"
}

.fa-q:before {
  content: "\51"
}

.fa-g:before {
  content: "\47"
}

.fa-notes-medical:before {
  content: "\f481"
}

.fa-temperature-2:before,
.fa-temperature-half:before,
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9"
}

.fa-dong-sign:before {
  content: "\e169"
}

.fa-capsules:before {
  content: "\f46b"
}

.fa-poo-bolt:before,
.fa-poo-storm:before {
  content: "\f75a"
}

.fa-face-frown-open:before,
.fa-frown-open:before {
  content: "\f57a"
}

.fa-hand-point-up:before {
  content: "\f0a6"
}

.fa-money-bill:before {
  content: "\f0d6"
}

.fa-bookmark:before {
  content: "\f02e"
}

.fa-align-justify:before {
  content: "\f039"
}

.fa-umbrella-beach:before {
  content: "\f5ca"
}

.fa-helmet-un:before {
  content: "\e503"
}

.fa-bullseye:before {
  content: "\f140"
}

.fa-bacon:before {
  content: "\f7e5"
}

.fa-hand-point-down:before {
  content: "\f0a7"
}

.fa-arrow-up-from-bracket:before {
  content: "\e09a"
}

.fa-folder-blank:before,
.fa-folder:before {
  content: "\f07b"
}

.fa-file-medical-alt:before,
.fa-file-waveform:before {
  content: "\f478"
}

.fa-radiation:before {
  content: "\f7b9"
}

.fa-chart-simple:before {
  content: "\e473"
}

.fa-mars-stroke:before {
  content: "\f229"
}

.fa-vial:before {
  content: "\f492"
}

.fa-dashboard:before,
.fa-gauge-med:before,
.fa-gauge:before,
.fa-tachometer-alt-average:before {
  content: "\f624"
}

.fa-magic-wand-sparkles:before,
.fa-wand-magic-sparkles:before {
  content: "\e2ca"
}

.fa-e:before {
  content: "\45"
}

.fa-pen-alt:before,
.fa-pen-clip:before {
  content: "\f305"
}

.fa-bridge-circle-exclamation:before {
  content: "\e4ca"
}

.fa-user:before {
  content: "\f007"
}

.fa-school-circle-check:before {
  content: "\e56b"
}

.fa-dumpster:before {
  content: "\f793"
}

.fa-shuttle-van:before,
.fa-van-shuttle:before {
  content: "\f5b6"
}

.fa-building-user:before {
  content: "\e4da"
}

.fa-caret-square-left:before,
.fa-square-caret-left:before {
  content: "\f191"
}

.fa-highlighter:before {
  content: "\f591"
}

.fa-key:before {
  content: "\f084"
}

.fa-bullhorn:before {
  content: "\f0a1"
}

.fa-globe:before {
  content: "\f0ac"
}

.fa-synagogue:before {
  content: "\f69b"
}

.fa-person-half-dress:before {
  content: "\e548"
}

.fa-road-bridge:before {
  content: "\e563"
}

.fa-location-arrow:before {
  content: "\f124"
}

.fa-c:before {
  content: "\43"
}

.fa-tablet-button:before {
  content: "\f10a"
}

.fa-building-lock:before {
  content: "\e4d6"
}

.fa-pizza-slice:before {
  content: "\f818"
}

.fa-money-bill-wave:before {
  content: "\f53a"
}

.fa-area-chart:before,
.fa-chart-area:before {
  content: "\f1fe"
}

.fa-house-flag:before {
  content: "\e50d"
}

.fa-person-circle-minus:before {
  content: "\e540"
}

.fa-ban:before,
.fa-cancel:before {
  content: "\f05e"
}

.fa-camera-rotate:before {
  content: "\e0d8"
}

.fa-air-freshener:before,
.fa-spray-can-sparkles:before {
  content: "\f5d0"
}

.fa-star:before {
  content: "\f005"
}

.fa-repeat:before {
  content: "\f363"
}

.fa-cross:before {
  content: "\f654"
}

.fa-box:before {
  content: "\f466"
}

.fa-venus-mars:before {
  content: "\f228"
}

.fa-arrow-pointer:before,
.fa-mouse-pointer:before {
  content: "\f245"
}

.fa-expand-arrows-alt:before,
.fa-maximize:before {
  content: "\f31e"
}

.fa-charging-station:before {
  content: "\f5e7"
}

.fa-shapes:before,
.fa-triangle-circle-square:before {
  content: "\f61f"
}

.fa-random:before,
.fa-shuffle:before {
  content: "\f074"
}

.fa-person-running:before,
.fa-running:before {
  content: "\f70c"
}

.fa-mobile-retro:before {
  content: "\e527"
}

.fa-grip-lines-vertical:before {
  content: "\f7a5"
}

.fa-spider:before {
  content: "\f717"
}

.fa-hands-bound:before {
  content: "\e4f9"
}

.fa-file-invoice-dollar:before {
  content: "\f571"
}

.fa-plane-circle-exclamation:before {
  content: "\e556"
}

.fa-x-ray:before {
  content: "\f497"
}

.fa-spell-check:before {
  content: "\f891"
}

.fa-slash:before {
  content: "\f715"
}

.fa-computer-mouse:before,
.fa-mouse:before {
  content: "\f8cc"
}

.fa-arrow-right-to-bracket:before,
.fa-sign-in:before {
  content: "\f090"
}

.fa-shop-slash:before,
.fa-store-alt-slash:before {
  content: "\e070"
}

.fa-server:before {
  content: "\f233"
}

.fa-virus-covid-slash:before {
  content: "\e4a9"
}

.fa-shop-lock:before {
  content: "\e4a5"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251"
}

.fa-blender-phone:before {
  content: "\f6b6"
}

.fa-building-wheat:before {
  content: "\e4db"
}

.fa-person-breastfeeding:before {
  content: "\e53a"
}

.fa-right-to-bracket:before,
.fa-sign-in-alt:before {
  content: "\f2f6"
}

.fa-venus:before {
  content: "\f221"
}

.fa-passport:before {
  content: "\f5ab"
}

.fa-heart-pulse:before,
.fa-heartbeat:before {
  content: "\f21e"
}

.fa-people-carry-box:before,
.fa-people-carry:before {
  content: "\f4ce"
}

.fa-temperature-high:before {
  content: "\f769"
}

.fa-microchip:before {
  content: "\f2db"
}

.fa-crown:before {
  content: "\f521"
}

.fa-weight-hanging:before {
  content: "\f5cd"
}

.fa-xmarks-lines:before {
  content: "\e59a"
}

.fa-file-prescription:before {
  content: "\f572"
}

.fa-weight-scale:before,
.fa-weight:before {
  content: "\f496"
}

.fa-user-friends:before,
.fa-user-group:before {
  content: "\f500"
}

.fa-arrow-up-a-z:before,
.fa-sort-alpha-up:before {
  content: "\f15e"
}

.fa-chess-knight:before {
  content: "\f441"
}

.fa-face-laugh-squint:before,
.fa-laugh-squint:before {
  content: "\f59b"
}

.fa-wheelchair:before {
  content: "\f193"
}

.fa-arrow-circle-up:before,
.fa-circle-arrow-up:before {
  content: "\f0aa"
}

.fa-toggle-on:before {
  content: "\f205"
}

.fa-person-walking:before,
.fa-walking:before {
  content: "\f554"
}

.fa-l:before {
  content: "\4c"
}

.fa-fire:before {
  content: "\f06d"
}

.fa-bed-pulse:before,
.fa-procedures:before {
  content: "\f487"
}

.fa-shuttle-space:before,
.fa-space-shuttle:before {
  content: "\f197"
}

.fa-face-laugh:before,
.fa-laugh:before {
  content: "\f599"
}

.fa-folder-open:before {
  content: "\f07c"
}

.fa-heart-circle-plus:before {
  content: "\e500"
}

.fa-code-fork:before {
  content: "\e13b"
}

.fa-city:before {
  content: "\f64f"
}

.fa-microphone-alt:before,
.fa-microphone-lines:before {
  content: "\f3c9"
}

.fa-pepper-hot:before {
  content: "\f816"
}

.fa-unlock:before {
  content: "\f09c"
}

.fa-colon-sign:before {
  content: "\e140"
}

.fa-headset:before {
  content: "\f590"
}

.fa-store-slash:before {
  content: "\e071"
}

.fa-road-circle-xmark:before {
  content: "\e566"
}

.fa-user-minus:before {
  content: "\f503"
}

.fa-mars-stroke-up:before,
.fa-mars-stroke-v:before {
  content: "\f22a"
}

.fa-champagne-glasses:before,
.fa-glass-cheers:before {
  content: "\f79f"
}

.fa-clipboard:before {
  content: "\f328"
}

.fa-house-circle-exclamation:before {
  content: "\e50a"
}

.fa-file-arrow-up:before,
.fa-file-upload:before {
  content: "\f574"
}

.fa-wifi-3:before,
.fa-wifi-strong:before,
.fa-wifi:before {
  content: "\f1eb"
}

.fa-bath:before,
.fa-bathtub:before {
  content: "\f2cd"
}

.fa-underline:before {
  content: "\f0cd"
}

.fa-user-edit:before,
.fa-user-pen:before {
  content: "\f4ff"
}

.fa-signature:before {
  content: "\f5b7"
}

.fa-stroopwafel:before {
  content: "\f551"
}

.fa-bold:before {
  content: "\f032"
}

.fa-anchor-lock:before {
  content: "\e4ad"
}

.fa-building-ngo:before {
  content: "\e4d7"
}

.fa-manat-sign:before {
  content: "\e1d5"
}

.fa-not-equal:before {
  content: "\f53e"
}

.fa-border-style:before,
.fa-border-top-left:before {
  content: "\f853"
}

.fa-map-location-dot:before,
.fa-map-marked-alt:before {
  content: "\f5a0"
}

.fa-jedi:before {
  content: "\f669"
}

.fa-poll:before,
.fa-square-poll-vertical:before {
  content: "\f681"
}

.fa-mug-hot:before {
  content: "\f7b6"
}

.fa-battery-car:before,
.fa-car-battery:before {
  content: "\f5df"
}

.fa-gift:before {
  content: "\f06b"
}

.fa-dice-two:before {
  content: "\f528"
}

.fa-chess-queen:before {
  content: "\f445"
}

.fa-glasses:before {
  content: "\f530"
}

.fa-chess-board:before {
  content: "\f43c"
}

.fa-building-circle-check:before {
  content: "\e4d2"
}

.fa-person-chalkboard:before {
  content: "\e53d"
}

.fa-mars-stroke-h:before,
.fa-mars-stroke-right:before {
  content: "\f22b"
}

.fa-hand-back-fist:before,
.fa-hand-rock:before {
  content: "\f255"
}

.fa-caret-square-up:before,
.fa-square-caret-up:before {
  content: "\f151"
}

.fa-cloud-showers-water:before {
  content: "\e4e4"
}

.fa-bar-chart:before,
.fa-chart-bar:before {
  content: "\f080"
}

.fa-hands-bubbles:before,
.fa-hands-wash:before {
  content: "\e05e"
}

.fa-less-than-equal:before {
  content: "\f537"
}

.fa-train:before {
  content: "\f238"
}

.fa-eye-low-vision:before,
.fa-low-vision:before {
  content: "\f2a8"
}

.fa-crow:before {
  content: "\f520"
}

.fa-sailboat:before {
  content: "\e445"
}

.fa-window-restore:before {
  content: "\f2d2"
}

.fa-plus-square:before,
.fa-square-plus:before {
  content: "\f0fe"
}

.fa-torii-gate:before {
  content: "\f6a1"
}

.fa-frog:before {
  content: "\f52e"
}

.fa-bucket:before {
  content: "\e4cf"
}

.fa-image:before {
  content: "\f03e"
}

.fa-microphone:before {
  content: "\f130"
}

.fa-cow:before {
  content: "\f6c8"
}

.fa-caret-up:before {
  content: "\f0d8"
}

.fa-screwdriver:before {
  content: "\f54a"
}

.fa-folder-closed:before {
  content: "\e185"
}

.fa-house-tsunami:before {
  content: "\e515"
}

.fa-square-nfi:before {
  content: "\e576"
}

.fa-arrow-up-from-ground-water:before {
  content: "\e4b5"
}

.fa-glass-martini-alt:before,
.fa-martini-glass:before {
  content: "\f57b"
}

.fa-rotate-back:before,
.fa-rotate-backward:before,
.fa-rotate-left:before,
.fa-undo-alt:before {
  content: "\f2ea"
}

.fa-columns:before,
.fa-table-columns:before {
  content: "\f0db"
}

.fa-lemon:before {
  content: "\f094"
}

.fa-head-side-mask:before {
  content: "\e063"
}

.fa-handshake:before {
  content: "\f2b5"
}

.fa-gem:before {
  content: "\f3a5"
}

.fa-dolly-box:before,
.fa-dolly:before {
  content: "\f472"
}

.fa-smoking:before {
  content: "\f48d"
}

.fa-compress-arrows-alt:before,
.fa-minimize:before {
  content: "\f78c"
}

.fa-monument:before {
  content: "\f5a6"
}

.fa-snowplow:before {
  content: "\f7d2"
}

.fa-angle-double-right:before,
.fa-angles-right:before {
  content: "\f101"
}

.fa-cannabis:before {
  content: "\f55f"
}

.fa-circle-play:before,
.fa-play-circle:before {
  content: "\f144"
}

.fa-tablets:before {
  content: "\f490"
}

.fa-ethernet:before {
  content: "\f796"
}

.fa-eur:before,
.fa-euro-sign:before,
.fa-euro:before {
  content: "\f153"
}

.fa-chair:before {
  content: "\f6c0"
}

.fa-check-circle:before,
.fa-circle-check:before {
  content: "\f058"
}

.fa-circle-stop:before,
.fa-stop-circle:before {
  content: "\f28d"
}

.fa-compass-drafting:before,
.fa-drafting-compass:before {
  content: "\f568"
}

.fa-plate-wheat:before {
  content: "\e55a"
}

.fa-icicles:before {
  content: "\f7ad"
}

.fa-person-shelter:before {
  content: "\e54f"
}

.fa-neuter:before {
  content: "\f22c"
}

.fa-id-badge:before {
  content: "\f2c1"
}

.fa-marker:before {
  content: "\f5a1"
}

.fa-face-laugh-beam:before,
.fa-laugh-beam:before {
  content: "\f59a"
}

.fa-helicopter-symbol:before {
  content: "\e502"
}

.fa-universal-access:before {
  content: "\f29a"
}

.fa-chevron-circle-up:before,
.fa-circle-chevron-up:before {
  content: "\f139"
}

.fa-lari-sign:before {
  content: "\e1c8"
}

.fa-volcano:before {
  content: "\f770"
}

.fa-person-walking-dashed-line-arrow-right:before {
  content: "\e553"
}

.fa-gbp:before,
.fa-pound-sign:before,
.fa-sterling-sign:before {
  content: "\f154"
}

.fa-viruses:before {
  content: "\e076"
}

.fa-square-person-confined:before {
  content: "\e577"
}

.fa-user-tie:before {
  content: "\f508"
}

.fa-arrow-down-long:before,
.fa-long-arrow-down:before {
  content: "\f175"
}

.fa-tent-arrow-down-to-line:before {
  content: "\e57e"
}

.fa-certificate:before {
  content: "\f0a3"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122"
}

.fa-suitcase:before {
  content: "\f0f2"
}

.fa-person-skating:before,
.fa-skating:before {
  content: "\f7c5"
}

.fa-filter-circle-dollar:before,
.fa-funnel-dollar:before {
  content: "\f662"
}

.fa-camera-retro:before {
  content: "\f083"
}

.fa-arrow-circle-down:before,
.fa-circle-arrow-down:before {
  content: "\f0ab"
}

.fa-arrow-right-to-file:before,
.fa-file-import:before {
  content: "\f56f"
}

.fa-external-link-square:before,
.fa-square-arrow-up-right:before {
  content: "\f14c"
}

.fa-box-open:before {
  content: "\f49e"
}

.fa-scroll:before {
  content: "\f70e"
}

.fa-spa:before {
  content: "\f5bb"
}

.fa-location-pin-lock:before {
  content: "\e51f"
}

.fa-pause:before {
  content: "\f04c"
}

.fa-hill-avalanche:before {
  content: "\e507"
}

.fa-temperature-0:before,
.fa-temperature-empty:before,
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb"
}

.fa-bomb:before {
  content: "\f1e2"
}

.fa-registered:before {
  content: "\f25d"
}

.fa-address-card:before,
.fa-contact-card:before,
.fa-vcard:before {
  content: "\f2bb"
}

.fa-balance-scale-right:before,
.fa-scale-unbalanced-flip:before {
  content: "\f516"
}

.fa-subscript:before {
  content: "\f12c"
}

.fa-diamond-turn-right:before,
.fa-directions:before {
  content: "\f5eb"
}

.fa-burst:before {
  content: "\e4dc"
}

.fa-house-laptop:before,
.fa-laptop-house:before {
  content: "\e066"
}

.fa-face-tired:before,
.fa-tired:before {
  content: "\f5c8"
}

.fa-money-bills:before {
  content: "\e1f3"
}

.fa-smog:before {
  content: "\f75f"
}

.fa-crutch:before {
  content: "\f7f7"
}

.fa-cloud-arrow-up:before,
.fa-cloud-upload-alt:before,
.fa-cloud-upload:before {
  content: "\f0ee"
}

.fa-palette:before {
  content: "\f53f"
}

.fa-arrows-turn-right:before {
  content: "\e4c0"
}

.fa-vest:before {
  content: "\e085"
}

.fa-ferry:before {
  content: "\e4ea"
}

.fa-arrows-down-to-people:before {
  content: "\e4b9"
}

.fa-seedling:before,
.fa-sprout:before {
  content: "\f4d8"
}

.fa-arrows-alt-h:before,
.fa-left-right:before {
  content: "\f337"
}

.fa-boxes-packing:before {
  content: "\e4c7"
}

.fa-arrow-circle-left:before,
.fa-circle-arrow-left:before {
  content: "\f0a8"
}

.fa-group-arrows-rotate:before {
  content: "\e4f6"
}

.fa-bowl-food:before {
  content: "\e4c6"
}

.fa-candy-cane:before {
  content: "\f786"
}

.fa-arrow-down-wide-short:before,
.fa-sort-amount-asc:before,
.fa-sort-amount-down:before {
  content: "\f160"
}

.fa-cloud-bolt:before,
.fa-thunderstorm:before {
  content: "\f76c"
}

.fa-remove-format:before,
.fa-text-slash:before {
  content: "\f87d"
}

.fa-face-smile-wink:before,
.fa-smile-wink:before {
  content: "\f4da"
}

.fa-file-word:before {
  content: "\f1c2"
}

.fa-file-powerpoint:before {
  content: "\f1c4"
}

.fa-arrows-h:before,
.fa-arrows-left-right:before {
  content: "\f07e"
}

.fa-house-lock:before {
  content: "\e510"
}

.fa-cloud-arrow-down:before,
.fa-cloud-download-alt:before,
.fa-cloud-download:before {
  content: "\f0ed"
}

.fa-children:before {
  content: "\e4e1"
}

.fa-blackboard:before,
.fa-chalkboard:before {
  content: "\f51b"
}

.fa-user-alt-slash:before,
.fa-user-large-slash:before {
  content: "\f4fa"
}

.fa-envelope-open:before {
  content: "\f2b6"
}

.fa-handshake-alt-slash:before,
.fa-handshake-simple-slash:before {
  content: "\e05f"
}

.fa-mattress-pillow:before {
  content: "\e525"
}

.fa-guarani-sign:before {
  content: "\e19a"
}

.fa-arrows-rotate:before,
.fa-refresh:before,
.fa-sync:before {
  content: "\f021"
}

.fa-fire-extinguisher:before {
  content: "\f134"
}

.fa-cruzeiro-sign:before {
  content: "\e152"
}

.fa-greater-than-equal:before {
  content: "\f532"
}

.fa-shield-alt:before,
.fa-shield-halved:before {
  content: "\f3ed"
}

.fa-atlas:before,
.fa-book-atlas:before {
  content: "\f558"
}

.fa-virus:before {
  content: "\e074"
}

.fa-envelope-circle-check:before {
  content: "\e4e8"
}

.fa-layer-group:before {
  content: "\f5fd"
}

.fa-arrows-to-dot:before {
  content: "\e4be"
}

.fa-archway:before {
  content: "\f557"
}

.fa-heart-circle-check:before {
  content: "\e4fd"
}

.fa-house-chimney-crack:before,
.fa-house-damage:before {
  content: "\f6f1"
}

.fa-file-archive:before,
.fa-file-zipper:before {
  content: "\f1c6"
}

.fa-square:before {
  content: "\f0c8"
}

.fa-glass-martini:before,
.fa-martini-glass-empty:before {
  content: "\f000"
}

.fa-couch:before {
  content: "\f4b8"
}

.fa-cedi-sign:before {
  content: "\e0df"
}

.fa-italic:before {
  content: "\f033"
}

.fa-church:before {
  content: "\f51d"
}

.fa-comments-dollar:before {
  content: "\f653"
}

.fa-democrat:before {
  content: "\f747"
}

.fa-z:before {
  content: "\5a"
}

.fa-person-skiing:before,
.fa-skiing:before {
  content: "\f7c9"
}

.fa-road-lock:before {
  content: "\e567"
}

.fa-a:before {
  content: "\41"
}

.fa-temperature-arrow-down:before,
.fa-temperature-down:before {
  content: "\e03f"
}

.fa-feather-alt:before,
.fa-feather-pointed:before {
  content: "\f56b"
}

.fa-p:before {
  content: "\50"
}

.fa-snowflake:before {
  content: "\f2dc"
}

.fa-newspaper:before {
  content: "\f1ea"
}

.fa-ad:before,
.fa-rectangle-ad:before {
  content: "\f641"
}

.fa-arrow-circle-right:before,
.fa-circle-arrow-right:before {
  content: "\f0a9"
}

.fa-filter-circle-xmark:before {
  content: "\e17b"
}

.fa-locust:before {
  content: "\e520"
}

.fa-sort:before,
.fa-unsorted:before {
  content: "\f0dc"
}

.fa-list-1-2:before,
.fa-list-numeric:before,
.fa-list-ol:before {
  content: "\f0cb"
}

.fa-person-dress-burst:before {
  content: "\e544"
}

.fa-money-check-alt:before,
.fa-money-check-dollar:before {
  content: "\f53d"
}

.fa-vector-square:before {
  content: "\f5cb"
}

.fa-bread-slice:before {
  content: "\f7ec"
}

.fa-language:before {
  content: "\f1ab"
}

.fa-face-kiss-wink-heart:before,
.fa-kiss-wink-heart:before {
  content: "\f598"
}

.fa-filter:before {
  content: "\f0b0"
}

.fa-question:before {
  content: "\3f"
}

.fa-file-signature:before {
  content: "\f573"
}

.fa-arrows-alt:before,
.fa-up-down-left-right:before {
  content: "\f0b2"
}

.fa-house-chimney-user:before {
  content: "\e065"
}

.fa-hand-holding-heart:before {
  content: "\f4be"
}

.fa-puzzle-piece:before {
  content: "\f12e"
}

.fa-money-check:before {
  content: "\f53c"
}

.fa-star-half-alt:before,
.fa-star-half-stroke:before {
  content: "\f5c0"
}

.fa-code:before {
  content: "\f121"
}

.fa-glass-whiskey:before,
.fa-whiskey-glass:before {
  content: "\f7a0"
}

.fa-building-circle-exclamation:before {
  content: "\e4d3"
}

.fa-magnifying-glass-chart:before {
  content: "\e522"
}

.fa-arrow-up-right-from-square:before,
.fa-external-link:before {
  content: "\f08e"
}

.fa-cubes-stacked:before {
  content: "\e4e6"
}

.fa-krw:before,
.fa-won-sign:before,
.fa-won:before {
  content: "\f159"
}

.fa-virus-covid:before {
  content: "\e4a8"
}

.fa-austral-sign:before {
  content: "\e0a9"
}

.fa-f:before {
  content: "\46"
}

.fa-leaf:before {
  content: "\f06c"
}

.fa-road:before {
  content: "\f018"
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba"
}

.fa-person-circle-plus:before {
  content: "\e541"
}

.fa-chart-pie:before,
.fa-pie-chart:before {
  content: "\f200"
}

.fa-bolt-lightning:before {
  content: "\e0b7"
}

.fa-sack-xmark:before {
  content: "\e56a"
}

.fa-file-excel:before {
  content: "\f1c3"
}

.fa-file-contract:before {
  content: "\f56c"
}

.fa-fish-fins:before {
  content: "\e4f2"
}

.fa-building-flag:before {
  content: "\e4d5"
}

.fa-face-grin-beam:before,
.fa-grin-beam:before {
  content: "\f582"
}

.fa-object-ungroup:before {
  content: "\f248"
}

.fa-poop:before {
  content: "\f619"
}

.fa-location-pin:before,
.fa-map-marker:before {
  content: "\f041"
}

.fa-kaaba:before {
  content: "\f66b"
}

.fa-toilet-paper:before {
  content: "\f71e"
}

.fa-hard-hat:before,
.fa-hat-hard:before,
.fa-helmet-safety:before {
  content: "\f807"
}

.fa-eject:before {
  content: "\f052"
}

.fa-arrow-alt-circle-right:before,
.fa-circle-right:before {
  content: "\f35a"
}

.fa-plane-circle-check:before {
  content: "\e555"
}

.fa-face-rolling-eyes:before,
.fa-meh-rolling-eyes:before {
  content: "\f5a5"
}

.fa-object-group:before {
  content: "\f247"
}

.fa-chart-line:before,
.fa-line-chart:before {
  content: "\f201"
}

.fa-mask-ventilator:before {
  content: "\e524"
}

.fa-arrow-right:before {
  content: "\f061"
}

.fa-map-signs:before,
.fa-signs-post:before {
  content: "\f277"
}

.fa-cash-register:before {
  content: "\f788"
}

.fa-person-circle-question:before {
  content: "\e542"
}

.fa-h:before {
  content: "\48"
}

.fa-tarp:before {
  content: "\e57b"
}

.fa-screwdriver-wrench:before,
.fa-tools:before {
  content: "\f7d9"
}

.fa-arrows-to-eye:before {
  content: "\e4bf"
}

.fa-plug-circle-bolt:before {
  content: "\e55b"
}

.fa-heart:before {
  content: "\f004"
}

.fa-mars-and-venus:before {
  content: "\f224"
}

.fa-home-user:before,
.fa-house-user:before {
  content: "\e1b0"
}

.fa-dumpster-fire:before {
  content: "\f794"
}

.fa-house-crack:before {
  content: "\e3b1"
}

.fa-cocktail:before,
.fa-martini-glass-citrus:before {
  content: "\f561"
}

.fa-face-surprise:before,
.fa-surprise:before {
  content: "\f5c2"
}

.fa-bottle-water:before {
  content: "\e4c5"
}

.fa-circle-pause:before,
.fa-pause-circle:before {
  content: "\f28b"
}

.fa-toilet-paper-slash:before {
  content: "\e072"
}

.fa-apple-alt:before,
.fa-apple-whole:before {
  content: "\f5d1"
}

.fa-kitchen-set:before {
  content: "\e51a"
}

.fa-r:before {
  content: "\52"
}

.fa-temperature-1:before,
.fa-temperature-quarter:before,
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca"
}

.fa-cube:before {
  content: "\f1b2"
}

.fa-bitcoin-sign:before {
  content: "\e0b4"
}

.fa-shield-dog:before {
  content: "\e573"
}

.fa-solar-panel:before {
  content: "\f5ba"
}

.fa-lock-open:before {
  content: "\f3c1"
}

.fa-elevator:before {
  content: "\e16d"
}

.fa-money-bill-transfer:before {
  content: "\e528"
}

.fa-money-bill-trend-up:before {
  content: "\e529"
}

.fa-house-flood-water-circle-arrow-right:before {
  content: "\e50f"
}

.fa-poll-h:before,
.fa-square-poll-horizontal:before {
  content: "\f682"
}

.fa-circle:before {
  content: "\f111"
}

.fa-backward-fast:before,
.fa-fast-backward:before {
  content: "\f049"
}

.fa-recycle:before {
  content: "\f1b8"
}

.fa-user-astronaut:before {
  content: "\f4fb"
}

.fa-plane-slash:before {
  content: "\e069"
}

.fa-trademark:before {
  content: "\f25c"
}

.fa-basketball-ball:before,
.fa-basketball:before {
  content: "\f434"
}

.fa-satellite-dish:before {
  content: "\f7c0"
}

.fa-arrow-alt-circle-up:before,
.fa-circle-up:before {
  content: "\f35b"
}

.fa-mobile-alt:before,
.fa-mobile-screen-button:before {
  content: "\f3cd"
}

.fa-volume-high:before,
.fa-volume-up:before {
  content: "\f028"
}

.fa-users-rays:before {
  content: "\e593"
}

.fa-wallet:before {
  content: "\f555"
}

.fa-clipboard-check:before {
  content: "\f46c"
}

.fa-file-audio:before {
  content: "\f1c7"
}

.fa-burger:before,
.fa-hamburger:before {
  content: "\f805"
}

.fa-wrench:before {
  content: "\f0ad"
}

.fa-bugs:before {
  content: "\e4d0"
}

.fa-rupee-sign:before,
.fa-rupee:before {
  content: "\f156"
}

.fa-file-image:before {
  content: "\f1c5"
}

.fa-circle-question:before,
.fa-question-circle:before {
  content: "\f059"
}

.fa-plane-departure:before {
  content: "\f5b0"
}

.fa-handshake-slash:before {
  content: "\e060"
}

.fa-book-bookmark:before {
  content: "\e0bb"
}

.fa-code-branch:before {
  content: "\f126"
}

.fa-hat-cowboy:before {
  content: "\f8c0"
}

.fa-bridge:before {
  content: "\e4c8"
}

.fa-phone-alt:before,
.fa-phone-flip:before {
  content: "\f879"
}

.fa-truck-front:before {
  content: "\e2b7"
}

.fa-cat:before {
  content: "\f6be"
}

.fa-anchor-circle-exclamation:before {
  content: "\e4ab"
}

.fa-truck-field:before {
  content: "\e58d"
}

.fa-route:before {
  content: "\f4d7"
}

.fa-clipboard-question:before {
  content: "\e4e3"
}

.fa-panorama:before {
  content: "\e209"
}

.fa-comment-medical:before {
  content: "\f7f5"
}

.fa-teeth-open:before {
  content: "\f62f"
}

.fa-file-circle-minus:before {
  content: "\e4ed"
}

.fa-tags:before {
  content: "\f02c"
}

.fa-wine-glass:before {
  content: "\f4e3"
}

.fa-fast-forward:before,
.fa-forward-fast:before {
  content: "\f050"
}

.fa-face-meh-blank:before,
.fa-meh-blank:before {
  content: "\f5a4"
}

.fa-parking:before,
.fa-square-parking:before {
  content: "\f540"
}

.fa-house-signal:before {
  content: "\e012"
}

.fa-bars-progress:before,
.fa-tasks-alt:before {
  content: "\f828"
}

.fa-faucet-drip:before {
  content: "\e006"
}

.fa-cart-flatbed:before,
.fa-dolly-flatbed:before {
  content: "\f474"
}

.fa-ban-smoking:before,
.fa-smoking-ban:before {
  content: "\f54d"
}

.fa-terminal:before {
  content: "\f120"
}

.fa-mobile-button:before {
  content: "\f10b"
}

.fa-house-medical-flag:before {
  content: "\e514"
}

.fa-basket-shopping:before,
.fa-shopping-basket:before {
  content: "\f291"
}

.fa-tape:before {
  content: "\f4db"
}

.fa-bus-alt:before,
.fa-bus-simple:before {
  content: "\f55e"
}

.fa-eye:before {
  content: "\f06e"
}

.fa-face-sad-cry:before,
.fa-sad-cry:before {
  content: "\f5b3"
}

.fa-audio-description:before {
  content: "\f29e"
}

.fa-person-military-to-person:before {
  content: "\e54c"
}

.fa-file-shield:before {
  content: "\e4f0"
}

.fa-user-slash:before {
  content: "\f506"
}

.fa-pen:before {
  content: "\f304"
}

.fa-tower-observation:before {
  content: "\e586"
}

.fa-file-code:before {
  content: "\f1c9"
}

.fa-signal-5:before,
.fa-signal-perfect:before,
.fa-signal:before {
  content: "\f012"
}

.fa-bus:before {
  content: "\f207"
}

.fa-heart-circle-xmark:before {
  content: "\e501"
}

.fa-home-lg:before,
.fa-house-chimney:before {
  content: "\e3af"
}

.fa-window-maximize:before {
  content: "\f2d0"
}

.fa-face-frown:before,
.fa-frown:before {
  content: "\f119"
}

.fa-prescription:before {
  content: "\f5b1"
}

.fa-shop:before,
.fa-store-alt:before {
  content: "\f54f"
}

.fa-floppy-disk:before,
.fa-save:before {
  content: "\f0c7"
}

.fa-vihara:before {
  content: "\f6a7"
}

.fa-balance-scale-left:before,
.fa-scale-unbalanced:before {
  content: "\f515"
}

.fa-sort-asc:before,
.fa-sort-up:before {
  content: "\f0de"
}

.fa-comment-dots:before,
.fa-commenting:before {
  content: "\f4ad"
}

.fa-plant-wilt:before {
  content: "\e5aa"
}

.fa-diamond:before {
  content: "\f219"
}

.fa-face-grin-squint:before,
.fa-grin-squint:before {
  content: "\f585"
}

.fa-hand-holding-dollar:before,
.fa-hand-holding-usd:before {
  content: "\f4c0"
}

.fa-bacterium:before {
  content: "\e05a"
}

.fa-hand-pointer:before {
  content: "\f25a"
}

.fa-drum-steelpan:before {
  content: "\f56a"
}

.fa-hand-scissors:before {
  content: "\f257"
}

.fa-hands-praying:before,
.fa-praying-hands:before {
  content: "\f684"
}

.fa-arrow-right-rotate:before,
.fa-arrow-rotate-forward:before,
.fa-arrow-rotate-right:before,
.fa-redo:before {
  content: "\f01e"
}

.fa-biohazard:before {
  content: "\f780"
}

.fa-location-crosshairs:before,
.fa-location:before {
  content: "\f601"
}

.fa-mars-double:before {
  content: "\f227"
}

.fa-child-dress:before {
  content: "\e59c"
}

.fa-users-between-lines:before {
  content: "\e591"
}

.fa-lungs-virus:before {
  content: "\e067"
}

.fa-face-grin-tears:before,
.fa-grin-tears:before {
  content: "\f588"
}

.fa-phone:before {
  content: "\f095"
}

.fa-calendar-times:before,
.fa-calendar-xmark:before {
  content: "\f273"
}

.fa-child-reaching:before {
  content: "\e59d"
}

.fa-head-side-virus:before {
  content: "\e064"
}

.fa-user-cog:before,
.fa-user-gear:before {
  content: "\f4fe"
}

.fa-arrow-up-1-9:before,
.fa-sort-numeric-up:before {
  content: "\f163"
}

.fa-door-closed:before {
  content: "\f52a"
}

.fa-shield-virus:before {
  content: "\e06c"
}

.fa-dice-six:before {
  content: "\f526"
}

.fa-mosquito-net:before {
  content: "\e52c"
}

.fa-bridge-water:before {
  content: "\e4ce"
}

.fa-person-booth:before {
  content: "\f756"
}

.fa-text-width:before {
  content: "\f035"
}

.fa-hat-wizard:before {
  content: "\f6e8"
}

.fa-pen-fancy:before {
  content: "\f5ac"
}

.fa-digging:before,
.fa-person-digging:before {
  content: "\f85e"
}

.fa-trash:before {
  content: "\f1f8"
}

.fa-gauge-simple-med:before,
.fa-gauge-simple:before,
.fa-tachometer-average:before {
  content: "\f629"
}

.fa-book-medical:before {
  content: "\f7e6"
}

.fa-poo:before {
  content: "\f2fe"
}

.fa-quote-right-alt:before,
.fa-quote-right:before {
  content: "\f10e"
}

.fa-shirt:before,
.fa-t-shirt:before,
.fa-tshirt:before {
  content: "\f553"
}

.fa-cubes:before {
  content: "\f1b3"
}

.fa-divide:before {
  content: "\f529"
}

.fa-tenge-sign:before,
.fa-tenge:before {
  content: "\f7d7"
}

.fa-headphones:before {
  content: "\f025"
}

.fa-hands-holding:before {
  content: "\f4c2"
}

.fa-hands-clapping:before {
  content: "\e1a8"
}

.fa-republican:before {
  content: "\f75e"
}

.fa-arrow-left:before {
  content: "\f060"
}

.fa-person-circle-xmark:before {
  content: "\e543"
}

.fa-ruler:before {
  content: "\f545"
}

.fa-align-left:before {
  content: "\f036"
}

.fa-dice-d6:before {
  content: "\f6d1"
}

.fa-restroom:before {
  content: "\f7bd"
}

.fa-j:before {
  content: "\4a"
}

.fa-users-viewfinder:before {
  content: "\e595"
}

.fa-file-video:before {
  content: "\f1c8"
}

.fa-external-link-alt:before,
.fa-up-right-from-square:before {
  content: "\f35d"
}

.fa-table-cells:before,
.fa-th:before {
  content: "\f00a"
}

.fa-file-pdf:before {
  content: "\f1c1"
}

.fa-bible:before,
.fa-book-bible:before {
  content: "\f647"
}

.fa-o:before {
  content: "\4f"
}

.fa-medkit:before,
.fa-suitcase-medical:before {
  content: "\f0fa"
}

.fa-user-secret:before {
  content: "\f21b"
}

.fa-otter:before {
  content: "\f700"
}

.fa-female:before,
.fa-person-dress:before {
  content: "\f182"
}

.fa-comment-dollar:before {
  content: "\f651"
}

.fa-briefcase-clock:before,
.fa-business-time:before {
  content: "\f64a"
}

.fa-table-cells-large:before,
.fa-th-large:before {
  content: "\f009"
}

.fa-book-tanakh:before,
.fa-tanakh:before {
  content: "\f827"
}

.fa-phone-volume:before,
.fa-volume-control-phone:before {
  content: "\f2a0"
}

.fa-hat-cowboy-side:before {
  content: "\f8c1"
}

.fa-clipboard-user:before {
  content: "\f7f3"
}

.fa-child:before {
  content: "\f1ae"
}

.fa-lira-sign:before {
  content: "\f195"
}

.fa-satellite:before {
  content: "\f7bf"
}

.fa-plane-lock:before {
  content: "\e558"
}

.fa-tag:before {
  content: "\f02b"
}

.fa-comment:before {
  content: "\f075"
}

.fa-birthday-cake:before,
.fa-cake-candles:before,
.fa-cake:before {
  content: "\f1fd"
}

.fa-envelope:before {
  content: "\f0e0"
}

.fa-angle-double-up:before,
.fa-angles-up:before {
  content: "\f102"
}

.fa-paperclip:before {
  content: "\f0c6"
}

.fa-arrow-right-to-city:before {
  content: "\e4b3"
}

.fa-ribbon:before {
  content: "\f4d6"
}

.fa-lungs:before {
  content: "\f604"
}

.fa-arrow-up-9-1:before,
.fa-sort-numeric-up-alt:before {
  content: "\f887"
}

.fa-litecoin-sign:before {
  content: "\e1d3"
}

.fa-border-none:before {
  content: "\f850"
}

.fa-circle-nodes:before {
  content: "\e4e2"
}

.fa-parachute-box:before {
  content: "\f4cd"
}

.fa-indent:before {
  content: "\f03c"
}

.fa-truck-field-un:before {
  content: "\e58e"
}

.fa-hourglass-empty:before,
.fa-hourglass:before {
  content: "\f254"
}

.fa-mountain:before {
  content: "\f6fc"
}

.fa-user-doctor:before,
.fa-user-md:before {
  content: "\f0f0"
}

.fa-circle-info:before,
.fa-info-circle:before {
  content: "\f05a"
}

.fa-cloud-meatball:before {
  content: "\f73b"
}

.fa-camera-alt:before,
.fa-camera:before {
  content: "\f030"
}

.fa-square-virus:before {
  content: "\e578"
}

.fa-meteor:before {
  content: "\f753"
}

.fa-car-on:before {
  content: "\e4dd"
}

.fa-sleigh:before {
  content: "\f7cc"
}

.fa-arrow-down-1-9:before,
.fa-sort-numeric-asc:before,
.fa-sort-numeric-down:before {
  content: "\f162"
}

.fa-hand-holding-droplet:before,
.fa-hand-holding-water:before {
  content: "\f4c1"
}

.fa-water:before {
  content: "\f773"
}

.fa-calendar-check:before {
  content: "\f274"
}

.fa-braille:before {
  content: "\f2a1"
}

.fa-prescription-bottle-alt:before,
.fa-prescription-bottle-medical:before {
  content: "\f486"
}

.fa-landmark:before {
  content: "\f66f"
}

.fa-truck:before {
  content: "\f0d1"
}

.fa-crosshairs:before {
  content: "\f05b"
}

.fa-person-cane:before {
  content: "\e53c"
}

.fa-tent:before {
  content: "\e57d"
}

.fa-vest-patches:before {
  content: "\e086"
}

.fa-check-double:before {
  content: "\f560"
}

.fa-arrow-down-a-z:before,
.fa-sort-alpha-asc:before,
.fa-sort-alpha-down:before {
  content: "\f15d"
}

.fa-money-bill-wheat:before {
  content: "\e52a"
}

.fa-cookie:before {
  content: "\f563"
}

.fa-arrow-left-rotate:before,
.fa-arrow-rotate-back:before,
.fa-arrow-rotate-backward:before,
.fa-arrow-rotate-left:before,
.fa-undo:before {
  content: "\f0e2"
}

.fa-hard-drive:before,
.fa-hdd:before {
  content: "\f0a0"
}

.fa-face-grin-squint-tears:before,
.fa-grin-squint-tears:before {
  content: "\f586"
}

.fa-dumbbell:before {
  content: "\f44b"
}

.fa-list-alt:before,
.fa-rectangle-list:before {
  content: "\f022"
}

.fa-tarp-droplet:before {
  content: "\e57c"
}

.fa-house-medical-circle-check:before {
  content: "\e511"
}

.fa-person-skiing-nordic:before,
.fa-skiing-nordic:before {
  content: "\f7ca"
}

.fa-calendar-plus:before {
  content: "\f271"
}

.fa-plane-arrival:before {
  content: "\f5af"
}

.fa-arrow-alt-circle-left:before,
.fa-circle-left:before {
  content: "\f359"
}

.fa-subway:before,
.fa-train-subway:before {
  content: "\f239"
}

.fa-chart-gantt:before {
  content: "\e0e4"
}

.fa-indian-rupee-sign:before,
.fa-indian-rupee:before,
.fa-inr:before {
  content: "\e1bc"
}

.fa-crop-alt:before,
.fa-crop-simple:before {
  content: "\f565"
}

.fa-money-bill-1:before,
.fa-money-bill-alt:before {
  content: "\f3d1"
}

.fa-left-long:before,
.fa-long-arrow-alt-left:before {
  content: "\f30a"
}

.fa-dna:before {
  content: "\f471"
}

.fa-virus-slash:before {
  content: "\e075"
}

.fa-minus:before,
.fa-subtract:before {
  content: "\f068"
}

.fa-chess:before {
  content: "\f439"
}

.fa-arrow-left-long:before,
.fa-long-arrow-left:before {
  content: "\f177"
}

.fa-plug-circle-check:before {
  content: "\e55c"
}

.fa-street-view:before {
  content: "\f21d"
}

.fa-franc-sign:before {
  content: "\e18f"
}

.fa-volume-off:before {
  content: "\f026"
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before,
.fa-hands-american-sign-language-interpreting:before,
.fa-hands-asl-interpreting:before {
  content: "\f2a3"
}

.fa-cog:before,
.fa-gear:before {
  content: "\f013"
}

.fa-droplet-slash:before,
.fa-tint-slash:before {
  content: "\f5c7"
}

.fa-mosque:before {
  content: "\f678"
}

.fa-mosquito:before {
  content: "\e52b"
}

.fa-star-of-david:before {
  content: "\f69a"
}

.fa-person-military-rifle:before {
  content: "\e54b"
}

.fa-cart-shopping:before,
.fa-shopping-cart:before {
  content: "\f07a"
}

.fa-vials:before {
  content: "\f493"
}

.fa-plug-circle-plus:before {
  content: "\e55f"
}

.fa-place-of-worship:before {
  content: "\f67f"
}

.fa-grip-vertical:before {
  content: "\f58e"
}

.fa-arrow-turn-up:before,
.fa-level-up:before {
  content: "\f148"
}

.fa-u:before {
  content: "\55"
}

.fa-square-root-alt:before,
.fa-square-root-variable:before {
  content: "\f698"
}

.fa-clock-four:before,
.fa-clock:before {
  content: "\f017"
}

.fa-backward-step:before,
.fa-step-backward:before {
  content: "\f048"
}

.fa-pallet:before {
  content: "\f482"
}

.fa-faucet:before {
  content: "\e005"
}

.fa-baseball-bat-ball:before {
  content: "\f432"
}

.fa-s:before {
  content: "\53"
}

.fa-timeline:before {
  content: "\e29c"
}

.fa-keyboard:before {
  content: "\f11c"
}

.fa-caret-down:before {
  content: "\f0d7"
}

.fa-clinic-medical:before,
.fa-house-chimney-medical:before {
  content: "\f7f2"
}

.fa-temperature-3:before,
.fa-temperature-three-quarters:before,
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8"
}

.fa-mobile-android-alt:before,
.fa-mobile-screen:before {
  content: "\f3cf"
}

.fa-plane-up:before {
  content: "\e22d"
}

.fa-piggy-bank:before {
  content: "\f4d3"
}

.fa-battery-3:before,
.fa-battery-half:before {
  content: "\f242"
}

.fa-mountain-city:before {
  content: "\e52e"
}

.fa-coins:before {
  content: "\f51e"
}

.fa-khanda:before {
  content: "\f66d"
}

.fa-sliders-h:before,
.fa-sliders:before {
  content: "\f1de"
}

.fa-folder-tree:before {
  content: "\f802"
}

.fa-network-wired:before {
  content: "\f6ff"
}

.fa-map-pin:before {
  content: "\f276"
}

.fa-hamsa:before {
  content: "\f665"
}

.fa-cent-sign:before {
  content: "\e3f5"
}

.fa-flask:before {
  content: "\f0c3"
}

.fa-person-pregnant:before {
  content: "\e31e"
}

.fa-wand-sparkles:before {
  content: "\f72b"
}

.fa-ellipsis-v:before,
.fa-ellipsis-vertical:before {
  content: "\f142"
}

.fa-ticket:before {
  content: "\f145"
}

.fa-power-off:before {
  content: "\f011"
}

.fa-long-arrow-alt-right:before,
.fa-right-long:before {
  content: "\f30b"
}

.fa-flag-usa:before {
  content: "\f74d"
}

.fa-laptop-file:before {
  content: "\e51d"
}

.fa-teletype:before,
.fa-tty:before {
  content: "\f1e4"
}

.fa-diagram-next:before {
  content: "\e476"
}

.fa-person-rifle:before {
  content: "\e54e"
}

.fa-house-medical-circle-exclamation:before {
  content: "\e512"
}

.fa-closed-captioning:before {
  content: "\f20a"
}

.fa-hiking:before,
.fa-person-hiking:before {
  content: "\f6ec"
}

.fa-venus-double:before {
  content: "\f226"
}

.fa-images:before {
  content: "\f302"
}

.fa-calculator:before {
  content: "\f1ec"
}

.fa-people-pulling:before {
  content: "\e535"
}

.fa-n:before {
  content: "\4e"
}

.fa-cable-car:before,
.fa-tram:before {
  content: "\f7da"
}

.fa-cloud-rain:before {
  content: "\f73d"
}

.fa-building-circle-xmark:before {
  content: "\e4d4"
}

.fa-ship:before {
  content: "\f21a"
}

.fa-arrows-down-to-line:before {
  content: "\e4b8"
}

.fa-download:before {
  content: "\f019"
}

.fa-face-grin:before,
.fa-grin:before {
  content: "\f580"
}

.fa-backspace:before,
.fa-delete-left:before {
  content: "\f55a"
}

.fa-eye-dropper-empty:before,
.fa-eye-dropper:before,
.fa-eyedropper:before {
  content: "\f1fb"
}

.fa-file-circle-check:before {
  content: "\e5a0"
}

.fa-forward:before {
  content: "\f04e"
}

.fa-mobile-android:before,
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f3ce"
}

.fa-face-meh:before,
.fa-meh:before {
  content: "\f11a"
}

.fa-align-center:before {
  content: "\f037"
}

.fa-book-dead:before,
.fa-book-skull:before {
  content: "\f6b7"
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2"
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b"
}

.fa-heart-circle-exclamation:before {
  content: "\e4fe"
}

.fa-home-alt:before,
.fa-home-lg-alt:before,
.fa-home:before,
.fa-house:before {
  content: "\f015"
}

.fa-calendar-week:before {
  content: "\f784"
}

.fa-laptop-medical:before {
  content: "\f812"
}

.fa-b:before {
  content: "\42"
}

.fa-file-medical:before {
  content: "\f477"
}

.fa-dice-one:before {
  content: "\f525"
}

.fa-kiwi-bird:before {
  content: "\f535"
}

.fa-arrow-right-arrow-left:before,
.fa-exchange:before {
  content: "\f0ec"
}

.fa-redo-alt:before,
.fa-rotate-forward:before,
.fa-rotate-right:before {
  content: "\f2f9"
}

.fa-cutlery:before,
.fa-utensils:before {
  content: "\f2e7"
}

.fa-arrow-up-wide-short:before,
.fa-sort-amount-up:before {
  content: "\f161"
}

.fa-mill-sign:before {
  content: "\e1ed"
}

.fa-bowl-rice:before {
  content: "\e2eb"
}

.fa-skull:before {
  content: "\f54c"
}

.fa-broadcast-tower:before,
.fa-tower-broadcast:before {
  content: "\f519"
}

.fa-truck-pickup:before {
  content: "\f63c"
}

.fa-long-arrow-alt-up:before,
.fa-up-long:before {
  content: "\f30c"
}

.fa-stop:before {
  content: "\f04d"
}

.fa-code-merge:before {
  content: "\f387"
}

.fa-upload:before {
  content: "\f093"
}

.fa-hurricane:before {
  content: "\f751"
}

.fa-mound:before {
  content: "\e52d"
}

.fa-toilet-portable:before {
  content: "\e583"
}

.fa-compact-disc:before {
  content: "\f51f"
}

.fa-file-arrow-down:before,
.fa-file-download:before {
  content: "\f56d"
}

.fa-caravan:before {
  content: "\f8ff"
}

.fa-shield-cat:before {
  content: "\e572"
}

.fa-bolt:before,
.fa-zap:before {
  content: "\f0e7"
}

.fa-glass-water:before {
  content: "\e4f4"
}

.fa-oil-well:before {
  content: "\e532"
}

.fa-vault:before {
  content: "\e2c5"
}

.fa-mars:before {
  content: "\f222"
}

.fa-toilet:before {
  content: "\f7d8"
}

.fa-plane-circle-xmark:before {
  content: "\e557"
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen-sign:before,
.fa-yen:before {
  content: "\f157"
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble-sign:before,
.fa-ruble:before {
  content: "\f158"
}

.fa-sun:before {
  content: "\f185"
}

.fa-guitar:before {
  content: "\f7a6"
}

.fa-face-laugh-wink:before,
.fa-laugh-wink:before {
  content: "\f59c"
}

.fa-horse-head:before {
  content: "\f7ab"
}

.fa-bore-hole:before {
  content: "\e4c3"
}

.fa-industry:before {
  content: "\f275"
}

.fa-arrow-alt-circle-down:before,
.fa-circle-down:before {
  content: "\f358"
}

.fa-arrows-turn-to-dots:before {
  content: "\e4c1"
}

.fa-florin-sign:before {
  content: "\e184"
}

.fa-arrow-down-short-wide:before,
.fa-sort-amount-desc:before,
.fa-sort-amount-down-alt:before {
  content: "\f884"
}

.fa-less-than:before {
  content: "\3c"
}

.fa-angle-down:before {
  content: "\f107"
}

.fa-car-tunnel:before {
  content: "\e4de"
}

.fa-head-side-cough:before {
  content: "\e061"
}

.fa-grip-lines:before {
  content: "\f7a4"
}

.fa-thumbs-down:before {
  content: "\f165"
}

.fa-user-lock:before {
  content: "\f502"
}

.fa-arrow-right-long:before,
.fa-long-arrow-right:before {
  content: "\f178"
}

.fa-anchor-circle-xmark:before {
  content: "\e4ac"
}

.fa-ellipsis-h:before,
.fa-ellipsis:before {
  content: "\f141"
}

.fa-chess-pawn:before {
  content: "\f443"
}

.fa-first-aid:before,
.fa-kit-medical:before {
  content: "\f479"
}

.fa-person-through-window:before {
  content: "\e5a9"
}

.fa-toolbox:before {
  content: "\f552"
}

.fa-hands-holding-circle:before {
  content: "\e4fb"
}

.fa-bug:before {
  content: "\f188"
}

.fa-credit-card-alt:before,
.fa-credit-card:before {
  content: "\f09d"
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9"
}

.fa-hand-holding-hand:before {
  content: "\e4f7"
}

.fa-book-open-reader:before,
.fa-book-reader:before {
  content: "\f5da"
}

.fa-mountain-sun:before {
  content: "\e52f"
}

.fa-arrows-left-right-to-line:before {
  content: "\e4ba"
}

.fa-dice-d20:before {
  content: "\f6cf"
}

.fa-truck-droplet:before {
  content: "\e58c"
}

.fa-file-circle-xmark:before {
  content: "\e5a1"
}

.fa-temperature-arrow-up:before,
.fa-temperature-up:before {
  content: "\e040"
}

.fa-medal:before {
  content: "\f5a2"
}

.fa-bed:before {
  content: "\f236"
}

.fa-h-square:before,
.fa-square-h:before {
  content: "\f0fd"
}

.fa-podcast:before {
  content: "\f2ce"
}

.fa-temperature-4:before,
.fa-temperature-full:before,
.fa-thermometer-4:before,
.fa-thermometer-full:before {
  content: "\f2c7"
}

.fa-bell:before {
  content: "\f0f3"
}

.fa-superscript:before {
  content: "\f12b"
}

.fa-plug-circle-xmark:before {
  content: "\e560"
}

.fa-star-of-life:before {
  content: "\f621"
}

.fa-phone-slash:before {
  content: "\f3dd"
}

.fa-paint-roller:before {
  content: "\f5aa"
}

.fa-hands-helping:before,
.fa-handshake-angle:before {
  content: "\f4c4"
}

.fa-location-dot:before,
.fa-map-marker-alt:before {
  content: "\f3c5"
}

.fa-file:before {
  content: "\f15b"
}

.fa-greater-than:before {
  content: "\3e"
}

.fa-person-swimming:before,
.fa-swimmer:before {
  content: "\f5c4"
}

.fa-arrow-down:before {
  content: "\f063"
}

.fa-droplet:before,
.fa-tint:before {
  content: "\f043"
}

.fa-eraser:before {
  content: "\f12d"
}

.fa-earth-america:before,
.fa-earth-americas:before,
.fa-earth:before,
.fa-globe-americas:before {
  content: "\f57d"
}

.fa-person-burst:before {
  content: "\e53b"
}

.fa-dove:before {
  content: "\f4ba"
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244"
}

.fa-socks:before {
  content: "\f696"
}

.fa-inbox:before {
  content: "\f01c"
}

.fa-section:before {
  content: "\e447"
}

.fa-gauge-high:before,
.fa-tachometer-alt-fast:before,
.fa-tachometer-alt:before {
  content: "\f625"
}

.fa-envelope-open-text:before {
  content: "\f658"
}

.fa-hospital-alt:before,
.fa-hospital-wide:before,
.fa-hospital:before {
  content: "\f0f8"
}

.fa-wine-bottle:before {
  content: "\f72f"
}

.fa-chess-rook:before {
  content: "\f447"
}

.fa-bars-staggered:before,
.fa-reorder:before,
.fa-stream:before {
  content: "\f550"
}

.fa-dharmachakra:before {
  content: "\f655"
}

.fa-hotdog:before {
  content: "\f80f"
}

.fa-blind:before,
.fa-person-walking-with-cane:before {
  content: "\f29d"
}

.fa-drum:before {
  content: "\f569"
}

.fa-ice-cream:before {
  content: "\f810"
}

.fa-heart-circle-bolt:before {
  content: "\e4fc"
}

.fa-fax:before {
  content: "\f1ac"
}

.fa-paragraph:before {
  content: "\f1dd"
}

.fa-check-to-slot:before,
.fa-vote-yea:before {
  content: "\f772"
}

.fa-star-half:before {
  content: "\f089"
}

.fa-boxes-alt:before,
.fa-boxes-stacked:before,
.fa-boxes:before {
  content: "\f468"
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1"
}

.fa-assistive-listening-systems:before,
.fa-ear-listen:before {
  content: "\f2a2"
}

.fa-tree-city:before {
  content: "\e587"
}

.fa-play:before {
  content: "\f04b"
}

.fa-font:before {
  content: "\f031"
}

.fa-rupiah-sign:before {
  content: "\e23d"
}

.fa-magnifying-glass:before,
.fa-search:before {
  content: "\f002"
}

.fa-ping-pong-paddle-ball:before,
.fa-table-tennis-paddle-ball:before,
.fa-table-tennis:before {
  content: "\f45d"
}

.fa-diagnoses:before,
.fa-person-dots-from-line:before {
  content: "\f470"
}

.fa-trash-can-arrow-up:before,
.fa-trash-restore-alt:before {
  content: "\f82a"
}

.fa-naira-sign:before {
  content: "\e1f6"
}

.fa-cart-arrow-down:before {
  content: "\f218"
}

.fa-walkie-talkie:before {
  content: "\f8ef"
}

.fa-file-edit:before,
.fa-file-pen:before {
  content: "\f31c"
}

.fa-receipt:before {
  content: "\f543"
}

.fa-pen-square:before,
.fa-pencil-square:before,
.fa-square-pen:before {
  content: "\f14b"
}

.fa-suitcase-rolling:before {
  content: "\f5c1"
}

.fa-person-circle-exclamation:before {
  content: "\e53f"
}

.fa-chevron-down:before {
  content: "\f078"
}

.fa-battery-5:before,
.fa-battery-full:before,
.fa-battery:before {
  content: "\f240"
}

.fa-skull-crossbones:before {
  content: "\f714"
}

.fa-code-compare:before {
  content: "\e13a"
}

.fa-list-dots:before,
.fa-list-ul:before {
  content: "\f0ca"
}

.fa-school-lock:before {
  content: "\e56f"
}

.fa-tower-cell:before {
  content: "\e585"
}

.fa-down-long:before,
.fa-long-arrow-alt-down:before {
  content: "\f309"
}

.fa-ranking-star:before {
  content: "\e561"
}

.fa-chess-king:before {
  content: "\f43f"
}

.fa-person-harassing:before {
  content: "\e549"
}

.fa-brazilian-real-sign:before {
  content: "\e46c"
}

.fa-landmark-alt:before,
.fa-landmark-dome:before {
  content: "\f752"
}

.fa-arrow-up:before {
  content: "\f062"
}

.fa-television:before,
.fa-tv-alt:before,
.fa-tv:before {
  content: "\f26c"
}

.fa-shrimp:before {
  content: "\e448"
}

.fa-list-check:before,
.fa-tasks:before {
  content: "\f0ae"
}

.fa-jug-detergent:before {
  content: "\e519"
}

.fa-circle-user:before,
.fa-user-circle:before {
  content: "\f2bd"
}

.fa-user-shield:before {
  content: "\f505"
}

.fa-wind:before {
  content: "\f72e"
}

.fa-car-burst:before,
.fa-car-crash:before {
  content: "\f5e1"
}

.fa-y:before {
  content: "\59"
}

.fa-person-snowboarding:before,
.fa-snowboarding:before {
  content: "\f7ce"
}

.fa-shipping-fast:before,
.fa-truck-fast:before {
  content: "\f48b"
}

.fa-fish:before {
  content: "\f578"
}

.fa-user-graduate:before {
  content: "\f501"
}

.fa-adjust:before,
.fa-circle-half-stroke:before {
  content: "\f042"
}

.fa-clapperboard:before {
  content: "\e131"
}

.fa-circle-radiation:before,
.fa-radiation-alt:before {
  content: "\f7ba"
}

.fa-baseball-ball:before,
.fa-baseball:before {
  content: "\f433"
}

.fa-jet-fighter-up:before {
  content: "\e518"
}

.fa-diagram-project:before,
.fa-project-diagram:before {
  content: "\f542"
}

.fa-copy:before {
  content: "\f0c5"
}

.fa-volume-mute:before,
.fa-volume-times:before,
.fa-volume-xmark:before {
  content: "\f6a9"
}

.fa-hand-sparkles:before {
  content: "\e05d"
}

.fa-grip-horizontal:before,
.fa-grip:before {
  content: "\f58d"
}

.fa-share-from-square:before,
.fa-share-square:before {
  content: "\f14d"
}

.fa-child-combatant:before,
.fa-child-rifle:before {
  content: "\e4e0"
}

.fa-gun:before {
  content: "\e19b"
}

.fa-phone-square:before,
.fa-square-phone:before {
  content: "\f098"
}

.fa-add:before,
.fa-plus:before {
  content: "\2b"
}

.fa-expand:before {
  content: "\f065"
}

.fa-computer:before {
  content: "\e4e5"
}

.fa-close:before,
.fa-multiply:before,
.fa-remove:before,
.fa-times:before,
.fa-xmark:before {
  content: "\f00d"
}

.fa-arrows-up-down-left-right:before,
.fa-arrows:before {
  content: "\f047"
}

.fa-chalkboard-teacher:before,
.fa-chalkboard-user:before {
  content: "\f51c"
}

.fa-peso-sign:before {
  content: "\e222"
}

.fa-building-shield:before {
  content: "\e4d8"
}

.fa-baby:before {
  content: "\f77c"
}

.fa-users-line:before {
  content: "\e592"
}

.fa-quote-left-alt:before,
.fa-quote-left:before {
  content: "\f10d"
}

.fa-tractor:before {
  content: "\f722"
}

.fa-trash-arrow-up:before,
.fa-trash-restore:before {
  content: "\f829"
}

.fa-arrow-down-up-lock:before {
  content: "\e4b0"
}

.fa-lines-leaning:before {
  content: "\e51e"
}

.fa-ruler-combined:before {
  content: "\f546"
}

.fa-copyright:before {
  content: "\f1f9"
}

.fa-equals:before {
  content: "\3d"
}

.fa-blender:before {
  content: "\f517"
}

.fa-teeth:before {
  content: "\f62e"
}

.fa-ils:before,
.fa-shekel-sign:before,
.fa-shekel:before,
.fa-sheqel-sign:before,
.fa-sheqel:before {
  content: "\f20b"
}

.fa-map:before {
  content: "\f279"
}

.fa-rocket:before {
  content: "\f135"
}

.fa-photo-film:before,
.fa-photo-video:before {
  content: "\f87c"
}

.fa-folder-minus:before {
  content: "\f65d"
}

.fa-store:before {
  content: "\f54e"
}

.fa-arrow-trend-up:before {
  content: "\e098"
}

.fa-plug-circle-minus:before {
  content: "\e55e"
}

.fa-sign-hanging:before,
.fa-sign:before {
  content: "\f4d9"
}

.fa-bezier-curve:before {
  content: "\f55b"
}

.fa-bell-slash:before {
  content: "\f1f6"
}

.fa-tablet-android:before,
.fa-tablet:before {
  content: "\f3fb"
}

.fa-school-flag:before {
  content: "\e56e"
}

.fa-fill:before {
  content: "\f575"
}

.fa-angle-up:before {
  content: "\f106"
}

.fa-drumstick-bite:before {
  content: "\f6d7"
}

.fa-holly-berry:before {
  content: "\f7aa"
}

.fa-chevron-left:before {
  content: "\f053"
}

.fa-bacteria:before {
  content: "\e059"
}

.fa-hand-lizard:before {
  content: "\f258"
}

.fa-notdef:before {
  content: "\e1fe"
}

.fa-disease:before {
  content: "\f7fa"
}

.fa-briefcase-medical:before {
  content: "\f469"
}

.fa-genderless:before {
  content: "\f22d"
}

.fa-chevron-right:before {
  content: "\f054"
}

.fa-retweet:before {
  content: "\f079"
}

.fa-car-alt:before,
.fa-car-rear:before {
  content: "\f5de"
}

.fa-pump-soap:before {
  content: "\e06b"
}

.fa-video-slash:before {
  content: "\f4e2"
}

.fa-battery-2:before,
.fa-battery-quarter:before {
  content: "\f243"
}

.fa-radio:before {
  content: "\f8d7"
}

.fa-baby-carriage:before,
.fa-carriage-baby:before {
  content: "\f77d"
}

.fa-traffic-light:before {
  content: "\f637"
}

.fa-thermometer:before {
  content: "\f491"
}

.fa-vr-cardboard:before {
  content: "\f729"
}

.fa-hand-middle-finger:before {
  content: "\f806"
}

.fa-percent:before,
.fa-percentage:before {
  content: "\25"
}

.fa-truck-moving:before {
  content: "\f4df"
}

.fa-glass-water-droplet:before {
  content: "\e4f5"
}

.fa-display:before {
  content: "\e163"
}

.fa-face-smile:before,
.fa-smile:before {
  content: "\f118"
}

.fa-thumb-tack:before,
.fa-thumbtack:before {
  content: "\f08d"
}

.fa-trophy:before {
  content: "\f091"
}

.fa-person-praying:before,
.fa-pray:before {
  content: "\f683"
}

.fa-hammer:before {
  content: "\f6e3"
}

.fa-hand-peace:before {
  content: "\f25b"
}

.fa-rotate:before,
.fa-sync-alt:before {
  content: "\f2f1"
}

.fa-spinner:before {
  content: "\f110"
}

.fa-robot:before {
  content: "\f544"
}

.fa-peace:before {
  content: "\f67c"
}

.fa-cogs:before,
.fa-gears:before {
  content: "\f085"
}

.fa-warehouse:before {
  content: "\f494"
}

.fa-arrow-up-right-dots:before {
  content: "\e4b7"
}

.fa-splotch:before {
  content: "\f5bc"
}

.fa-face-grin-hearts:before,
.fa-grin-hearts:before {
  content: "\f584"
}

.fa-dice-four:before {
  content: "\f524"
}

.fa-sim-card:before {
  content: "\f7c4"
}

.fa-transgender-alt:before,
.fa-transgender:before {
  content: "\f225"
}

.fa-mercury:before {
  content: "\f223"
}

.fa-arrow-turn-down:before,
.fa-level-down:before {
  content: "\f149"
}

.fa-person-falling-burst:before {
  content: "\e547"
}

.fa-award:before {
  content: "\f559"
}

.fa-ticket-alt:before,
.fa-ticket-simple:before {
  content: "\f3ff"
}

.fa-building:before {
  content: "\f1ad"
}

.fa-angle-double-left:before,
.fa-angles-left:before {
  content: "\f100"
}

.fa-qrcode:before {
  content: "\f029"
}

.fa-clock-rotate-left:before,
.fa-history:before {
  content: "\f1da"
}

.fa-face-grin-beam-sweat:before,
.fa-grin-beam-sweat:before {
  content: "\f583"
}

.fa-arrow-right-from-file:before,
.fa-file-export:before {
  content: "\f56e"
}

.fa-shield-blank:before,
.fa-shield:before {
  content: "\f132"
}

.fa-arrow-up-short-wide:before,
.fa-sort-amount-up-alt:before {
  content: "\f885"
}

.fa-house-medical:before {
  content: "\e3b2"
}

.fa-golf-ball-tee:before,
.fa-golf-ball:before {
  content: "\f450"
}

.fa-chevron-circle-left:before,
.fa-circle-chevron-left:before {
  content: "\f137"
}

.fa-house-chimney-window:before {
  content: "\e00d"
}

.fa-pen-nib:before {
  content: "\f5ad"
}

.fa-tent-arrow-turn-left:before {
  content: "\e580"
}

.fa-tents:before {
  content: "\e582"
}

.fa-magic:before,
.fa-wand-magic:before {
  content: "\f0d0"
}

.fa-dog:before {
  content: "\f6d3"
}

.fa-carrot:before {
  content: "\f787"
}

.fa-moon:before {
  content: "\f186"
}

.fa-wine-glass-alt:before,
.fa-wine-glass-empty:before {
  content: "\f5ce"
}

.fa-cheese:before {
  content: "\f7ef"
}

.fa-yin-yang:before {
  content: "\f6ad"
}

.fa-music:before {
  content: "\f001"
}

.fa-code-commit:before {
  content: "\f386"
}

.fa-temperature-low:before {
  content: "\f76b"
}

.fa-biking:before,
.fa-person-biking:before {
  content: "\f84a"
}

.fa-broom:before {
  content: "\f51a"
}

.fa-shield-heart:before {
  content: "\e574"
}

.fa-gopuram:before {
  content: "\f664"
}

.fa-earth-oceania:before,
.fa-globe-oceania:before {
  content: "\e47b"
}

.fa-square-xmark:before,
.fa-times-square:before,
.fa-xmark-square:before {
  content: "\f2d3"
}

.fa-hashtag:before {
  content: "\23"
}

.fa-expand-alt:before,
.fa-up-right-and-down-left-from-center:before {
  content: "\f424"
}

.fa-oil-can:before {
  content: "\f613"
}

.fa-t:before {
  content: "\54"
}

.fa-hippo:before {
  content: "\f6ed"
}

.fa-chart-column:before {
  content: "\e0e3"
}

.fa-infinity:before {
  content: "\f534"
}

.fa-vial-circle-check:before {
  content: "\e596"
}

.fa-person-arrow-down-to-line:before {
  content: "\e538"
}

.fa-voicemail:before {
  content: "\f897"
}

.fa-fan:before {
  content: "\f863"
}

.fa-person-walking-luggage:before {
  content: "\e554"
}

.fa-arrows-alt-v:before,
.fa-up-down:before {
  content: "\f338"
}

.fa-cloud-moon-rain:before {
  content: "\f73c"
}

.fa-calendar:before {
  content: "\f133"
}

.fa-trailer:before {
  content: "\e041"
}

.fa-bahai:before,
.fa-haykal:before {
  content: "\f666"
}

.fa-sd-card:before {
  content: "\f7c2"
}

.fa-dragon:before {
  content: "\f6d5"
}

.fa-shoe-prints:before {
  content: "\f54b"
}

.fa-circle-plus:before,
.fa-plus-circle:before {
  content: "\f055"
}

.fa-face-grin-tongue-wink:before,
.fa-grin-tongue-wink:before {
  content: "\f58b"
}

.fa-hand-holding:before {
  content: "\f4bd"
}

.fa-plug-circle-exclamation:before {
  content: "\e55d"
}

.fa-chain-broken:before,
.fa-chain-slash:before,
.fa-link-slash:before,
.fa-unlink:before {
  content: "\f127"
}

.fa-clone:before {
  content: "\f24d"
}

.fa-person-walking-arrow-loop-left:before {
  content: "\e551"
}

.fa-arrow-up-z-a:before,
.fa-sort-alpha-up-alt:before {
  content: "\f882"
}

.fa-fire-alt:before,
.fa-fire-flame-curved:before {
  content: "\f7e4"
}

.fa-tornado:before {
  content: "\f76f"
}

.fa-file-circle-plus:before {
  content: "\e494"
}

.fa-book-quran:before,
.fa-quran:before {
  content: "\f687"
}

.fa-anchor:before {
  content: "\f13d"
}

.fa-border-all:before {
  content: "\f84c"
}

.fa-angry:before,
.fa-face-angry:before {
  content: "\f556"
}

.fa-cookie-bite:before {
  content: "\f564"
}

.fa-arrow-trend-down:before {
  content: "\e097"
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e"
}

.fa-draw-polygon:before {
  content: "\f5ee"
}

.fa-balance-scale:before,
.fa-scale-balanced:before {
  content: "\f24e"
}

.fa-gauge-simple-high:before,
.fa-tachometer-fast:before,
.fa-tachometer:before {
  content: "\f62a"
}

.fa-shower:before {
  content: "\f2cc"
}

.fa-desktop-alt:before,
.fa-desktop:before {
  content: "\f390"
}

.fa-m:before {
  content: "\4d"
}

.fa-table-list:before,
.fa-th-list:before {
  content: "\f00b"
}

.fa-comment-sms:before,
.fa-sms:before {
  content: "\f7cd"
}

.fa-book:before {
  content: "\f02d"
}

.fa-user-plus:before {
  content: "\f234"
}

.fa-check:before {
  content: "\f00c"
}

.fa-battery-4:before,
.fa-battery-three-quarters:before {
  content: "\f241"
}

.fa-house-circle-check:before {
  content: "\e509"
}

.fa-angle-left:before {
  content: "\f104"
}

.fa-diagram-successor:before {
  content: "\e47a"
}

.fa-truck-arrow-right:before {
  content: "\e58b"
}

.fa-arrows-split-up-and-left:before {
  content: "\e4bc"
}

.fa-fist-raised:before,
.fa-hand-fist:before {
  content: "\f6de"
}

.fa-cloud-moon:before {
  content: "\f6c3"
}

.fa-briefcase:before {
  content: "\f0b1"
}

.fa-person-falling:before {
  content: "\e546"
}

.fa-image-portrait:before,
.fa-portrait:before {
  content: "\f3e0"
}

.fa-user-tag:before {
  content: "\f507"
}

.fa-rug:before {
  content: "\e569"
}

.fa-earth-europe:before,
.fa-globe-europe:before {
  content: "\f7a2"
}

.fa-cart-flatbed-suitcase:before,
.fa-luggage-cart:before {
  content: "\f59d"
}

.fa-rectangle-times:before,
.fa-rectangle-xmark:before,
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f410"
}

.fa-baht-sign:before {
  content: "\e0ac"
}

.fa-book-open:before {
  content: "\f518"
}

.fa-book-journal-whills:before,
.fa-journal-whills:before {
  content: "\f66a"
}

.fa-handcuffs:before {
  content: "\e4f8"
}

.fa-exclamation-triangle:before,
.fa-triangle-exclamation:before,
.fa-warning:before {
  content: "\f071"
}

.fa-database:before {
  content: "\f1c0"
}

.fa-arrow-turn-right:before,
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064"
}

.fa-bottle-droplet:before {
  content: "\e4c4"
}

.fa-mask-face:before {
  content: "\e1d7"
}

.fa-hill-rockslide:before {
  content: "\e508"
}

.fa-exchange-alt:before,
.fa-right-left:before {
  content: "\f362"
}

.fa-paper-plane:before {
  content: "\f1d8"
}

.fa-road-circle-exclamation:before {
  content: "\e565"
}

.fa-dungeon:before {
  content: "\f6d9"
}

.fa-align-right:before {
  content: "\f038"
}

.fa-money-bill-1-wave:before,
.fa-money-bill-wave-alt:before {
  content: "\f53b"
}

.fa-life-ring:before {
  content: "\f1cd"
}

.fa-hands:before,
.fa-sign-language:before,
.fa-signing:before {
  content: "\f2a7"
}

.fa-calendar-day:before {
  content: "\f783"
}

.fa-ladder-water:before,
.fa-swimming-pool:before,
.fa-water-ladder:before {
  content: "\f5c5"
}

.fa-arrows-up-down:before,
.fa-arrows-v:before {
  content: "\f07d"
}

.fa-face-grimace:before,
.fa-grimace:before {
  content: "\f57f"
}

.fa-wheelchair-alt:before,
.fa-wheelchair-move:before {
  content: "\e2ce"
}

.fa-level-down-alt:before,
.fa-turn-down:before {
  content: "\f3be"
}

.fa-person-walking-arrow-right:before {
  content: "\e552"
}

.fa-envelope-square:before,
.fa-square-envelope:before {
  content: "\f199"
}

.fa-dice:before {
  content: "\f522"
}

.fa-bowling-ball:before {
  content: "\f436"
}

.fa-brain:before {
  content: "\f5dc"
}

.fa-band-aid:before,
.fa-bandage:before {
  content: "\f462"
}

.fa-calendar-minus:before {
  content: "\f272"
}

.fa-circle-xmark:before,
.fa-times-circle:before,
.fa-xmark-circle:before {
  content: "\f057"
}

.fa-gifts:before {
  content: "\f79c"
}

.fa-hotel:before {
  content: "\f594"
}

.fa-earth-asia:before,
.fa-globe-asia:before {
  content: "\f57e"
}

.fa-id-card-alt:before,
.fa-id-card-clip:before {
  content: "\f47f"
}

.fa-magnifying-glass-plus:before,
.fa-search-plus:before {
  content: "\f00e"
}

.fa-thumbs-up:before {
  content: "\f164"
}

.fa-user-clock:before {
  content: "\f4fd"
}

.fa-allergies:before,
.fa-hand-dots:before {
  content: "\f461"
}

.fa-file-invoice:before {
  content: "\f570"
}

.fa-window-minimize:before {
  content: "\f2d1"
}

.fa-coffee:before,
.fa-mug-saucer:before {
  content: "\f0f4"
}

.fa-brush:before {
  content: "\f55d"
}

.fa-mask:before {
  content: "\f6fa"
}

.fa-magnifying-glass-minus:before,
.fa-search-minus:before {
  content: "\f010"
}

.fa-ruler-vertical:before {
  content: "\f548"
}

.fa-user-alt:before,
.fa-user-large:before {
  content: "\f406"
}

.fa-train-tram:before {
  content: "\e5b4"
}

.fa-user-nurse:before {
  content: "\f82f"
}

.fa-syringe:before {
  content: "\f48e"
}

.fa-cloud-sun:before {
  content: "\f6c4"
}

.fa-stopwatch-20:before {
  content: "\e06f"
}

.fa-square-full:before {
  content: "\f45c"
}

.fa-magnet:before {
  content: "\f076"
}

.fa-jar:before {
  content: "\e516"
}

.fa-note-sticky:before,
.fa-sticky-note:before {
  content: "\f249"
}

.fa-bug-slash:before {
  content: "\e490"
}

.fa-arrow-up-from-water-pump:before {
  content: "\e4b6"
}

.fa-bone:before {
  content: "\f5d7"
}

.fa-user-injured:before {
  content: "\f728"
}

.fa-face-sad-tear:before,
.fa-sad-tear:before {
  content: "\f5b4"
}

.fa-plane:before {
  content: "\f072"
}

.fa-tent-arrows-down:before {
  content: "\e581"
}

.fa-exclamation:before {
  content: "\21"
}

.fa-arrows-spin:before {
  content: "\e4bb"
}

.fa-print:before {
  content: "\f02f"
}

.fa-try:before,
.fa-turkish-lira-sign:before,
.fa-turkish-lira:before {
  content: "\e2bb"
}

.fa-dollar-sign:before,
.fa-dollar:before,
.fa-usd:before {
  content: "\24"
}

.fa-x:before {
  content: "\58"
}

.fa-magnifying-glass-dollar:before,
.fa-search-dollar:before {
  content: "\f688"
}

.fa-users-cog:before,
.fa-users-gear:before {
  content: "\f509"
}

.fa-person-military-pointing:before {
  content: "\e54a"
}

.fa-bank:before,
.fa-building-columns:before,
.fa-institution:before,
.fa-museum:before,
.fa-university:before {
  content: "\f19c"
}

.fa-umbrella:before {
  content: "\f0e9"
}

.fa-trowel:before {
  content: "\e589"
}

.fa-d:before {
  content: "\44"
}

.fa-stapler:before {
  content: "\e5af"
}

.fa-masks-theater:before,
.fa-theater-masks:before {
  content: "\f630"
}

.fa-kip-sign:before {
  content: "\e1c4"
}

.fa-hand-point-left:before {
  content: "\f0a5"
}

.fa-handshake-alt:before,
.fa-handshake-simple:before {
  content: "\f4c6"
}

.fa-fighter-jet:before,
.fa-jet-fighter:before {
  content: "\f0fb"
}

.fa-share-alt-square:before,
.fa-square-share-nodes:before {
  content: "\f1e1"
}

.fa-barcode:before {
  content: "\f02a"
}

.fa-plus-minus:before {
  content: "\e43c"
}

.fa-video-camera:before,
.fa-video:before {
  content: "\f03d"
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
  content: "\f19d"
}

.fa-hand-holding-medical:before {
  content: "\e05c"
}

.fa-person-circle-check:before {
  content: "\e53e"
}

.fa-level-up-alt:before,
.fa-turn-up:before {
  content: "\f3bf"
}

.fa-sr-only,
.fa-sr-only-focusable:not(:focus),
.sr-only,
.sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

:host,
:root {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-brands-400.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-brands-400.ttf) format("truetype")
}

.fa-brands,
.fab {
  font-weight: 400
}

.fa-monero:before {
  content: "\f3d0"
}

.fa-hooli:before {
  content: "\f427"
}

.fa-yelp:before {
  content: "\f1e9"
}

.fa-cc-visa:before {
  content: "\f1f0"
}

.fa-lastfm:before {
  content: "\f202"
}

.fa-shopware:before {
  content: "\f5b5"
}

.fa-creative-commons-nc:before {
  content: "\f4e8"
}

.fa-aws:before {
  content: "\f375"
}

.fa-redhat:before {
  content: "\f7bc"
}

.fa-yoast:before {
  content: "\f2b1"
}

.fa-cloudflare:before {
  content: "\e07d"
}

.fa-ups:before {
  content: "\f7e0"
}

.fa-wpexplorer:before {
  content: "\f2de"
}

.fa-dyalog:before {
  content: "\f399"
}

.fa-bity:before {
  content: "\f37a"
}

.fa-stackpath:before {
  content: "\f842"
}

.fa-buysellads:before {
  content: "\f20d"
}

.fa-first-order:before {
  content: "\f2b0"
}

.fa-modx:before {
  content: "\f285"
}

.fa-guilded:before {
  content: "\e07e"
}

.fa-vnv:before {
  content: "\f40b"
}

.fa-js-square:before,
.fa-square-js:before {
  content: "\f3b9"
}

.fa-microsoft:before {
  content: "\f3ca"
}

.fa-qq:before {
  content: "\f1d6"
}

.fa-orcid:before {
  content: "\f8d2"
}

.fa-java:before {
  content: "\f4e4"
}

.fa-invision:before {
  content: "\f7b0"
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"
}

.fa-centercode:before {
  content: "\f380"
}

.fa-glide-g:before {
  content: "\f2a6"
}

.fa-drupal:before {
  content: "\f1a9"
}

.fa-hire-a-helper:before {
  content: "\f3b0"
}

.fa-creative-commons-by:before {
  content: "\f4e7"
}

.fa-unity:before {
  content: "\e049"
}

.fa-whmcs:before {
  content: "\f40d"
}

.fa-rocketchat:before {
  content: "\f3e8"
}

.fa-vk:before {
  content: "\f189"
}

.fa-untappd:before {
  content: "\f405"
}

.fa-mailchimp:before {
  content: "\f59e"
}

.fa-css3-alt:before {
  content: "\f38b"
}

.fa-reddit-square:before,
.fa-square-reddit:before {
  content: "\f1a2"
}

.fa-vimeo-v:before {
  content: "\f27d"
}

.fa-contao:before {
  content: "\f26d"
}

.fa-square-font-awesome:before {
  content: "\e5ad"
}

.fa-deskpro:before {
  content: "\f38f"
}

.fa-sistrix:before {
  content: "\f3ee"
}

.fa-instagram-square:before,
.fa-square-instagram:before {
  content: "\e055"
}

.fa-battle-net:before {
  content: "\f835"
}

.fa-the-red-yeti:before {
  content: "\f69d"
}

.fa-hacker-news-square:before,
.fa-square-hacker-news:before {
  content: "\f3af"
}

.fa-edge:before {
  content: "\f282"
}

.fa-threads:before {
  content: "\e618"
}

.fa-napster:before {
  content: "\f3d2"
}

.fa-snapchat-square:before,
.fa-square-snapchat:before {
  content: "\f2ad"
}

.fa-google-plus-g:before {
  content: "\f0d5"
}

.fa-artstation:before {
  content: "\f77a"
}

.fa-markdown:before {
  content: "\f60f"
}

.fa-sourcetree:before {
  content: "\f7d3"
}

.fa-google-plus:before {
  content: "\f2b3"
}

.fa-diaspora:before {
  content: "\f791"
}

.fa-foursquare:before {
  content: "\f180"
}

.fa-stack-overflow:before {
  content: "\f16c"
}

.fa-github-alt:before {
  content: "\f113"
}

.fa-phoenix-squadron:before {
  content: "\f511"
}

.fa-pagelines:before {
  content: "\f18c"
}

.fa-algolia:before {
  content: "\f36c"
}

.fa-red-river:before {
  content: "\f3e3"
}

.fa-creative-commons-sa:before {
  content: "\f4ef"
}

.fa-safari:before {
  content: "\f267"
}

.fa-google:before {
  content: "\f1a0"
}

.fa-font-awesome-alt:before,
.fa-square-font-awesome-stroke:before {
  content: "\f35c"
}

.fa-atlassian:before {
  content: "\f77b"
}

.fa-linkedin-in:before {
  content: "\f0e1"
}

.fa-digital-ocean:before {
  content: "\f391"
}

.fa-nimblr:before {
  content: "\f5a8"
}

.fa-chromecast:before {
  content: "\f838"
}

.fa-evernote:before {
  content: "\f839"
}

.fa-hacker-news:before {
  content: "\f1d4"
}

.fa-creative-commons-sampling:before {
  content: "\f4f0"
}

.fa-adversal:before {
  content: "\f36a"
}

.fa-creative-commons:before {
  content: "\f25e"
}

.fa-watchman-monitoring:before {
  content: "\e087"
}

.fa-fonticons:before {
  content: "\f280"
}

.fa-weixin:before {
  content: "\f1d7"
}

.fa-shirtsinbulk:before {
  content: "\f214"
}

.fa-codepen:before {
  content: "\f1cb"
}

.fa-git-alt:before {
  content: "\f841"
}

.fa-lyft:before {
  content: "\f3c3"
}

.fa-rev:before {
  content: "\f5b2"
}

.fa-windows:before {
  content: "\f17a"
}

.fa-wizards-of-the-coast:before {
  content: "\f730"
}

.fa-square-viadeo:before,
.fa-viadeo-square:before {
  content: "\f2aa"
}

.fa-meetup:before {
  content: "\f2e0"
}

.fa-centos:before {
  content: "\f789"
}

.fa-adn:before {
  content: "\f170"
}

.fa-cloudsmith:before {
  content: "\f384"
}

.fa-pied-piper-alt:before {
  content: "\f1a8"
}

.fa-dribbble-square:before,
.fa-square-dribbble:before {
  content: "\f397"
}

.fa-codiepie:before {
  content: "\f284"
}

.fa-node:before {
  content: "\f419"
}

.fa-mix:before {
  content: "\f3cb"
}

.fa-steam:before {
  content: "\f1b6"
}

.fa-cc-apple-pay:before {
  content: "\f416"
}

.fa-scribd:before {
  content: "\f28a"
}

.fa-debian:before {
  content: "\e60b"
}

.fa-openid:before {
  content: "\f19b"
}

.fa-instalod:before {
  content: "\e081"
}

.fa-expeditedssl:before {
  content: "\f23e"
}

.fa-sellcast:before {
  content: "\f2da"
}

.fa-square-twitter:before,
.fa-twitter-square:before {
  content: "\f081"
}

.fa-r-project:before {
  content: "\f4f7"
}

.fa-delicious:before {
  content: "\f1a5"
}

.fa-freebsd:before {
  content: "\f3a4"
}

.fa-vuejs:before {
  content: "\f41f"
}

.fa-accusoft:before {
  content: "\f369"
}

.fa-ioxhost:before {
  content: "\f208"
}

.fa-fonticons-fi:before {
  content: "\f3a2"
}

.fa-app-store:before {
  content: "\f36f"
}

.fa-cc-mastercard:before {
  content: "\f1f1"
}

.fa-itunes-note:before {
  content: "\f3b5"
}

.fa-golang:before {
  content: "\e40f"
}

.fa-kickstarter:before {
  content: "\f3bb"
}

.fa-grav:before {
  content: "\f2d6"
}

.fa-weibo:before {
  content: "\f18a"
}

.fa-uncharted:before {
  content: "\e084"
}

.fa-firstdraft:before {
  content: "\f3a1"
}

.fa-square-youtube:before,
.fa-youtube-square:before {
  content: "\f431"
}

.fa-wikipedia-w:before {
  content: "\f266"
}

.fa-rendact:before,
.fa-wpressr:before {
  content: "\f3e4"
}

.fa-angellist:before {
  content: "\f209"
}

.fa-galactic-republic:before {
  content: "\f50c"
}

.fa-nfc-directional:before {
  content: "\e530"
}

.fa-skype:before {
  content: "\f17e"
}

.fa-joget:before {
  content: "\f3b7"
}

.fa-fedora:before {
  content: "\f798"
}

.fa-stripe-s:before {
  content: "\f42a"
}

.fa-meta:before {
  content: "\e49b"
}

.fa-laravel:before {
  content: "\f3bd"
}

.fa-hotjar:before {
  content: "\f3b1"
}

.fa-bluetooth-b:before {
  content: "\f294"
}

.fa-sticker-mule:before {
  content: "\f3f7"
}

.fa-creative-commons-zero:before {
  content: "\f4f3"
}

.fa-hips:before {
  content: "\f452"
}

.fa-behance:before {
  content: "\f1b4"
}

.fa-reddit:before {
  content: "\f1a1"
}

.fa-discord:before {
  content: "\f392"
}

.fa-chrome:before {
  content: "\f268"
}

.fa-app-store-ios:before {
  content: "\f370"
}

.fa-cc-discover:before {
  content: "\f1f2"
}

.fa-wpbeginner:before {
  content: "\f297"
}

.fa-confluence:before {
  content: "\f78d"
}

.fa-mdb:before {
  content: "\f8ca"
}

.fa-dochub:before {
  content: "\f394"
}

.fa-accessible-icon:before {
  content: "\f368"
}

.fa-ebay:before {
  content: "\f4f4"
}

.fa-amazon:before {
  content: "\f270"
}

.fa-unsplash:before {
  content: "\e07c"
}

.fa-yarn:before {
  content: "\f7e3"
}

.fa-square-steam:before,
.fa-steam-square:before {
  content: "\f1b7"
}

.fa-500px:before {
  content: "\f26e"
}

.fa-square-vimeo:before,
.fa-vimeo-square:before {
  content: "\f194"
}

.fa-asymmetrik:before {
  content: "\f372"
}

.fa-font-awesome-flag:before,
.fa-font-awesome-logo-full:before,
.fa-font-awesome:before {
  content: "\f2b4"
}

.fa-gratipay:before {
  content: "\f184"
}

.fa-apple:before {
  content: "\f179"
}

.fa-hive:before {
  content: "\e07f"
}

.fa-gitkraken:before {
  content: "\f3a6"
}

.fa-keybase:before {
  content: "\f4f5"
}

.fa-apple-pay:before {
  content: "\f415"
}

.fa-padlet:before {
  content: "\e4a0"
}

.fa-amazon-pay:before {
  content: "\f42c"
}

.fa-github-square:before,
.fa-square-github:before {
  content: "\f092"
}

.fa-stumbleupon:before {
  content: "\f1a4"
}

.fa-fedex:before {
  content: "\f797"
}

.fa-phoenix-framework:before {
  content: "\f3dc"
}

.fa-shopify:before {
  content: "\e057"
}

.fa-neos:before {
  content: "\f612"
}

.fa-square-threads:before {
  content: "\e619"
}

.fa-hackerrank:before {
  content: "\f5f7"
}

.fa-researchgate:before {
  content: "\f4f8"
}

.fa-swift:before {
  content: "\f8e1"
}

.fa-angular:before {
  content: "\f420"
}

.fa-speakap:before {
  content: "\f3f3"
}

.fa-angrycreative:before {
  content: "\f36e"
}

.fa-y-combinator:before {
  content: "\f23b"
}

.fa-empire:before {
  content: "\f1d1"
}

.fa-envira:before {
  content: "\f299"
}

.fa-gitlab-square:before,
.fa-square-gitlab:before {
  content: "\e5ae"
}

.fa-studiovinari:before {
  content: "\f3f8"
}

.fa-pied-piper:before {
  content: "\f2ae"
}

.fa-wordpress:before {
  content: "\f19a"
}

.fa-product-hunt:before {
  content: "\f288"
}

.fa-firefox:before {
  content: "\f269"
}

.fa-linode:before {
  content: "\f2b8"
}

.fa-goodreads:before {
  content: "\f3a8"
}

.fa-odnoklassniki-square:before,
.fa-square-odnoklassniki:before {
  content: "\f264"
}

.fa-jsfiddle:before {
  content: "\f1cc"
}

.fa-sith:before {
  content: "\f512"
}

.fa-themeisle:before {
  content: "\f2b2"
}

.fa-page4:before {
  content: "\f3d7"
}

.fa-hashnode:before {
  content: "\e499"
}

.fa-react:before {
  content: "\f41b"
}

.fa-cc-paypal:before {
  content: "\f1f4"
}

.fa-squarespace:before {
  content: "\f5be"
}

.fa-cc-stripe:before {
  content: "\f1f5"
}

.fa-creative-commons-share:before {
  content: "\f4f2"
}

.fa-bitcoin:before {
  content: "\f379"
}

.fa-keycdn:before {
  content: "\f3ba"
}

.fa-opera:before {
  content: "\f26a"
}

.fa-itch-io:before {
  content: "\f83a"
}

.fa-umbraco:before {
  content: "\f8e8"
}

.fa-galactic-senate:before {
  content: "\f50d"
}

.fa-ubuntu:before {
  content: "\f7df"
}

.fa-draft2digital:before {
  content: "\f396"
}

.fa-stripe:before {
  content: "\f429"
}

.fa-houzz:before {
  content: "\f27c"
}

.fa-gg:before {
  content: "\f260"
}

.fa-dhl:before {
  content: "\f790"
}

.fa-pinterest-square:before,
.fa-square-pinterest:before {
  content: "\f0d3"
}

.fa-xing:before {
  content: "\f168"
}

.fa-blackberry:before {
  content: "\f37b"
}

.fa-creative-commons-pd:before {
  content: "\f4ec"
}

.fa-playstation:before {
  content: "\f3df"
}

.fa-quinscape:before {
  content: "\f459"
}

.fa-less:before {
  content: "\f41d"
}

.fa-blogger-b:before {
  content: "\f37d"
}

.fa-opencart:before {
  content: "\f23d"
}

.fa-vine:before {
  content: "\f1ca"
}

.fa-paypal:before {
  content: "\f1ed"
}

.fa-gitlab:before {
  content: "\f296"
}

.fa-typo3:before {
  content: "\f42b"
}

.fa-reddit-alien:before {
  content: "\f281"
}

.fa-yahoo:before {
  content: "\f19e"
}

.fa-dailymotion:before {
  content: "\e052"
}

.fa-affiliatetheme:before {
  content: "\f36b"
}

.fa-pied-piper-pp:before {
  content: "\f1a7"
}

.fa-bootstrap:before {
  content: "\f836"
}

.fa-odnoklassniki:before {
  content: "\f263"
}

.fa-nfc-symbol:before {
  content: "\e531"
}

.fa-ethereum:before {
  content: "\f42e"
}

.fa-speaker-deck:before {
  content: "\f83c"
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"
}

.fa-patreon:before {
  content: "\f3d9"
}

.fa-avianex:before {
  content: "\f374"
}

.fa-ello:before {
  content: "\f5f1"
}

.fa-gofore:before {
  content: "\f3a7"
}

.fa-bimobject:before {
  content: "\f378"
}

.fa-facebook-f:before {
  content: "\f39e"
}

.fa-google-plus-square:before,
.fa-square-google-plus:before {
  content: "\f0d4"
}

.fa-mandalorian:before {
  content: "\f50f"
}

.fa-first-order-alt:before {
  content: "\f50a"
}

.fa-osi:before {
  content: "\f41a"
}

.fa-google-wallet:before {
  content: "\f1ee"
}

.fa-d-and-d-beyond:before {
  content: "\f6ca"
}

.fa-periscope:before {
  content: "\f3da"
}

.fa-fulcrum:before {
  content: "\f50b"
}

.fa-cloudscale:before {
  content: "\f383"
}

.fa-forumbee:before {
  content: "\f211"
}

.fa-mizuni:before {
  content: "\f3cc"
}

.fa-schlix:before {
  content: "\f3ea"
}

.fa-square-xing:before,
.fa-xing-square:before {
  content: "\f169"
}

.fa-bandcamp:before {
  content: "\f2d5"
}

.fa-wpforms:before {
  content: "\f298"
}

.fa-cloudversify:before {
  content: "\f385"
}

.fa-usps:before {
  content: "\f7e1"
}

.fa-megaport:before {
  content: "\f5a3"
}

.fa-magento:before {
  content: "\f3c4"
}

.fa-spotify:before {
  content: "\f1bc"
}

.fa-optin-monster:before {
  content: "\f23c"
}

.fa-fly:before {
  content: "\f417"
}

.fa-aviato:before {
  content: "\f421"
}

.fa-itunes:before {
  content: "\f3b4"
}

.fa-cuttlefish:before {
  content: "\f38c"
}

.fa-blogger:before {
  content: "\f37c"
}

.fa-flickr:before {
  content: "\f16e"
}

.fa-viber:before {
  content: "\f409"
}

.fa-soundcloud:before {
  content: "\f1be"
}

.fa-digg:before {
  content: "\f1a6"
}

.fa-tencent-weibo:before {
  content: "\f1d5"
}

.fa-symfony:before {
  content: "\f83d"
}

.fa-maxcdn:before {
  content: "\f136"
}

.fa-etsy:before {
  content: "\f2d7"
}

.fa-facebook-messenger:before {
  content: "\f39f"
}

.fa-audible:before {
  content: "\f373"
}

.fa-think-peaks:before {
  content: "\f731"
}

.fa-bilibili:before {
  content: "\e3d9"
}

.fa-erlang:before {
  content: "\f39d"
}

.fa-x-twitter:before {
  content: "\e61b"
}

.fa-cotton-bureau:before {
  content: "\f89e"
}

.fa-dashcube:before {
  content: "\f210"
}

.fa-42-group:before,
.fa-innosoft:before {
  content: "\e080"
}

.fa-stack-exchange:before {
  content: "\f18d"
}

.fa-elementor:before {
  content: "\f430"
}

.fa-pied-piper-square:before,
.fa-square-pied-piper:before {
  content: "\e01e"
}

.fa-creative-commons-nd:before {
  content: "\f4eb"
}

.fa-palfed:before {
  content: "\f3d8"
}

.fa-superpowers:before {
  content: "\f2dd"
}

.fa-resolving:before {
  content: "\f3e7"
}

.fa-xbox:before {
  content: "\f412"
}

.fa-searchengin:before {
  content: "\f3eb"
}

.fa-tiktok:before {
  content: "\e07b"
}

.fa-facebook-square:before,
.fa-square-facebook:before {
  content: "\f082"
}

.fa-renren:before {
  content: "\f18b"
}

.fa-linux:before {
  content: "\f17c"
}

.fa-glide:before {
  content: "\f2a5"
}

.fa-linkedin:before {
  content: "\f08c"
}

.fa-hubspot:before {
  content: "\f3b2"
}

.fa-deploydog:before {
  content: "\f38e"
}

.fa-twitch:before {
  content: "\f1e8"
}

.fa-ravelry:before {
  content: "\f2d9"
}

.fa-mixer:before {
  content: "\e056"
}

.fa-lastfm-square:before,
.fa-square-lastfm:before {
  content: "\f203"
}

.fa-vimeo:before {
  content: "\f40a"
}

.fa-mendeley:before {
  content: "\f7b3"
}

.fa-uniregistry:before {
  content: "\f404"
}

.fa-figma:before {
  content: "\f799"
}

.fa-creative-commons-remix:before {
  content: "\f4ee"
}

.fa-cc-amazon-pay:before {
  content: "\f42d"
}

.fa-dropbox:before {
  content: "\f16b"
}

.fa-instagram:before {
  content: "\f16d"
}

.fa-cmplid:before {
  content: "\e360"
}

.fa-facebook:before {
  content: "\f09a"
}

.fa-gripfire:before {
  content: "\f3ac"
}

.fa-jedi-order:before {
  content: "\f50e"
}

.fa-uikit:before {
  content: "\f403"
}

.fa-fort-awesome-alt:before {
  content: "\f3a3"
}

.fa-phabricator:before {
  content: "\f3db"
}

.fa-ussunnah:before {
  content: "\f407"
}

.fa-earlybirds:before {
  content: "\f39a"
}

.fa-trade-federation:before {
  content: "\f513"
}

.fa-autoprefixer:before {
  content: "\f41c"
}

.fa-whatsapp:before {
  content: "\f232"
}

.fa-slideshare:before {
  content: "\f1e7"
}

.fa-google-play:before {
  content: "\f3ab"
}

.fa-viadeo:before {
  content: "\f2a9"
}

.fa-line:before {
  content: "\f3c0"
}

.fa-google-drive:before {
  content: "\f3aa"
}

.fa-servicestack:before {
  content: "\f3ec"
}

.fa-simplybuilt:before {
  content: "\f215"
}

.fa-bitbucket:before {
  content: "\f171"
}

.fa-imdb:before {
  content: "\f2d8"
}

.fa-deezer:before {
  content: "\e077"
}

.fa-raspberry-pi:before {
  content: "\f7bb"
}

.fa-jira:before {
  content: "\f7b1"
}

.fa-docker:before {
  content: "\f395"
}

.fa-screenpal:before {
  content: "\e570"
}

.fa-bluetooth:before {
  content: "\f293"
}

.fa-gitter:before {
  content: "\f426"
}

.fa-d-and-d:before {
  content: "\f38d"
}

.fa-microblog:before {
  content: "\e01a"
}

.fa-cc-diners-club:before {
  content: "\f24c"
}

.fa-gg-circle:before {
  content: "\f261"
}

.fa-pied-piper-hat:before {
  content: "\f4e5"
}

.fa-kickstarter-k:before {
  content: "\f3bc"
}

.fa-yandex:before {
  content: "\f413"
}

.fa-readme:before {
  content: "\f4d5"
}

.fa-html5:before {
  content: "\f13b"
}

.fa-sellsy:before {
  content: "\f213"
}

.fa-sass:before {
  content: "\f41e"
}

.fa-wirsindhandwerk:before,
.fa-wsh:before {
  content: "\e2d0"
}

.fa-buromobelexperte:before {
  content: "\f37f"
}

.fa-salesforce:before {
  content: "\f83b"
}

.fa-octopus-deploy:before {
  content: "\e082"
}

.fa-medapps:before {
  content: "\f3c6"
}

.fa-ns8:before {
  content: "\f3d5"
}

.fa-pinterest-p:before {
  content: "\f231"
}

.fa-apper:before {
  content: "\f371"
}

.fa-fort-awesome:before {
  content: "\f286"
}

.fa-waze:before {
  content: "\f83f"
}

.fa-cc-jcb:before {
  content: "\f24b"
}

.fa-snapchat-ghost:before,
.fa-snapchat:before {
  content: "\f2ab"
}

.fa-fantasy-flight-games:before {
  content: "\f6dc"
}

.fa-rust:before {
  content: "\e07a"
}

.fa-wix:before {
  content: "\f5cf"
}

.fa-behance-square:before,
.fa-square-behance:before {
  content: "\f1b5"
}

.fa-supple:before {
  content: "\f3f9"
}

.fa-rebel:before {
  content: "\f1d0"
}

.fa-css3:before {
  content: "\f13c"
}

.fa-staylinked:before {
  content: "\f3f5"
}

.fa-kaggle:before {
  content: "\f5fa"
}

.fa-space-awesome:before {
  content: "\e5ac"
}

.fa-deviantart:before {
  content: "\f1bd"
}

.fa-cpanel:before {
  content: "\f388"
}

.fa-goodreads-g:before {
  content: "\f3a9"
}

.fa-git-square:before,
.fa-square-git:before {
  content: "\f1d2"
}

.fa-square-tumblr:before,
.fa-tumblr-square:before {
  content: "\f174"
}

.fa-trello:before {
  content: "\f181"
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"
}

.fa-get-pocket:before {
  content: "\f265"
}

.fa-perbyte:before {
  content: "\e083"
}

.fa-grunt:before {
  content: "\f3ad"
}

.fa-weebly:before {
  content: "\f5cc"
}

.fa-connectdevelop:before {
  content: "\f20e"
}

.fa-leanpub:before {
  content: "\f212"
}

.fa-black-tie:before {
  content: "\f27e"
}

.fa-themeco:before {
  content: "\f5c6"
}

.fa-python:before {
  content: "\f3e2"
}

.fa-android:before {
  content: "\f17b"
}

.fa-bots:before {
  content: "\e340"
}

.fa-free-code-camp:before {
  content: "\f2c5"
}

.fa-hornbill:before {
  content: "\f592"
}

.fa-js:before {
  content: "\f3b8"
}

.fa-ideal:before {
  content: "\e013"
}

.fa-git:before {
  content: "\f1d3"
}

.fa-dev:before {
  content: "\f6cc"
}

.fa-sketch:before {
  content: "\f7c6"
}

.fa-yandex-international:before {
  content: "\f414"
}

.fa-cc-amex:before {
  content: "\f1f3"
}

.fa-uber:before {
  content: "\f402"
}

.fa-github:before {
  content: "\f09b"
}

.fa-php:before {
  content: "\f457"
}

.fa-alipay:before {
  content: "\f642"
}

.fa-youtube:before {
  content: "\f167"
}

.fa-skyatlas:before {
  content: "\f216"
}

.fa-firefox-browser:before {
  content: "\e007"
}

.fa-replyd:before {
  content: "\f3e6"
}

.fa-suse:before {
  content: "\f7d6"
}

.fa-jenkins:before {
  content: "\f3b6"
}

.fa-twitter:before {
  content: "\f099"
}

.fa-rockrms:before {
  content: "\f3e9"
}

.fa-pinterest:before {
  content: "\f0d2"
}

.fa-buffer:before {
  content: "\f837"
}

.fa-npm:before {
  content: "\f3d4"
}

.fa-yammer:before {
  content: "\f840"
}

.fa-btc:before {
  content: "\f15a"
}

.fa-dribbble:before {
  content: "\f17d"
}

.fa-stumbleupon-circle:before {
  content: "\f1a3"
}

.fa-internet-explorer:before {
  content: "\f26b"
}

.fa-stubber:before {
  content: "\e5c7"
}

.fa-telegram-plane:before,
.fa-telegram:before {
  content: "\f2c6"
}

.fa-old-republic:before {
  content: "\f510"
}

.fa-odysee:before {
  content: "\e5c6"
}

.fa-square-whatsapp:before,
.fa-whatsapp-square:before {
  content: "\f40c"
}

.fa-node-js:before {
  content: "\f3d3"
}

.fa-edge-legacy:before {
  content: "\e078"
}

.fa-slack-hash:before,
.fa-slack:before {
  content: "\f198"
}

.fa-medrt:before {
  content: "\f3c8"
}

.fa-usb:before {
  content: "\f287"
}

.fa-tumblr:before {
  content: "\f173"
}

.fa-vaadin:before {
  content: "\f408"
}

.fa-quora:before {
  content: "\f2c4"
}

.fa-square-x-twitter:before {
  content: "\e61a"
}

.fa-reacteurope:before {
  content: "\f75d"
}

.fa-medium-m:before,
.fa-medium:before {
  content: "\f23a"
}

.fa-amilia:before {
  content: "\f36d"
}

.fa-mixcloud:before {
  content: "\f289"
}

.fa-flipboard:before {
  content: "\f44d"
}

.fa-viacoin:before {
  content: "\f237"
}

.fa-critical-role:before {
  content: "\f6c9"
}

.fa-sitrox:before {
  content: "\e44a"
}

.fa-discourse:before {
  content: "\f393"
}

.fa-joomla:before {
  content: "\f1aa"
}

.fa-mastodon:before {
  content: "\f4f6"
}

.fa-airbnb:before {
  content: "\f834"
}

.fa-wolf-pack-battalion:before {
  content: "\f514"
}

.fa-buy-n-large:before {
  content: "\f8a6"
}

.fa-gulp:before {
  content: "\f3ae"
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"
}

.fa-strava:before {
  content: "\f428"
}

.fa-ember:before {
  content: "\f423"
}

.fa-canadian-maple-leaf:before {
  content: "\f785"
}

.fa-teamspeak:before {
  content: "\f4f9"
}

.fa-pushed:before {
  content: "\f3e1"
}

.fa-wordpress-simple:before {
  content: "\f411"
}

.fa-nutritionix:before {
  content: "\f3d6"
}

.fa-wodu:before {
  content: "\e088"
}

.fa-google-pay:before {
  content: "\e079"
}

.fa-intercom:before {
  content: "\f7af"
}

.fa-zhihu:before {
  content: "\f63f"
}

.fa-korvue:before {
  content: "\f42f"
}

.fa-pix:before {
  content: "\e43a"
}

.fa-steam-symbol:before {
  content: "\f3f6"
}

:host,
:root {
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-regular-400.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-regular-400.ttf) format("truetype")
}

.fa-regular,
.far {
  font-weight: 400
}

:host,
:root {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-solid-900.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-solid-900.ttf) format("truetype")
}

.fa-solid,
.fas {
  font-weight: 900
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Brands";
  font-display: block;
  font-weight: 400;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-brands-400.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 900;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-solid-900.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 400;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-regular-400.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-regular-400.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: "FontAwesome";
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-solid-900.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: "FontAwesome";
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-brands-400.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: "FontAwesome";
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-regular-400.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-regular-400.ttf) format("truetype");
  unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc
}

@font-face {
  font-display: swap;
  font-family: "FontAwesome";
  font-display: block;
  src: url(/wp-content/themes/techkit/assets/webfonts/fa-v4compatibility.woff2) format("woff2"), url(/wp-content/themes/techkit/assets/webfonts/fa-v4compatibility.ttf) format("truetype");
  unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f27a
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%
}

body {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden],
template {
  display: none
}

a {
  background-color: transparent
}

a:active,
a:hover {
  outline: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b,
strong {
  font-weight: 700
}

dfn {
  font-style: italic
}

mark {
  background: #ff0;
  color: #000
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

figure {
  margin: 1em 40px
}

hr {
  box-sizing: content-box;
  height: 0
}

pre {
  overflow: auto
}

code,
kbd,
pre,
samp,
tt,
var {
  font-family: monospace, monospace;
  font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled],
html input[disabled] {
  cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0
}

input {
  line-height: normal
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}

legend {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto
}

optgroup {
  font-weight: 700
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,
th {
  padding: 0
}

p {
  margin-bottom: 1.5em
}

dfn,
cite,
em {
  font-style: italic
}

cite {
  font-weight: 600
}

blockquote {
  margin: 0 1.5em 20px;
  border-color: #14133b
}

address {
  margin: 0 0 1.5em
}

pre {
  background: #fff;
  font-family: Menlo, Consolas, monaco, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none
}

big {
  font-size: 125%
}

html {
  box-sizing: border-box
}

*,
*:before,
*:after {
  box-sizing: inherit
}

body {
  background: #fff
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: ""
}

blockquote,
q {
  quotes: "" ""
}

hr {
  background-color: #ebebeb;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em
}

ul,
ol {
  margin: 0 0 1em 1em;
  padding-left: 20px
}

ul {
  list-style: disc
}

ol {
  list-style: decimal
}

li>ul,
li>ol {
  margin-bottom: 0;
  margin-left: 1.5em
}

dt {
  font-weight: 700;
  margin-bottom: 10px
}

dd {
  margin: 0 1.5em 1.5em
}

img {
  height: auto;
  max-width: 100%
}

figure {
  margin: 1em 0
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
  width: 100%
}

table th,
table td {
  border: 1px solid #ebebeb;
  padding: 5px;
  text-align: center
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  background-color: #14133b;
  border: medium none;
  color: #fff;
  padding: 2px 15px
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  background-color: #000
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ebebeb
}

select {
  border: 1px solid #ebebeb
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111
}

textarea {
  width: 100%
}

form.post-password-form label>input {
  background: #f8f8f8;
  border: 1px solid #dcdcdc;
  padding: 10px 8px
}

form.post-password-form input {
  padding: 11px 15px;
  font-weight: 700
}

a:link,
a:visited {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none
}

a:hover,
a:focus,
a:active {
  text-decoration: none
}

a:focus {
  outline: thin dotted
}

a:hover,
a:active {
  outline: 0
}

.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;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000
}

#content[tabindex="-1"]:focus {
  outline: 0
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both
}

.widget {
  margin: 0 0 1.5em
}

.widget select {
  max-width: 100%
}

.byline,
.updated:not(.published) {
  display: none
}

.single .byline,
.group-blog .byline {
  display: inline
}

.page-links {
  clear: both;
  margin: 0 0 1.5em
}

.comment-content a {
  word-wrap: break-word
}

.bypostauthor {
  display: block
}

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none
}

.infinity-end.neverending .site-footer {
  display: block
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0
}

embed,
iframe,
object {
  max-width: 100%
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto
}

.wp-caption .wp-caption-text {
  margin: .8075em 0
}

.wp-caption-text {
  text-align: center
}

.gallery {
  margin-bottom: 1.5em
}

.gallery-item {
  display: inline-block;
  vertical-align: top;
  width: 100%
}

.gallery-columns-2 .gallery-item {
  max-width: 50%
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%
}

.gallery-columns-4 .gallery-item {
  max-width: 25%
}

.gallery-columns-5 .gallery-item {
  max-width: 20%
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%
}

.gallery-caption {
  display: block
}

.byline,
.updated:not(.published) {
  display: none
}

.page-links {
  clear: both;
  margin: 0 0 1.5em
}

@media (min-width:1200px) {
  .auto-clear>.col-lg-1:nth-child(12n+1) {
    clear: left
  }

  .auto-clear>.col-lg-2:nth-child(6n+1) {
    clear: left
  }

  .auto-clear>.col-lg-3:nth-child(4n+1) {
    clear: left
  }

  .auto-clear>.col-lg-4:nth-child(3n+1) {
    clear: left
  }

  .auto-clear>.col-lg-6:nth-child(odd) {
    clear: left
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .auto-clear>.col-md-1:nth-child(12n+1) {
    clear: left
  }

  .auto-clear>.col-md-2:nth-child(6n+1) {
    clear: left
  }

  .auto-clear>.col-md-3:nth-child(4n+1) {
    clear: left
  }

  .auto-clear>.col-md-4:nth-child(3n+1) {
    clear: left
  }

  .auto-clear>.col-md-6:nth-child(odd) {
    clear: left
  }
}

@media (min-width:768px) and (max-width:991px) {
  .auto-clear>.col-sm-1:nth-child(12n+1) {
    clear: left
  }

  .auto-clear>.col-sm-2:nth-child(6n+1) {
    clear: left
  }

  .auto-clear>.col-sm-3:nth-child(4n+1) {
    clear: left
  }

  .auto-clear>.col-sm-4:nth-child(3n+1) {
    clear: left
  }

  .auto-clear>.col-sm-6:nth-child(odd) {
    clear: left
  }
}

@media (max-width:767px) {
  .auto-clear>.col-1:nth-child(12n+1) {
    clear: left
  }

  .auto-clear>.col-2:nth-child(6n+1) {
    clear: left
  }

  .auto-clear>.col-3:nth-child(4n+1) {
    clear: left
  }

  .auto-clear>.col-4:nth-child(3n+1) {
    clear: left
  }

  .auto-clear>.col-6:nth-child(odd) {
    clear: left
  }
}

@media (min-width:768px) and (max-width:991px) {
  .ipad-fix {
    width: 100%
  }

  .ipad-fix-pad {
    width: 100%;
    padding-bottom: 30px
  }

  .ipad-width-50,
  .width-50 {
    width: 50%
  }

  .center-background {
    background: 0 0
  }
}

@media (max-width:767px) {
  .ipad-fix-pad {
    width: 100%;
    padding-bottom: 30px
  }
}

.padding-right-fix {
  padding-right: 50px
}

@media (max-width:767px) {
  .padding-right-fix {
    padding-right: 0
  }
}

.no-gutter>[class*=col-] {
  padding-right: 0;
  padding-left: 0
}

@media(max-width:991px) {
  .custom-align-center {
    text-align: center
  }

  .custom-align-left {
    text-align: left
  }

  .custom-align-right {
    text-align: right
  }
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
  margin-left: 0
}

.top:after,
.bottom:after,
.left:after,
.right:after {
  display: none
}

.content-left-align {
  padding-left: calc(calc(100% - 1170px)/2)
}

@media only screen and (max-width:1199px) {
  .content-left-align {
    padding-left: 15px;
    padding-right: 15px
  }
}

.content-right-align {
  padding-right: calc(calc(100% - 1170px)/2)
}

@media only screen and (max-width:1199px) {
  .content-right-align {
    padding-left: 15px;
    padding-right: 15px
  }
}

@media only screen and (max-width:991px) {
  .mobile-align-center .title-text-button {
    text-align: center !important
  }
}

@media only screen and (max-width:767px) {
  .image-full img {
    width: 100%
  }
}

@media(min-width:768px) {
  .slider__bg--startup {
    height: calc(100vh - 140px);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: center
  }
}

.bouncing-bubble-animation {
  animation: bouncebubble infinite 5s
}

.section-bottom-shape:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 100%;
  border-bottom: 200px solid #fff;
  border-right: 100vw solid transparent
}

@media(max-width:767px) {
  .section-bottom-shape:after {
    border-bottom: 70px solid #fff
  }
}

@-webkit-keyframes bouncebubble {
  1% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  25% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
  }

  75% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.sec-title .rtin-title {
  color: #14133b;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 0;
  position: relative
}

.sec-title .rtin-title span {
  color: #0554f2
}

.sec-title .sub-title {
  display: inline-block;
  color: #0554f2;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 2.4px;
  line-height: 1.5
}

.sec-title .section-line {
  height: 4px;
  background: #0554f2;
  border-radius: 2px;
  position: relative;
  display: inline-block
}

.sec-title .section-line-one {
  width: 40px
}

.sec-title .section-line-two {
  width: 20px
}

.sec-title .section-line-three {
  width: 10px
}

.sec-title.style1 .rtin-title {
  margin-bottom: 10px
}

.sec-title.style2 .rtin-text {
  margin-top: 18px
}

.sec-title.style3 .sub-title {
  position: relative;
  padding-left: 15px
}

.sec-title.style3 .sub-title:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 15px;
  width: 5px;
  background: #0554f2;
  left: 0
}

.sec-title.style4 .sub-title {
  padding-left: 0;
  font-size: 15px;
  padding: 4px 13px;
  background: #e6eeff;
  border-radius: 3px;
  margin-bottom: 14px
}

.sec-title.style4 .rtin-text {
  margin-top: 18px
}

.title-text-button .rtin-title {
  font-size: 40px;
  color: #14133b;
  line-height: 1.2;
  position: relative;
  margin-bottom: 18px
}

.title-text-button .rtin-title span {
  color: #0554f2
}

.text-style2.barhide .rtin-title {
  margin-bottom: 10px
}

.title-text-button .subtitle {
  font-size: 18px;
  color: #0554f2;
  font-weight: 500;
  letter-spacing: 2.4px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block
}

.title-text-button .rtin-content {
  font-size: 16px
}

.title-text-button {
  margin: 0 auto
}

.title-text-button .rtin-button {
  margin-top: 30px
}

.title-text-button ul {
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
  clear: both;
  overflow: hidden
}

.title-text-button ul li {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  color: #14133b;
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px
}

.title-text-button ul li:last-child {
  margin-bottom: 0
}

.title-text-button ul.single-list li:after {
  content: "\f058";
  font-family: 'Font Awesome 5 Free';
  font-size: 18px;
  font-weight: 600;
  color: #0554f2;
  position: absolute;
  top: 0;
  left: 0
}

.title-text-button.right ul li {
  text-align: right;
  padding-right: 30px
}

.title-text-button.right ul li:after {
  right: 0;
  left: inherit
}

.title-text-button ul.dubble-list li {
  width: 50%;
  float: left
}

.title-text-button ul.dubble-list li:after {
  content: "\f14a";
  font-family: 'Font Awesome 5 Free';
  font-size: 20px;
  font-weight: 600;
  color: #0554f2;
  position: absolute;
  top: 0;
  left: 0
}

@media(max-width:991px) {
  .custom-align-center .title-text-button {
    text-align: center
  }

  .title-text-button ul.dubble-list li {
    float: inherit;
    width: 100%;
    padding-right: 0
  }
}

@media(max-width:767px) {

  .sec-title .rtin-title br,
  .title-text-button .rtin-title br {
    display: none
  }
}

.title-text-button.barshow .subtitle {
  position: relative;
  display: inline-block;
  padding-left: 15px
}

.title-text-button.barshow .subtitle:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 15px;
  width: 5px;
  background: #0554f2;
  left: 0
}

.title-text-button .rtin-custom-text {
  color: #6e6e73;
  padding-bottom: 35px;
  border-bottom: 1px solid #0554f2;
  margin-bottom: 42px
}

.title-text-button .rtin-custom-text span {
  color: #0554f2
}

.owl-theme .owl-controls .owl-prev {
  left: -45px;
  opacity: 1 !important;
  font-size: 18px !important;
  margin: 0 4px !important;
  height: 40px;
  width: 40px;
  border-radius: 0 !important;
  position: absolute;
  transform: translateY(-50%);
  top: 40%;
  border: 2px solid #444;
  line-height: 1.4
}

.owl-theme .owl-controls .owl-prev i {
  line-height: 30px;
  color: #fff;
  transition: all .3s ease-out
}

.owl-theme .owl-controls .owl-prev:hover i {
  color: #fff;
  transition: all .3s ease-out
}

.owl-theme .owl-controls .owl-next {
  right: -45px;
  opacity: 1 !important;
  font-size: 18px !important;
  margin: 0 4px !important;
  height: 40px;
  width: 40px;
  border-radius: 0 !important;
  position: absolute;
  transform: translateY(-50%);
  top: 40%;
  border: 2px solid #444;
  line-height: 1.4
}

.owl-theme .owl-controls .owl-next i {
  line-height: 30px;
  color: #fff;
  transition: all .3s ease-out
}

.owl-theme .owl-controls .owl-next:hover {
  transition: all .3s ease-out
}

.owl-theme .owl-controls .owl-next:hover i {
  color: #fff;
  transition: all .3s ease-out
}

.rt-owl-nav-1 .section-title-holder {
  margin-bottom: 35px
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav {
  margin-top: 0
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav>div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  color: #0554f2;
  background-color: transparent;
  border: 1.5px solid #0554f2;
  box-shadow: 0px 0 2px 0px rgba(207, 213, 224, .75);
  transition: all .24s ease-in-out
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel:hover .owl-nav>div {
  visibility: visible;
  opacity: 1
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav>div:hover {
  background-color: #14133b;
  color: #fff
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-prev {
  left: 0
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-next {
  right: 0
}

.rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-nav i {
  font-size: 16px;
  line-height: 1
}

.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dots .owl-dot {
  position: relative
}

.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dot span {
  border: 1px solid #d9d9d9;
  background: #d9d9d9;
  width: 30px;
  height: 7px;
  border-radius: 6px;
  margin: 0 4px;
  transition: all .3s ease-in-out
}

.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dot:hover span {
  background: 0 0;
  width: 40px
}

.rt-owl-nav-1.slider-dot-enabled .owl-carousel .owl-dot.active span {
  background: 0 0;
  width: 40px
}

.rt-owl-nav-1 .owl-theme .owl-dots {
  margin-top: 50px !important;
  line-height: 1
}

.rt-owl-nav-1 .owl-theme .owl-dots .owl-dot span {
  margin: 0 5px
}

.rt-owl-nav-1 .owl-nav {
  opacity: 1;
  transition: all .3s ease-in-out
}

.rt-owl-nav-1:hover .owl-nav {
  opacity: 1
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav>div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #14133b;
  cursor: pointer;
  height: 50px;
  width: 50px;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  background: #d9d9d9;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 1px 1px 0px rgba(207, 213, 224, .75);
  transition: all .24s ease-in-out
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel:hover .owl-nav>div {
  visibility: visible;
  opacity: 1
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-prev {
  left: 0
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-next {
  right: 0
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav>div:hover {
  background-color: #14133b;
  color: #fff
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav i {
  font-size: 18px;
  line-height: 1
}

.rt-owl-nav-2.slider-nav-enabled .owl-carousel .owl-nav {
  margin-top: 0
}

.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dots {
  display: block !important
}

.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dot span {
  background: #d9d9d9;
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 50%;
  margin: 0 4px;
  transition: all .3s ease 0s
}

.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dot:hover span {
  background: #0554f2;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, .3)
}

.rt-owl-nav-2.slider-dot-enabled .owl-carousel .owl-dot.active span {
  background: #0554f2;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, .3)
}

.rt-owl-nav-2 .owl-theme .owl-dots {
  margin-top: 50px !important
}

.info-box {
  position: relative
}

.info-box .rtin-title {
  margin-bottom: 10px;
  line-height: 1.3;
  transition: all .3s ease-in-out
}

.info-box .rtin-title a {
  color: #14133b;
  transition: all .3s ease-in-out
}

.info-box .rtin-title a:hover {
  color: #0554f2
}

.info-box .rtin-item .rtin-icon {
  line-height: 1;
  font-size: 60px;
  color: #0554f2;
  transition: all .3s ease-in-out
}

.info-box ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.info-box ul li {
  margin-bottom: 0
}

.info-box ul li:last-child {
  margin-bottom: 0
}

.info-box .rtin-img img {
  border-radius: 4px
}

.info-box .rtin-item .rtin-text {
  margin-bottom: 3px;
  transition: all .3s ease-in-out
}

.info-box .rtin-item .rtin-button {
  margin-top: 15px
}

.info-style1 {
  border-radius: 10px;
  background-color: #edf6ff;
  padding: 30px 25px 25px;
  transition: all .3s ease-in-out
}

.info-style1:hover {
  background-color: #0554f2
}

.info-style1 .rtin-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.info-style1 .rtin-item .rtin-icon {
  display: inline-block;
  margin-right: 20px
}

.info-style1 .rtin-item .rtin-img {
  display: inline-block;
  margin-right: 15px
}

.info-style1 .rtin-item .rtin-img img {
  width: 90px
}

.info-style1:hover .rtin-item .button-style-1 {
  color: #fff
}

.info-style1:hover .rtin-item .btn-common path.rt-button-cap {
  stroke: #fff
}

.info-style1:hover .rtin-title,
.info-style1:hover .rtin-title a,
.info-style1:hover .rtin-title a:hover,
.info-style1:hover .rtin-item .rtin-text,
.info-style1:hover .rtin-item .rtin-icon {
  color: #fff
}

@media(max-width:425px) {
  .info-style1 .rtin-item {
    display: block;
    text-align: center
  }

  .info-style1 .rtin-item .rtin-icon {
    margin-bottom: 10px;
    margin-right: 0
  }
}

.info-style2 .rtin-item {
  position: relative;
  background-color: #fff
}

.info-style2 .rtin-item .rtin-icon {
  display: inline-block;
  margin-bottom: 15px;
  text-align: center
}

.info-style2 .rtin-item .rtin-img {
  display: block
}

.info-style2 .rtin-item .rtin-img img {
  margin-bottom: 30px
}

.info-style2 .rtin-item .rtin-icon img {
  width: 60px;
  height: 100%
}

.info-style2 .rtin-item:hover .rtin-icon {
  -webkit-animation: jump .4s linear;
  animation: jump .4s linear
}

.info-style3 .rtin-title {
  display: inline-flex;
  align-items: center
}

.info-style3 .rtin-item .rtin-icon {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  margin-right: 12px
}

.info-style3 .rtin-item .rtin-img {
  display: inline-block
}

.info-style3 .rtin-item .rtin-img img {
  margin-right: 12px;
  width: 36px
}

.info-style4 {
  position: relative;
  border-radius: 10px;
  background-color: #f5faff;
  padding: 50px 25px 43px;
  z-index: 2;
  transition: all .3s ease-in-out
}

.info-style4 .rtin-item .rtin-icon {
  display: inline-block;
  margin-bottom: 12px;
  text-align: center
}

.info-style4 .rtin-item .rtin-img {
  display: block;
  margin-bottom: 20px
}

.info-style4 .rtin-item .rtin-icon img {
  width: 60px;
  height: 100%
}

.info-style4:hover .rtin-item .button-style-1 {
  color: #fff
}

.info-style4:hover .rtin-item .btn-common path.rt-button-cap {
  stroke: #fff
}

.info-style4:hover .rtin-title,
.info-style4:hover .rtin-title a,
.info-style4:hover .rtin-title a:hover,
.info-style4:hover .rtin-item .rtin-text,
.info-style4:hover .rtin-item .rtin-icon {
  color: #fff
}

.info-style4 .info-overlay {
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.info-style4:hover .info-overlay {
  width: 100%;
  left: auto;
  right: 0;
  opacity: 1;
  visibility: visible
}

.info-style5 {
  position: relative;
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  background-color: #fff;
  padding: 67px 30px 60px;
  z-index: 2;
  transition: all .3s ease-in-out
}

.info-style5 .rtin-item .rtin-icon {
  display: inline-block;
  margin-bottom: 12px;
  text-align: center
}

.info-style5 .rtin-item .rtin-img {
  display: block;
  margin-bottom: 20px
}

.info-style5 .rtin-item .rtin-icon img {
  width: 60px;
  height: 100%
}

.info-style5:hover .rtin-item .button-style-1 {
  color: #fff
}

.info-style5:hover .rtin-item .btn-common path.rt-button-cap {
  stroke: #fff
}

.info-style5:hover .rtin-title,
.info-style5:hover .rtin-title a,
.info-style5:hover .rtin-title a:hover,
.info-style5:hover .rtin-item .rtin-text,
.info-style5:hover .rtin-item .rtin-icon {
  color: #fff
}

.info-style5 .info-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.info-style5:hover .info-overlay {
  height: 100%;
  bottom: 0;
  opacity: 1;
  visibility: visible
}

.info-style6 {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 35px 35px;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/4%);
  transition: all .3s ease-in-out
}

.info-style6 .rtin-item .rtin-icon {
  display: inline-block;
  margin-bottom: 20px;
  text-align: center
}

.info-style6 .rtin-item .rtin-img {
  display: inline-block;
  background-color: #d7d7d7;
  margin-bottom: 30px;
  box-shadow: 0px 0px 46px 0px rgb(0 0 0/14%)
}

.info-style6 .rtin-item .rtin-img img {
  border-radius: 0
}

.info-style6:hover {
  box-shadow: 0px 0px 50px 0px rgb(0 0 0/6%)
}

.info-style7 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #59597b;
  background-color: transparent;
  padding: 34px 15px 34px;
  z-index: 2;
  transition: all .3s ease-in-out
}

.info-style7 .rtin-item .rtin-icon {
  display: inline-block;
  margin-bottom: 12px;
  text-align: center
}

.info-style7 .rtin-item .rtin-img {
  display: block;
  margin-bottom: 20px
}

.info-style7 .rtin-item .rtin-icon img {
  width: 60px;
  height: 100%
}

.info-style7:hover .rtin-item .button-style-1 {
  color: #fff
}

.info-style7:hover .rtin-item .btn-common path.rt-button-cap {
  stroke: #fff
}

.info-style7:hover .rtin-title,
.info-style7:hover .rtin-title a,
.info-style7:hover .rtin-title a:hover,
.info-style7:hover .rtin-item .rtin-text,
.info-style7:hover .rtin-item .rtin-icon {
  color: #fff
}

.info-style7:hover {
  border: 1px solid transparent
}

.info-style7 .animted-bg {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #0554f2;
  transition: width 1s ease-in-out, height 1s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1
}

.info-style7:hover .animted-bg {
  width: 1500px;
  height: 1500px
}

.info-style8 {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 67px 30px 60px;
  z-index: 2;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/5%);
  transition: all .3s ease-in-out
}

.info-style8 .rtin-item .rtin-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 16px;
  width: 100px;
  height: 92px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center
}

.info-style8 .rtin-item .rtin-icon:before {
  position: absolute;
  content: "";
  justify-content: center;
  align-items: center;
  background: #f2f6fe;
  border-radius: 46% 54% 50% 50%/32% 33% 67% 68%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(-7deg)
}

.info-style8 .rtin-item .rtin-img {
  display: block;
  margin-bottom: 20px
}

.info-style8 .rtin-item .rtin-icon img {
  width: 60px;
  height: 100%
}

.info-style8:hover .rtin-item .button-style-1 {
  color: #fff
}

.info-style8:hover .rtin-item .btn-common path.rt-button-cap {
  stroke: #fff
}

.info-style8:hover .rtin-title,
.info-style8:hover .rtin-title a,
.info-style8:hover .rtin-title a:hover,
.info-style8:hover .rtin-item .rtin-text {
  color: #fff
}

.info-style8:hover .rtin-item .rtin-icon:before {
  background-color: #fff
}

.info-style8 .info-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.info-style8:hover .info-overlay {
  height: 100%;
  opacity: 1;
  visibility: visible
}

.feature-style1 .rtin-item {
  padding: 58px 32px 50px;
  background: #f8faff;
  position: relative
}

.feature-style1 .rtin-item .rtin-title {
  margin-bottom: 15px
}

.feature-style1 .rtin-item .rtin-title a {
  color: #14133b
}

.feature-style1 .rtin-item .rtin-title a:hover {
  color: #0554f2
}

.feature-style1 .rtin-item .rtin-button {
  margin-top: 15px
}

.feature-style1 .rtin-item:before {
  background: #e0e8f9;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 77px;
  left: 0;
  right: 0
}

.feature-style1 .rtin-item:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  top: 77px;
  left: 0;
  right: 0;
  z-index: 2;
  transition: all .4s ease;
  opacity: 0;
  visibility: hidden
}

.feature-style1 .rtin-item:hover:after {
  width: 100%;
  opacity: 1;
  visibility: visible;
  background: #0554f2
}

.feature-style1 .rtin-item .rtin-number {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  width: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #0554f2;
  background-color: #ebf1fb;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 15px;
  position: relative;
  transition: all .4s ease;
  z-index: 3
}

.feature-style1 .rtin-item:hover .rtin-number {
  background: #0554f2;
  color: #fff
}

.feature-style2 .rtin-item {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 50px 35px;
  z-index: 2;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/5%);
  transition: all .3s ease-in-out
}

.feature-style2 .rtin-item .info-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.feature-style2 .rtin-item:hover .info-overlay {
  height: 100%;
  opacity: 1;
  visibility: visible
}

.feature-style2 .rtin-item .rtin-title {
  margin-bottom: 15px
}

.feature-style2 .rtin-item .rtin-title a {
  color: #14133b
}

.feature-style2 .rtin-item .rtin-title a:hover {
  color: #0554f2
}

.feature-style2 .rtin-item .rtin-button {
  margin-top: 15px
}

.feature-style2 .rtin-item .rtin-number {
  font-size: 30px;
  font-weight: 500;
  color: #dad9f1;
  position: absolute;
  top: 50px;
  right: 35px
}

.feature-style2 .rtin-item .rtin-media {
  margin-bottom: 12px;
  line-height: 1
}

.feature-style2 .rtin-item .rtin-icon {
  color: #0554f2;
  font-size: 70px;
  transition: all .3s ease-in-out
}

.feature-style2 .rtin-item .rtin-img img {
  width: 70px
}

.feature-style2 .rtin-item:hover .rtin-title,
.feature-style2 .rtin-item:hover .rtin-title a,
.feature-style2 .rtin-item:hover .rtin-title a:hover,
.feature-style2 .rtin-item:hover .rtin-text,
.feature-style2 .rtin-item:hover .rtin-icon,
.feature-style2 .rtin-item:hover .button-style-1 {
  color: #fff
}

.feature-style2 .rtin-item:hover .btn-common path.rt-button-cap {
  stroke: #fff
}

.about-image-text .about-content .rtin-title {
  font-size: 40px;
  color: #14133b;
  line-height: 1.2;
  margin-bottom: 24px
}

.about-image-text .about-content .sub-rtin-title {
  font-size: 18px;
  color: #0554f2;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 2px;
  display: block
}

.about-image-text .about-content .rtin-content {
  color: #646464
}

.about-image-text .about-content .rtin-title span {
  font-weight: 300
}

.about-image-text .about-content .rtin-title span.primary-color {
  font-weight: 700
}

.about-image-text .about-content .rtin-title span.secondary-color {
  font-weight: 700
}

.about-image-text ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none
}

.about-image-text ul li {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  color: #14133b;
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px
}

.about-image-text ul li:last-child {
  margin-bottom: 0
}

.about-image-text ul li:after {
  content: "\f058";
  font-family: 'Font Awesome 5 Free';
  font-size: 18px;
  font-weight: 600;
  color: #0554f2;
  position: absolute;
  top: 0;
  left: 0
}

.about-layout-style1 .about-image {
  height: 100%
}

.about-layout-style1 .about-image img {
  border-radius: 4px;
  height: 100%;
  object-fit: cover
}

.about-layout-style1 .about-content {
  position: relative
}

@media (max-width:991px) {
  .about-layout-style1 .about-image {
    margin-top: 30px;
    text-align: center
  }

  .about-layout-style1 .about-image img {
    width: 100%
  }
}

.about-image-text .about-content .rtin-button {
  margin-top: 30px
}

.about-layout-style2 {
  position: relative
}

.about-layout-style2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.about-layout-style2>.single-item {
  flex: 0 0 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.about-layout-style2>.single-item>img {
  height: 100%;
  object-fit: cover
}

.about-layout-style2>.single-item:last-child {
  padding-left: 90px;
  padding-top: 110px;
  padding-bottom: 120px;
  padding-right: calc(calc(100% - 1170px)/2)
}

@media only screen and (max-width:1199px) {
  .about-layout-style2>.single-item:last-child {
    padding-left: 60px
  }
}

@media only screen and (max-width:991px) {
  .about-layout-style2 {
    flex-direction: column-reverse
  }

  .about-layout-style2>.single-item {
    flex: 0 0 100%;
    max-width: 100%
  }

  .about-layout-style2>.single-item>img {
    width: 100%
  }

  .about-layout-style2>.single-item:last-child {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 80px;
    padding-bottom: 80px
  }
}

@media only screen and (max-width:767px) {
  .about-layout-style2>.single-item:last-child {
    padding-top: 50px;
    padding-bottom: 60px
  }
}

.about-layout-style3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.about-layout-style3>.single-item {
  flex: 0 0 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.about-layout-style3>.single-item>img {
  height: 100%;
  object-fit: cover
}

.about-layout-style3>.single-item:first-child {
  padding-right: 50px;
  padding-top: 110px;
  padding-bottom: 120px;
  padding-left: calc(calc(100% - 1170px)/2)
}

@media only screen and (max-width:1199px) {
  .about-layout-style3>.single-item:first-child {
    padding-right: 30px
  }
}

@media only screen and (max-width:991px) {
  .about-layout-style3 {
    display: block
  }

  .about-layout-style3>.single-item:first-child {
    padding-right: 15px;
    padding-top: 80px;
    padding-bottom: 80px
  }

  .about-layout-style3>.single-item {
    flex: 0 0 100%;
    max-width: 100%
  }

  .about-layout-style3>.single-item>img {
    width: 100%
  }
}

@media only screen and (max-width:767px) {
  .about-layout-style3>.single-item:first-child {
    padding-top: 60px;
    padding-bottom: 60px
  }
}

.rtin-skills {
  overflow: hidden
}

.rtin-skills .rtin-skill-each {
  margin-top: 20px
}

.rtin-skills .rtin-skill-each .rtin-name {
  color: #14133b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px
}

.rtin-skills .rtin-skill-each .progress {
  background-color: #dad2d2;
  border-radius: 4px;
  box-shadow: none;
  height: 10px;
  overflow: visible;
  margin: 0
}

.rtin-skills .rtin-skill-each .progress .progress-bar {
  position: relative;
  background: #0554f2;
  border-radius: 4px;
  height: 10px;
  overflow: inherit;
  animation-duration: 1.5s;
  animation-delay: 1.2s;
  animation-name: fadeInLeft
}

.rtin-skills .rtin-skill-each .progress .progress-bar>span {
  font-size: 18px;
  font-weight: 500;
  color: #14133b;
  position: absolute;
  right: 0;
  top: -33px;
  padding-bottom: 10px;
  line-height: 1
}

.rtin-skills .rtin-skill-each .progress .progress-bar>span:before,
.rtin-skills .rtin-skill-each .progress .progress-bar>span:after {
  border: medium solid transparent;
  content: " ";
  height: 0;
  position: absolute;
  top: 100%;
  width: 0
}

.rtin-skills .rtin-skill-each .progress .progress-bar>span:before {
  border-top-color: #0554f2;
  border-width: 5px;
  left: 50%;
  margin-left: -5px
}

ul.rating {
  margin-bottom: 15px;
  padding: 0
}

ul.rating li {
  display: inline
}

ul.rating li i {
  color: #999
}

ul.rating li.star-rate i {
  color: #ff8f00
}

.service-default .gutters-0 .rtin-item {
  margin-bottom: 0
}

.service-default .gutters-5 .rtin-item {
  margin-bottom: 10px
}

.service-default .gutters-10 .rtin-item {
  margin-bottom: 20px
}

.service-default .gutters-20 .rtin-item {
  margin-bottom: 40px
}

.service-default .rtin-item .rtin-title {
  margin-bottom: 0
}

.service-default .rtin-item .rtin-title a {
  color: #14133b;
  transition: all .4s ease
}

.service-default .rtin-item .rtin-content {
  transition: all .4s ease
}

.service-default .service-button {
  margin-top: 30px
}

.service-layout1 .rtin-item .rtin-header {
  display: inline-flex;
  align-items: center;
  margin-bottom: 17px;
  line-height: 1
}

.service-layout1 .rtin-item .rtin-header i {
  font-size: 48px;
  margin-right: 22px;
  color: #0554f2;
  transition: all .4s ease
}

.service-layout1 .rtin-item {
  margin-bottom: 50px;
  padding: 34px 35px 29px;
  border-left: 2px solid #dee9fe;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all .4s ease
}

.service-layout1 .rtin-item:hover {
  border-radius: 5px;
  border-left: 2px solid transparent
}

.service-layout1 .rtin-item .services-item-overlay {
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.service-layout1 .rtin-item:hover .services-item-overlay {
  width: 100%;
  left: 0;
  opacity: 1;
  visibility: visible
}

.service-layout1 .rtin-item:hover .rtin-header i,
.service-layout1 .rtin-item:hover .rtin-header .rtin-title a,
.service-layout1 .rtin-item:hover .rtin-content {
  color: #fff
}

@media(max-width:426px) {
  .service-layout1 .rtin-item .rtin-header {
    display: inherit
  }

  .service-layout1 .rtin-item .rtin-header i {
    margin-right: 0;
    margin-bottom: 5px
  }
}

.service-layout2 .rtin-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 49px 47px 42px;
  z-index: 2;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/5%);
  transition: all .4s ease
}

.service-layout2 .rtin-item .rtin-header {
  line-height: 1
}

.service-layout2 .rtin-item .rtin-header i {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 80px;
  color: #0554f2;
  transition: all .4s ease
}

.service-layout2 .rtin-item .rtin-title {
  margin-bottom: 14px
}

.service-layout2 .service-more-button {
  margin-top: 15px
}

.service-layout2 .rtin-item .services-item-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.service-layout2 .rtin-item:hover .services-item-overlay {
  height: 100%;
  opacity: 1;
  visibility: visible;
  top: inherit;
  bottom: 0
}

.service-layout2 .rtin-item:hover .rtin-header i,
.service-layout2 .rtin-item:hover .rtin-header .rtin-title a,
.service-layout2 .rtin-item:hover .rtin-content {
  color: #fff
}

.service-layout2 .rtin-item:hover .button-style-1 {
  color: #fff;
  padding-left: 0;
  transition: all .4s ease
}

.service-layout2 .rtin-item .button-style-1 svg {
  visibility: hidden;
  opacity: 0;
  width: 23px;
  margin-left: 10px
}

.service-layout2 .rtin-item:hover .button-style-1 svg {
  visibility: visible;
  opacity: 1
}

.service-layout2 .rtin-item .button-style-1 path.rt-button-cap {
  stroke: #fff
}

.service-layout2.center .rtin-item .button-style-1 {
  padding-left: 30px
}

.service-layout2.center .rtin-item:hover .button-style-1 {
  padding-left: 0
}

.service-layout3 .rtin-item {
  display: flex;
  margin-bottom: 30px;
  padding: 47px 27px;
  background: #212046;
  border-radius: 10px;
  transition: all .4s ease
}

.service-layout3 .rtin-item:hover {
  background: #33325d
}

.service-layout3 .rtin-item .rtin-header {
  line-height: 1;
  margin-top: 5px
}

.service-layout3 .rtin-item .rtin-header i {
  font-size: 48px;
  margin-right: 22px;
  color: #0554f2;
  transition: all .4s ease
}

.service-layout3 .rtin-item:hover .rtin-header i {
  color: #fff
}

.service-layout3 .rtin-item .rtin-title {
  margin-bottom: 15px
}

.service-layout3 .rtin-item .rtin-title a {
  color: #fff
}

.service-layout3 .rtin-item .service-text {
  color: #fff
}

.service-layout3 .rtin-item .button-style-1 {
  color: #fff
}

.service-layout3 .rtin-item .button-style-1 path.rt-button-cap {
  stroke: #fff
}

.service-layout3 .service-more-button {
  margin-top: 15px
}

@media(max-width:435px) {
  .service-layout3 .rtin-item {
    display: block;
    text-align: center
  }

  .service-layout3 .rtin-item .rtin-header {
    margin-bottom: 15px;
    margin-top: 0
  }
}

.service-layout4 .rtin-item {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
  transition: all .4s ease
}

.service-layout4 .rtin-item .rtin-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px
}

.service-layout4 .rtin-item .rtin-img img {
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.service-layout4 .rtin-item:hover .rtin-img img {
  transform: scale3d(1.3, 1.3, 1.3);
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.service-layout4 .rtin-item .rtin-content {
  position: relative;
  border-radius: 10px;
  margin: -50px 20px 20px;
  padding: 32px 23px 37px;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/5%);
  background: #fff;
  z-index: 1
}

.service-layout4 .rtin-item .rtin-header {
  line-height: 1
}

.service-layout4 .rtin-item .rtin-header i {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 48px;
  color: #0554f2;
  transition: all .4s ease
}

.service-layout4 .rtin-item .rtin-title {
  margin-bottom: 14px
}

.service-layout4 .service-more-button {
  margin-top: 15px;
  text-align: center
}

.service-layout4 .rtin-item .services-item-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #0554f2;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.service-layout4 .rtin-item:hover .services-item-overlay {
  height: 100%;
  opacity: 1;
  visibility: visible;
  top: inherit;
  bottom: 0
}

.service-layout4 .rtin-item:hover .rtin-header i,
.service-layout4 .rtin-item:hover .rtin-header .rtin-title a,
.service-layout4 .rtin-item:hover .rtin-content {
  color: #fff
}

.service-layout4 .rtin-item:hover .button-style-1 {
  color: #fff;
  padding-left: 0;
  transition: all .4s ease
}

.service-layout4 .rtin-item .button-style-1 {
  padding-left: 33px
}

.service-layout4 .rtin-item .button-style-1 svg {
  visibility: hidden;
  opacity: 0;
  width: 23px;
  margin-left: 10px
}

.service-layout4 .rtin-item:hover .button-style-1 svg {
  visibility: visible;
  opacity: 1
}

.service-layout4 .rtin-item .button-style-1 path.rt-button-cap {
  stroke: #fff
}

@media(max-width:991px) {
  .service-layout4>.row {
    display: flex;
    justify-content: center
  }
}

.service-layout5 .rtin-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 49px 25px 42px;
  z-index: 2;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0/4%);
  transition: all .4s ease
}

.service-layout5 .rtin-item:hover {
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/8%)
}

.service-layout5 .rtin-item .rtin-content i {
  display: inline-block;
  margin-top: 20px;
  font-size: 64px;
  color: #0554f2;
  line-height: 1;
  transition: all .4s ease
}

.service-layout5 .rtin-item .rtin-title {
  margin-bottom: 14px
}

.service-layout5 .rtin-item:hover .rtin-title a {
  color: #0554f2
}

.service-layout5 .service-more-button {
  margin-top: 15px
}

.service-layout5 .button-style-1 {
  color: #14133b
}

.service-layout5 .btn-common path.rt-button-cap {
  stroke: #14133b
}

.service-layout5 .btn-common:hover path.rt-button-cap {
  stroke: #0554f2
}

.service-layout5 .rtin-item .button-style-1 svg {
  width: 23px;
  margin-left: 10px
}

@media(max-width:767px) {
  .single-techkit_service .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }
}

.service-single .single-service-inner .post-thumb {
  position: relative;
  margin-bottom: 44px
}

.service-single .single-service-inner .post-thumb img {
  border-radius: 10px
}

.service-single .single-service-inner .post-thumb .service-icon {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: #0554f2;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center
}

.service-single .single-service-inner .post-thumb .service-icon span {
  display: block;
  font-size: 18px;
  font-weight: 500
}

.service-single .single-service-inner .rtin-title {
  margin-bottom: 25px;
  font-size: 40px
}

.service-single .single-service-inner h3 {
  font-size: 28px;
  margin-bottom: 7px
}

.service-single .single-service-inner ul {
  list-style: none;
  padding: 0
}

.service-single .single-service-inner ul li {
  font-size: 15px;
  color: #14133b;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px
}

.service-single .single-service-inner ul li i {
  color: #0554f2
}

.service-single .single-service-inner .single-image-small {
  margin-bottom: 25px
}

.service-single .single-service-inner .single-image-small img {
  border-radius: 10px
}

.team-default .rtin-content ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.team-default .rtin-content .rtin-title {
  margin-bottom: 0;
  line-height: 1.2
}

.team-default .rtin-content .rtin-title a {
  color: #14133b
}

.team-default .rtin-content .rtin-title a:hover {
  color: #0554f2
}

.team-default .team-button {
  text-align: center;
  margin-top: 40px
}

.team-multi-layout-1 .rtin-content p {
  margin-top: 10px
}

.team-multi-layout-1 .rtin-content .rtin-designation {
  color: #676666;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 1px
}

.team-multi-layout-1 .rtin-item {
  position: relative;
  z-index: 1;
  margin-bottom: 30px
}

.team-multi-layout-1 .owl-carousel .owl-stage-outer {
  padding: 0 20px;
  width: calc(100% + 30px);
  margin-left: -20px
}

.team-multi-layout-1 .rtin-item .rtin-thums {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 26px;
  text-align: center
}

.team-multi-layout-1 .rtin-item .rtin-thums:before {
  position: absolute;
  content: "";
  width: 261px;
  height: 634px;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  background: rgba(0, 0, 0, .54);
  right: -44%;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease-in-out
}

.team-multi-layout-1 .rtin-item:hover .rtin-thums:before {
  opacity: 1;
  visibility: visible
}

@media(max-width:767px) {
  .team-multi-layout-1 .rtin-item .rtin-thums img {
    width: 100%
  }
}

.team-multi-layout-1 .rtin-item .rtin-social {
  right: 20px;
  position: absolute;
  top: 0;
  padding: 10px;
  margin: 0;
  height: 100%;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.team-multi-layout-1 .rtin-item .rtin-social li {
  margin-bottom: 10px;
  text-align: center;
  transform: translateX(20px);
  opacity: 0;
  transition: all .25s ease-in-out
}

.team-multi-layout-1 .rtin-item:hover .rtin-social li {
  transform: translateX(0);
  opacity: 1
}

.team-multi-layout-1 .rtin-item:hover .rtin-social li:nth-child(2n) {
  transition-delay: .1s
}

.team-multi-layout-1 .rtin-item:hover .rtin-social li:nth-child(3n) {
  transition-delay: .3s
}

.team-multi-layout-1 .rtin-item:hover .rtin-social li:nth-child(4n) {
  transition-delay: .5s
}

.team-multi-layout-1 .rtin-item:hover .rtin-social li:nth-child(5n) {
  transition-delay: .7s
}

.team-multi-layout-1 .rtin-item:hover .rtin-social li:nth-child(6n) {
  transition-delay: .9s
}

.team-multi-layout-1 .rtin-item .rtin-social li:last-child {
  margin-bottom: 0
}

.team-multi-layout-1 .rtin-item .rtin-social li a {
  color: #0554f2;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  display: block;
  border-radius: 50%;
  transition: all .3s ease-in-out
}

.team-multi-layout-1 .rtin-item .rtin-social li a:hover {
  color: #fff;
  background-color: #0554f2
}

.team-multi-layout-1.team-slider-style4 .rtin-item {
  margin-bottom: 0
}

.team-multi-layout-2 .rtin-content .rtin-title span {
  color: #868686;
  font-size: 15px;
  font-weight: 500
}

.team-multi-layout-2 .rtin-item {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px
}

.team-multi-layout-2 .rtin-content-wrap .rtin-thums {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
  width: 100%
}

.team-multi-layout-2 .rtin-content-wrap .rtin-thums img {
  transform: translateX(50px) scale(1.3) translateY(50px);
  filter: grayscale(100%);
  transition: all .4s ease
}

.team-multi-layout-2 .rtin-item:hover .rtin-content-wrap .rtin-thums img {
  transform: translateX(0px) scale(1) translateY(0px);
  filter: grayscale(0%);
  transition: all .4s ease
}

.team-multi-layout-2 .rtin-social {
  position: absolute;
  margin: 0;
  width: 100%;
  bottom: 30px
}

.team-multi-layout-2 .rtin-social li {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
  transform: translateX(15px);
  opacity: 0;
  visibility: visible;
  transition: all .4s ease;
  transition-delay: 0s
}

.team-multi-layout-2 .rtin-item:hover .rtin-social li {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible
}

.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(2n) {
  transition-delay: .2s
}

.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(3n) {
  transition-delay: .3s
}

.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(4n) {
  transition-delay: .4s
}

.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(5n) {
  transition-delay: .5s
}

.team-multi-layout-2 .rtin-item:hover .rtin-social li:nth-child(6n) {
  transition-delay: .6s
}

.team-multi-layout-2 .rtin-social li:last-child {
  margin-right: 0
}

.team-multi-layout-2 .rtin-social li a {
  background: #fff;
  font-size: 16px;
  transition: all .3s ease-in-out;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #0554f2;
  display: block;
  border-radius: 50%
}

.team-multi-layout-2 .rtin-social li a:hover {
  background: #0554f2;
  color: #fff
}

.team-multi-layout-2.team-slider-style5 .rtin-item {
  margin-bottom: 0
}

.team-default .no-gutters .rtin-item {
  margin-bottom: 0
}

.team-default.team-multi-layout-3 .rtin-content .rtin-title a {
  color: #fff
}

.team-default.team-multi-layout-3 .rtin-content .rtin-title a:hover {
  color: #ececec
}

.team-default.team-multi-layout-3 .rtin-content .rtin-designation {
  color: #fff;
  font-weight: 400
}

.team-default.team-multi-layout-3 .rtin-content p {
  color: #fff
}

.team-multi-layout-3 .rtin-item {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
  background: #fff;
  transition: all .3s ease-in-out
}

.team-multi-layout-3 .rtin-item .rtin-content .rtin-title {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .16s ease-in-out;
  transition-delay: .4s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content .rtin-title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.team-multi-layout-3 .rtin-item .rtin-content .rtin-designation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .16s ease-in-out;
  transition-delay: .6s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content .rtin-designation {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.team-multi-layout-3 .rtin-item .rtin-content ul {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .16s ease-in-out;
  transition-delay: .8s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.team-multi-layout-3 .rtin-item .rtin-content p {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all .5s ease-in-out;
  transition-delay: .8s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.team-multi-layout-3 .rtin-item .rtin-content-wrap {
  position: relative;
  overflow: hidden
}

.team-multi-layout-3 .rtin-item .rtin-content-wrap .rtin-thums {
  position: relative;
  background-color: #000;
  border-radius: 5px;
  display: inline-block;
  width: 100%
}

.team-multi-layout-3 .rtin-item .rtin-content-wrap .rtin-thums img {
  border-radius: 5px;
  transition: all ease .5s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content-wrap .rtin-thums img {
  opacity: .7
}

.team-multi-layout-3 .rtin-item .rtin-content-wrap .mask-wrap .rtin-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  opacity: 0;
  z-index: 1;
  padding: 30px 30px 15px;
  visibility: hidden;
  transition: all ease .5s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content-wrap .mask-wrap .rtin-content {
  bottom: 0;
  opacity: 1;
  visibility: visible
}

.team-multi-layout-3 .rtin-item .rtin-content-wrap .rtin-content:after {
  position: absolute;
  content: "";
  background-color: #0554f2;
  background-image: url(/wp-content/themes/techkit/assets/element/shape25.png);
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all ease .5s
}

.team-multi-layout-3 .rtin-item:hover .rtin-content-wrap .rtin-content:after {
  bottom: 0;
  opacity: 1;
  visibility: visible
}

.team-default.team-multi-layout-3 .rtin-content ul {
  margin-bottom: 15px
}

.team-multi-layout-3 .rtin-social li {
  display: inline-block;
  margin-right: 15px;
  transition: all .5s ease-in-out
}

.team-multi-layout-3 .rtin-social li:last-child {
  margin-right: 0
}

.team-multi-layout-3 .rtin-social li a {
  display: block;
  color: #fff;
  font-size: 16px;
  transition: all .3s ease-in-out
}

.team-multi-layout-3 .rtin-social li a:hover {
  color: #14133b
}

.team-multi-layout-3 .no-gutters .rtin-item .rtin-content-wrap .rtin-thums,
.team-multi-layout-3 .no-gutters .rtin-item .rtin-content-wrap .rtin-thums img {
  border-radius: 0
}

.team-single .rtin-thumb {
  background-color: #f9fafc;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 2
}

.team-single .rtin-thumb img {
  width: 100%;
  border-radius: 10px 10px 0 0
}

.team-single .rtin-heading {
  margin-bottom: 25px;
  line-height: 1
}

.team-single .rtin-heading h2 {
  color: #14133b;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-top: -7px
}

.team-single .rtin-heading .designation {
  font-size: 24px;
  color: #14133b;
  font-weight: 600;
  font-family: 'Barlow', sans-serif
}

.team-single .rtin-heading .designation span {
  font-size: 18px;
  color: #0554f2;
  font-weight: 600
}

.team-single .team-content-wrap .rtin-content {
  border-radius: 10px;
  padding: 50px 50px 52px;
  box-shadow: 0px 7px 70px 0px rgb(0 0 0/5%)
}

.team-single .team-content-wrap .rtin-content ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #444
}

.team-single .team-content-wrap ul.rtin-social {
  margin: 35px 0 0;
  padding: 0;
  list-style: none
}

.team-single .team-content-wrap ul.rtin-social li a {
  font-size: 16px;
  text-align: center;
  color: #0554f2;
  background: #f7f7f7;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 50px;
  display: block
}

.team-single .team-content-wrap .rtin-content ul.rtin-social li a:hover {
  background-color: #0554f2;
  color: #fff
}

.team-single .team-content-wrap .rtin-content ul li:last-child {
  margin-right: 0
}

.team-single .team-skill-wrap {
  border-radius: 10px;
  margin-top: 30px;
  padding: 50px 50px 54px;
  box-shadow: 0px 7px 70px 0px rgb(0 0 0/5%)
}

.team-single .rtin-skills .rtin-skill-each .progress .progress-bar>span:before {
  display: none
}

.team-single .rtin-team-info {
  border-radius: 0 0 10px 10px;
  padding: 33px 50px 26px;
  background-color: #fff;
  box-shadow: 0px 7px 70px 0px rgb(0 0 0/5%)
}

.team-single .rtin-team-info ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.team-single .rtin-team-info ul li {
  display: block;
  color: #868686;
  font-weight: 400;
  margin-right: 0;
  margin-bottom: 8px
}

.team-single .rtin-team-info ul li span {
  color: #14133b;
  font-weight: 500
}

.team-single .rtin-team-info a {
  color: #868686
}

.team-single .rtin-team-info a:hover {
  color: #0554f2
}

.team-single .team-content-wrap h4 {
  display: block;
  position: relative;
  color: #14133b;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
  z-index: 2
}

.team-single .team-contact-wrap {
  margin-top: 60px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 0
}

.team-single .team-contact-wrap h3 {
  display: block;
  position: relative;
  color: #14133b;
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1.4;
  z-index: 2
}

.team-single .rt-related-post {
  margin-top: 120px;
  margin-bottom: 0;
  padding-top: 110px;
  border-top: 1px solid #ebebeb
}

.team-single .rt-related-post .title-section h3 {
  font-size: 28px
}

@media(max-width:991px) {
  .team-single .team-contact-wrap {
    padding-top: 100px
  }

  .team-single .team-skill-wrap {
    margin-top: 25px
  }

  .team-single .rtin-team-info {
    width: 100%
  }

  .team-single .rt-related-post {
    margin-top: 80px;
    padding-top: 80px
  }
}

@media(max-width:767px) {
  .single-techkit_team .content-area {
    padding-top: 80px;
    padding-bottom: 50px
  }

  .team-single .team-contact-wrap {
    padding-top: 40px
  }
}

.case-default .rtin-item .rtin-title {
  margin-bottom: 0
}

.case-default .rtin-item .rtin-title a {
  color: #fff
}

.case-default .rtin-item .rtin-cat {
  color: #d7d7ef;
  font-weight: 500
}

.case-default .rtin-item .rtin-cat a {
  color: #d7d7ef;
  font-family: "Barlow", sans-serif
}

.case-default .case-button {
  margin-top: 20px;
  text-align: center
}

.case-multi-layout-1 .rtin-item {
  position: relative;
  margin-bottom: 30px
}

.case-multi-layout-1 .rtin-item .rtin-figure {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/10%)
}

.case-multi-layout-1 .rtin-item .rtin-content {
  background: #14133b;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  margin: 0 15px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
  transition: all .4s ease
}

.case-multi-layout-1 .rtin-item:hover .rtin-content {
  background-color: #0554f2
}

.case-multi-layout-1 .rtin-item .rtin-figure img {
  width: 100%;
  transition: 1.5s
}

.case-multi-layout-1 .rtin-item:hover .rtin-figure img {
  transform: scale(1.1);
  transition: 2s
}

.case-multi-layout-1.rt-related-post {
  margin-top: 110px
}

.case-multi-layout-1.rt-related-post .rtin-item {
  margin-bottom: 0
}

.case-multi-layout-1.rt-related-post .title-section .related-title {
  font-size: 30px
}

.case-multi-layout-1.case-slider-layout1 .rtin-item {
  margin-bottom: 0
}

.case-multi-layout-2 .no-gutters>div {
  padding: 0
}

.case-multi-layout-2 .no-gutters .rtin-item {
  margin-bottom: 0
}

.case-multi-layout-2 .rtin-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px
}

.case-multi-layout-2 .rtin-item .img-popup-icon {
  position: absolute;
  right: 0;
  left: 0;
  width: 65px;
  height: 65px;
  display: inline-block;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-30%) scaleY(0);
  background: #f5f5f5;
  text-align: center;
  line-height: 65px;
  font-size: 18px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.case-multi-layout-2 .rtin-item .img-popup-icon:hover {
  background-color: #0554f2;
  color: #fff
}

.case-multi-layout-2 .rtin-item .rtin-title,
.case-multi-layout-2 .rtin-item .rtin-cat {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  text-align: center;
  opacity: 0;
  visibility: hidden
}

.case-multi-layout-2 .rtin-item .rtin-title {
  transform: translateY(0px);
  margin-bottom: 15px
}

.case-multi-layout-2 .rtin-item .rtin-cat {
  transform: translateY(0px);
  color: #fff;
  font-size: 16px
}

.case-multi-layout-2 .rtin-item:hover .rtin-title,
.case-multi-layout-2 .rtin-item:hover .rtin-cat {
  opacity: 1;
  visibility: visible
}

.case-multi-layout-2 .rtin-item:hover .img-popup-icon {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
  transform: translateY(-50%) scaleY(1)
}

.case-multi-layout-2 .rtin-item:hover .rtin-title {
  transform: translateY(-47px);
  transition: 1s
}

.case-multi-layout-2 .rtin-item:hover .rtin-cat {
  transform: translateY(-30px);
  transition: 1.2s;
  color: rgba(255, 255, 255, .8)
}

.case-multi-layout-2 .rtin-item .item-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(20, 19, 59, .8);
  top: 0;
  left: 100%
}

.case-multi-layout-2 .rtin-item .rtin-figure {
  display: block !important
}

.case-multi-layout-2 .rtin-item .rtin-figure img {
  transform: scale(1);
  transition: 1s
}

.case-multi-layout-2 .rtin-item:hover .rtin-figure img {
  transform: scale(1.4);
  transition: 1.5s
}

.case-multi-layout-3 .rtin-item {
  position: relative;
  margin-bottom: 30px
}

.case-multi-layout-3 .rtin-item .rtin-figure {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/10%)
}

.case-multi-layout-3 .rtin-item .rtin-content {
  position: absolute;
  left: 20px;
  right: 60px;
  bottom: 20px;
  background-color: #0554f2;
  padding: 19px 19px 19px 30px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  text-align: left !important;
  transform: scale(.9);
  transition: all .4s ease
}

.case-multi-layout-3 .rtin-item:hover .rtin-content {
  transition: all .4s ease;
  transform: scale(1);
  opacity: 1;
  visibility: visible
}

.case-multi-layout-3 .rtin-item .rtin-figure img {
  width: 100%;
  transition: 1.5s
}

.case-multi-layout-3 .rtin-item:hover .rtin-figure img {
  transform: scale(1.1);
  transition: 2s
}

.case-multi-layout-3 .rtin-item .link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  padding: 12px 22px;
  background: #fff;
  color: #0554f2;
  text-align: center;
  border-radius: 5px;
  right: 0;
  transition: all .4s ease
}

.case-multi-layout-3 .rtin-item:hover .link {
  right: -33px;
  transition: all .4s ease
}

.case-multi-layout-3 .rtin-item .link:hover i {
  transform: rotate(360deg);
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px
}

.case-multi-layout-4 .rtin-item .rtin-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 40px 20px;
  transform: translateY(60px);
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item .rtin-content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 169px;
  left: 0;
  bottom: 30px;
  background-image: linear-gradient(transparent, #000), linear-gradient(transparent, #000);
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item .rtin-title {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  transform: translateY(17px);
  transition: all .4s ease;
  margin-bottom: 10px
}

@media(max-width:480px) {
  .case-multi-layout-4 .rtin-item .rtin-title {
    transform: translateY(35px)
  }
}

.case-multi-layout-4 .rtin-item .rtin-cat {
  color: #fff;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item .rtin-cat a {
  color: #fff
}

.case-multi-layout-4 .rtin-item .rtin-content p {
  color: #fff;
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item:hover .rtin-content:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 235px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(transparent, #0554f2), linear-gradient(transparent, #0554f2);
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item:hover .rtin-content {
  transform: translateY(0px);
  transition: all .4s ease
}

.case-multi-layout-4 .rtin-item:hover .rtin-title {
  transform: translateY(0px);
  transition-delay: .2s
}

.case-multi-layout-4 .rtin-item:hover .rtin-cat {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition-delay: .4s
}

.case-multi-layout-4 .rtin-item:hover .rtin-content p {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition-delay: .6s
}

@media(max-width:426px) {
  .case-multi-layout-4 .rtin-item .rtin-content {
    padding-left: 20px;
    padding-right: 20px
  }
}

.case-multi-layout-5 .rtin-item {
  margin-bottom: 30px
}

.case-multi-layout-5 .rtin-item .rtin-title {
  margin-bottom: 7px
}

.case-multi-layout-5 .rtin-item .rtin-title a {
  color: #14133b
}

.case-multi-layout-5 .rtin-item:hover .rtin-title a {
  color: #0554f2
}

.case-multi-layout-5 .rtin-item .rtin-cat a {
  color: #0554f2;
  font-weight: 500;
  font-family: "Barlow", sans-serif
}

.case-multi-layout-5 .rtin-item .link {
  font-size: 16px;
  font-weight: 500;
  color: #0554f2;
  font-family: "Barlow", sans-serif;
  transition: all .2s ease
}

.case-multi-layout-5 .rtin-item .link:hover {
  color: #14133b;
  padding-left: 7px
}

.case-multi-layout-5 .rtin-item p {
  margin-bottom: 15px
}

.case-multi-layout-5 .rtin-item .rtin-figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 23px
}

.case-multi-layout-5 .rtin-item .rtin-figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(5, 84, 242, .7);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.case-multi-layout-5 .rtin-item:hover .rtin-figure:after {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease
}

.case-multi-layout-5 .rtin-item .rtin-figure img {
  transform: scale(1);
  transition: all .4s ease
}

.case-multi-layout-5 .rtin-item:hover .rtin-figure img {
  transform: scale(1.3)
}

@media(max-width:991px) {
  .case-multi-layout-5>.row {
    justify-content: center
  }
}

.case-multi-layout-6 .rtin-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px
}

.case-multi-layout-6 .rtin-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(20, 19, 59, .75);
  transform: scale3d(.8, .8, .8);
  transition: all 1s cubic-bezier(.37, .31, .2, .85);
  opacity: 0;
  visibility: hidden;
  z-index: 1
}

.case-multi-layout-6 .rtin-item:hover:before {
  transform: scale3d(1.5, 1.5, 1.5);
  transition: all 1s cubic-bezier(.37, .31, .2, .85);
  opacity: 1;
  visibility: visible
}

.case-multi-layout-6 .rtin-item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, .16);
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale3d(1, 1, 1);
  border-radius: 5px;
  z-index: 2;
  transition: all 1.5s cubic-bezier(.37, .31, .2, .85);
  opacity: 0;
  visibility: hidden
}

.case-multi-layout-6 .rtin-item:hover:after {
  transform: translateY(-50%) translateX(-50%) scale3d(.85, .79, .85);
  transition: all 1.5s cubic-bezier(.37, .31, .2, .85);
  opacity: 1;
  visibility: visible
}

.case-multi-layout-6 .rtin-item .rtin-figure {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 40px 0px rgb(0 0 0/10%)
}

.case-multi-layout-6 .rtin-item .rtin-figure img {
  width: 100%;
  -webkit-transition: 1.5s;
  -o-transition: 1.5s;
  transition: 1.5s
}

.case-multi-layout-6 .rtin-item:hover .rtin-figure img {
  transform: scale(1.1);
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s
}

.case-multi-layout-6 .rtin-item .rtin-figure .link {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 500;
  color: #0554f2;
  padding: 10px 32px;
  border-radius: 5px 5px 0 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.case-multi-layout-6 .rtin-item:hover .rtin-figure .link {
  opacity: 1;
  visibility: visible;
  bottom: 45px;
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.case-multi-layout-6 .rtin-item .rtin-figure .link:hover {
  background-color: #0554f2;
  color: #fff
}

.case-multi-layout-6 .rtin-item .rtin-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  text-align: center;
  z-index: 3;
  overflow: hidden
}

.case-multi-layout-6 .rtin-item .rtin-title {
  transform: translateY(35px);
  display: inline-block;
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.case-multi-layout-6 .rtin-item:hover .rtin-title {
  transform: translateY(0px);
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.case-multi-layout-6 .rtin-item .rtin-cat {
  font-size: 18px;
  font-weight: 500;
  color: #fbfcff;
  display: block;
  margin-bottom: 8px;
  transform: translateY(-30px);
  transition: all 1s cubic-bezier(.37, .31, .2, .85)
}

.case-multi-layout-6 .rtin-item .rtin-cat>a {
  color: #fbfcff;
  display: inline-block
}

.case-multi-layout-6 .rtin-item:hover .rtin-cat {
  transform: translateY(0px)
}

@media(max-width:376px) {
  .case-multi-layout-6 .rtin-item .rtin-figure .link {
    padding: 10px 20px
  }

  .case-multi-layout-6 .rtin-item:hover .rtin-figure .link {
    bottom: 2px
  }
}

.case-cat-tab {
  margin-bottom: 40px;
  text-align: center
}

.case-cat-tab a {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  color: #5b6674;
  background: 0 0;
  border: 0;
  padding: 0;
  margin-right: 25px;
  margin-bottom: 10px
}

.case-cat-tab a.current {
  color: #0554f2
}

.case-multi-isotope-1 .item-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px
}

.case-multi-isotope-1 .rtin-figure {
  display: block !important
}

.case-multi-isotope-1 .item-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 84, 242, .8);
  top: 0;
  left: 100%
}

.case-multi-isotope-1 .rtin-figure .image__link {
  position: absolute;
  right: 0;
  left: 0;
  width: 70px;
  height: 70px;
  display: inline-block;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-30%) scaleY(0);
  background: #f5f5f5;
  text-align: center;
  line-height: 70px;
  font-size: 18px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.case-multi-isotope-1 .rtin-item:hover .image__link {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
  transform: translateY(-50%) scaleY(1)
}

.case-multi-isotope-1 .rtin-item .rtin-title {
  margin-bottom: 7px
}

.case-multi-isotope-1 .rtin-item .rtin-title a {
  color: #14133b
}

.case-multi-isotope-1 .rt-cat a {
  color: #14133b;
  font-weight: 500;
  font-family: "Barlow", sans-serif
}

.case-multi-isotope-1 .rt-cat a:hover,
.case-multi-isotope-1 .rtin-item .rtin-title a:hover {
  color: #0554f2
}

.case-multi-isotope-1 .rtin-content p {
  margin-top: 7px;
  margin-bottom: 0
}

.case-multi-isotope-1 .case-button {
  margin-top: 40px;
  text-align: center
}

@media(max-width:767px) {

  .post-type-archive-techkit_case .content-area,
  .tax-techkit_case_category .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .single-techkit_case .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }
}

.case-single .case-header {
  margin-bottom: 20px
}

.case-single .case-header .rtin-title {
  color: #0554f2;
  font-size: 40px
}

.case-single .case-header ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.case-single .case-header ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
  color: #7a7a7a
}

.case-single .case-header ul li:last-child {
  margin-right: 0
}

.case-single .case-header ul li a {
  color: #7a7a7a
}

.case-single .case-header ul li a:hover {
  color: #0554f2
}

.case-single .case-header ul li i {
  color: #0554f2;
  font-size: 15px;
  margin-right: 10px
}

.case-single .case-details-gallery {
  margin-right: -10px;
  margin-left: -10px;
  margin-top: 10px
}

.case-single .case-details-gallery .item {
  padding-right: 10px;
  padding-left: 10px
}

@media(max-width:991px) {
  .case-single .case-details-gallery .item:last-child .case-details-gallery {
    display: inherit;
    flex-wrap: inherit
  }

  .case-single .case-details-gallery .item:last-child .case-details-gallery>.item {
    float: left
  }
}

.case-single .case-details-gallery img {
  margin-bottom: 20px;
  border-radius: 10px
}

.case-single .rtin-thumbnail {
  position: relative;
  margin-top: 40px
}

.case-single .rtin-thumbnail img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 10px
}

.case-single .rtin-thumbnail .video-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute
}

.case-single .rtin-case-content h3 {
  font-size: 35px;
  margin-top: 30px;
  line-height: 1.2
}

.case-single .rtin-case-content p {
  margin-bottom: 25px
}

.case-single .post-navigation {
  margin: 50px 0 0;
  padding: 25px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px
}

@media(max-width:425px) {
  .case-single .post-navigation {
    padding: 20px 10px
  }
}

.case-single .rtin-play {
  display: inline-block;
  position: relative;
  text-align: center;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  margin: 0 auto;
  animation: pulse infinite 2s
}

.case-single .rtin-play:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #0554f2;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: all .3s ease-in-out
}

.case-single .rtin-play:after {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.3);
  transition: all .3s ease-in-out
}

.case-single .rtin-play:hover {
  color: #0554f2
}

.case-single .rtin-play:hover:before {
  opacity: 0;
  visibility: hidden;
  transform: scale(0)
}

.case-single .rtin-play:hover:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1)
}

.case-single .rtin-play i {
  margin-left: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%)
}

.case-single .entry-footer {
  margin-bottom: 50px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between
}

.case-single .entry-footer .post-share .share-links {
  opacity: 1;
  visibility: visible
}

.case-single .entry-footer .post-share>ul>li:hover .share-links {
  margin: 0
}

.case-single .entry-footer .like-share {
  font-size: 20px;
  text-align: right;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer
}

.case-single .entry-footer .like-share i {
  margin-right: 13px
}

.case-single .entry-footer .liked i {
  color: red
}

.review-wrapper .default-testimonial {
  margin-right: 295px;
  padding-right: 170px
}

@media (max-width:1666px) {
  .review-wrapper .default-testimonial {
    margin-right: 60px;
    padding-right: 190px
  }
}

@media (max-width:1366px) {
  .review-wrapper .default-testimonial {
    margin-right: 0;
    padding-right: 95px
  }
}

@media (max-width:1199px) {
  .review-wrapper .default-testimonial {
    margin-right: 0;
    padding-right: 0
  }
}

.review-wrapper .rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-next {
  right: -115px;
  top: 120px;
  opacity: 1;
  visibility: visible
}

.review-wrapper .rt-owl-nav-1.slider-nav-enabled .owl-carousel .owl-prev {
  right: -115px;
  top: 185px;
  left: auto;
  opacity: 1;
  visibility: visible
}

@media (max-width:1366px) {
  .review-wrapper .owl-nav {
    display: none
  }
}

.review-bg:before {
  position: absolute;
  content: "";
  width: 195px;
  height: 100%;
  background: #fff;
  right: 0;
  top: 0;
  bottom: 0
}

@media (max-width:1666px) {
  .review-bg:before {
    width: 60px
  }
}

@media (max-width:1199px) {
  .review-bg:before {
    width: inherit;
    background: 0 0
  }

  .review-wrapper {
    padding-right: 0;
    margin-left: 0
  }
}

.default-testimonial ul.rating {
  list-style: none;
  margin: 0;
  padding: 0
}

.default-testimonial ul.rating li i {
  color: #f57f19;
  font-size: 14px
}

.default-testimonial .rtin-item .rtin-name {
  font-size: 22px;
  margin-bottom: 0;
  position: relative
}

.rtin-testimonial-1 .rtin-item {
  position: relative;
  z-index: 1;
  border-radius: 4px
}

.rtin-testimonial-1 .rtin-item .rtin-content {
  background: #fff;
  padding: 71px 47px;
  border-radius: 10px;
  position: relative
}

.rtin-testimonial-1 .rtin-item .rtin-content:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 15px 0;
  border-color: #fff transparent transparent;
  bottom: -16px;
  left: 70px
}

.rtin-testimonial-1 .rtin-item .item-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  line-height: 1;
  font-size: 42px;
  color: #e5e5e5
}

.rtin-testimonial-1 .rtin-item .rtin-title {
  margin-bottom: 15px
}

.rtin-testimonial-1 .rtin-item .rtin-content p {
  margin-bottom: 0
}

.rtin-testimonial-1 .rtin-item .rtin-figure {
  margin-right: 15px
}

.rtin-testimonial-1 .rtin-item .rtin-figure img {
  width: 70px
}

.rtin-testimonial-1 .rtin-item .rtin-author {
  padding: 30px 0 0 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.rtin-testimonial-1 .rtin-item .author-info {
  text-align: left
}

.rtin-testimonial-2 .rtin-item {
  padding: 54px 35px 47px;
  border: 1px solid #e6e6e6;
  border-radius: 10px
}

.rtin-testimonial-2 .rtin-item .rtin-content {
  position: relative;
  text-align: center
}

.rtin-testimonial-2 .rtin-item .rtin-content p {
  font-size: 18px;
  color: #444;
  font-style: italic
}

.rtin-testimonial-2 .rtin-item .rtin-figure {
  margin-bottom: 30px
}

.rtin-testimonial-2 .rtin-item .rtin-thumb {
  position: relative;
  display: inline-block
}

.rtin-testimonial-2 .rtin-item .rtin-thumb img {
  width: 120px
}

.rtin-testimonial-2 .rtin-item .rtin-thumb .quote {
  position: absolute;
  right: -13px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
  background: #0554f2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 5px;
  bottom: 4px
}

.rtin-testimonial-2 .rtin-item .rtin-name {
  padding-top: 25px
}

.rtin-testimonial-2 .rtin-item .rtin-name:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 50px;
  background: #0554f2;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto
}

.rtin-testimonial-3 .rtin-item {
  background: #fff;
  position: relative;
  border-radius: 10px;
  z-index: 1
}

.rtin-testimonial-3 .rtin-item .rtin-content {
  padding: 45px;
  position: relative;
  text-align: center
}

.rtin-testimonial-3 .rtin-item .item-icon .quote {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 70px;
  height: 70px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #0554f2;
  color: #fff;
  font-size: 35px;
  border-radius: 50%;
  margin-bottom: 20px
}

.rtin-testimonial-3 .rtin-item .rtin-title {
  margin-bottom: 15px
}

.rtin-testimonial-3 .rtin-item .rtin-content p {
  margin-bottom: 0
}

.rtin-testimonial-3 .rtin-item .rtin-figure {
  margin-right: 15px
}

.rtin-testimonial-3 .rtin-item .rtin-author {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center
}

.rtin-testimonial-3 .rtin-item .rtin-author img {
  width: 60px
}

.rtin-testimonial-3 .rtin-item .author-info {
  text-align: left
}

.rtin-testimonial-grid .rtin-item {
  margin-bottom: 30px;
  box-shadow: 0 0 10px 0 rgb(222 222 222/50%)
}

.post-default .rtin-item-post .rtin-content h3 {
  line-height: 1.4;
  margin-bottom: 18px
}

.post-default .rtin-item-post .rtin-content h3 a {
  color: #14133b
}

.post-default .rtin-item-post .rtin-content h3 a:hover {
  color: #0554f2
}

.post-default ul.post-grid-meta {
  margin-bottom: 0;
  padding-left: 0
}

.post-default ul.post-grid-meta li {
  display: inline-block;
  color: #7a7a7a;
  font-size: 15px;
  margin-bottom: 3px;
  margin-right: 15px;
  line-height: 1
}

.post-default ul.post-grid-meta li:last-child {
  margin-right: 0
}

.post-default ul.post-grid-meta li i {
  color: #0554f2;
  margin-right: 10px
}

.post-default ul.post-grid-meta li a {
  color: #7a7a7a
}

.post-default ul.post-grid-meta li a:hover {
  color: #0554f2
}

.post-default .rtin-item-post .rtin-img img {
  width: 100%;
  max-width: 100%;
  transform: scale(1);
  -webkit-transition: all .18s ease-in-out;
  transition: all .18s ease-in-out
}

.post-default .rtin-item-post:hover .rtin-img img {
  transform: scale(1.1)
}

.post-default .rtin-item-post .blog-cat {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  background: #0554f2;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transition: .3s;
  transition: .3s
}

.post-default .rtin-item-post .blog-cat a {
  color: #fff
}

.post-default .rtin-item-post .blog-cat:hover {
  background: 0 0;
  border: 1px solid #fff
}

.post-grid-style1 ul.post-grid-meta {
  display: flex;
  justify-content: space-between
}

.post-grid-style1 .rtin-item-post {
  padding: 28px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  position: relative;
  transition: all .4s ease
}

.post-grid-style1 .row>div:first-child .rtin-item-post {
  border-radius: 10px 0 0 10px
}

.post-grid-style1 .row>div:last-child .rtin-item-post {
  border-radius: 0 10px 10px 0
}

.post-grid-style1 .rtin-item-post:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 0px 80.64px 3.36px rgb(0 0 0/4%);
  transform: scaleX(1.012) scaleY(1.01);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  z-index: -1
}

.post-grid-style1 .rtin-item-post:hover:before {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease
}

.post-grid-style1 .rtin-item-post .rtin-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative
}

.post-grid-style1 .rtin-item-post .rtin-img>a {
  display: block;
  position: relative;
  transition: all .4s ease
}

.post-grid-style1 .rtin-item-post .rtin-img>a:after {
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  top: 50%;
  height: 0;
  width: 0;
  border-radius: 100%;
  transform: translateY(-50%);
  right: 0;
  margin: 0 auto;
  content: "";
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 0
}

.post-grid-style1 .rtin-item-post:hover .rtin-img>a:after {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
  width: 100%;
  height: 100%;
  border-radius: 0
}

.post-grid-style1 .rtin-item-post .blog-date {
  color: #7a7a7a;
  font-size: 15px;
  margin-bottom: 5px;
  display: inline-block
}

.post-grid-style1 .rtin-item-post .blog-date i {
  color: #0554f2;
  margin-right: 10px
}

.post-grid-style1 .rtin-item-post .rtin-content {
  padding-top: 22px;
  background: #fff;
  border-radius: 20px;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out
}

@media(max-width:991px) {
  .post-grid-style1 .gutters-0 {
    display: flex;
    justify-content: center
  }
}

.post-grid-style2 .rtin-item-post .rtin-img {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  position: relative
}

.post-grid-style2 .rtin-item-post {
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 48px 0 rgba(155, 155, 155, .15);
  transition: all .3s ease-out
}

.post-grid-style2 .rtin-item-post:hover {
  box-shadow: 0 0 48px 0 rgba(155, 155, 155, .25)
}

.post-grid-style2 .rtin-item-post .rtin-content {
  padding: 30px 30px 25px;
  background: #fff;
  z-index: 2;
  position: relative;
  border-radius: 0 0 15px 15px
}

.post-grid-style2 .rtin-item-post.no_image .rtin-content {
  margin-top: 0
}

.post-default.post-grid-style2 ul.post-grid-meta {
  margin-bottom: 14px
}

.post-default.post-grid-style2 ul.post-grid-meta>li:after {
  display: none
}

.post-default.post-grid-style2 .blog-btn {
  color: #646464;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif
}

.post-default.post-grid-style2 .blog-btn i {
  padding-left: 8px;
  transition: all .14s ease-in-out
}

.post-default.post-grid-style2 .blog-btn:hover {
  color: #0554f2
}

.post-default.post-grid-style2 .blog-btn:hover i {
  padding-left: 14px
}

@media(max-width:991px) {
  .post-grid-style2 .row {
    display: flex;
    justify-content: center
  }
}

.post-grid-style3 .rtin-item-post {
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 48px 0 rgba(155, 155, 155, .15);
  transition: all .3s ease-out
}

.post-grid-style3 .rtin-item-post:hover {
  box-shadow: 0 0 48px 0 rgba(155, 155, 155, .25)
}

.post-grid-style3 .rtin-item-post .rtin-img {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  position: relative
}

.post-grid-style3 .rtin-item-post .rtin-img img {
  width: 100%;
  max-width: 100%;
  transform: scale(1);
  transition: all .18s ease-in-out
}

.post-grid-style3 .rtin-item-post:hover .rtin-img img {
  transform: scale(1.1)
}

.post-grid-style3 .rtin-item-post .rtin-content {
  padding: 30px;
  background: #fff;
  z-index: 2;
  position: relative;
  border-radius: 15px
}

.post-grid-style3 .rtin-item-post .rtin-content h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 18px
}

.post-grid-style3 .list-blog .rtin-item-post .rtin-content h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px
}

.post-grid-style3 .rtin-item-post .rtin-content h3 a {
  color: #14133b
}

.post-grid-style3 .rtin-item-post .rtin-content h3 a:hover {
  color: #0554f2
}

.post-grid-style3 .rtin-item-post .rtin-content p {
  margin-bottom: 18px
}

.post-grid-style3 .rtin-item-post ul.post-grid-meta {
  margin-bottom: 10px
}

.post-grid-style3 .rtin-item-post ul.post-grid-meta>li:after {
  display: none
}

.post-grid-style3 .rtin-item-post .blog-btn {
  color: #646464;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif
}

.post-grid-style3 .rtin-item-post .blog-btn i {
  padding-left: 8px;
  transition: all .14s ease-in-out
}

.post-grid-style3 .rtin-item-post .blog-btn:hover {
  color: #0554f2
}

.post-grid-style3 .rtin-item-post .blog-btn:hover i {
  padding-left: 14px
}

.post-grid-style3 .list-blog .rtin-item-post {
  display: flex
}

.post-grid-style3 .list-blog .rtin-item-post .rtin-img {
  border-radius: 15px 0 0 15px;
  width: 255px;
  flex: 1
}

.post-grid-style3 .list-blog .rtin-item-post .rtin-content {
  width: 65%
}

.post-grid-style3 .list-blog .rtin-item-post .rtin-img a {
  display: block;
  height: 100%
}

.post-grid-style3 .list-blog .rtin-item-post .rtin-img img {
  height: 100%;
  object-fit: cover
}

@media(max-width:991px) {
  .post-grid-style3 .list-blog .rtin-item-post .rtin-img {
    width: 200px
  }
}

@media(max-width:425px) {
  .post-grid-style3 .list-blog .rtin-item-post {
    display: inline-block
  }

  .post-grid-style3 .list-blog .rtin-item-post .rtin-img {
    border-radius: 15px 15px 0 0;
    width: auto
  }
}

.post-grid-style4 .rtin-item-post .rtin-img {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  position: relative
}

.post-grid-style4 .rtin-item-post .rtin-img:before {
  position: absolute;
  content: "";
  height: 160px;
  width: 100%;
  bottom: -60px;
  left: 0;
  z-index: 1;
  text-align: center;
  transition: all .4s ease;
  background-image: linear-gradient(transparent, #000), linear-gradient(transparent, #000)
}

.post-grid-style4 .rtin-item-post .rtin-img:after {
  position: absolute;
  content: "";
  height: 160px;
  width: 100%;
  bottom: -60px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all .4s ease;
  background-image: linear-gradient(transparent, #0554f2), linear-gradient(transparent, #0554f2)
}

.post-grid-style4 .rtin-item-post:hover .rtin-img:before {
  opacity: 0;
  visibility: hidden
}

.post-grid-style4 .rtin-item-post:hover .rtin-img:after {
  opacity: 1;
  visibility: visible
}

.post-default.post-grid-style4 .rtin-item-post:hover .rtin-img img {
  transform: scale(1)
}

.post-grid-style4 .rtin-item-post {
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 48px 0 rgba(155, 155, 155, .15);
  transition: all .3s ease-out
}

.post-grid-style4 .rtin-item-post:hover {
  margin-top: -10px;
  transition: all .4s ease;
  box-shadow: 0 0 48px 0 rgba(155, 155, 155, .25)
}

.post-grid-style4 .rtin-item-post .rtin-content {
  padding: 30px;
  background: #fff;
  z-index: 2;
  position: relative;
  border-radius: 0 0 15px 15px
}

.post-grid-style4 .rtin-item-post.no_image .rtin-content {
  margin-top: 0
}

.post-default.post-grid-style4 ul.post-grid-meta {
  color: #fff;
  margin: 0 30px;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  z-index: 2
}

.post-default.post-grid-style4 ul.post-grid-meta>li,
.post-default.post-grid-style4 ul.post-grid-meta li i,
.post-default.post-grid-style4 ul.post-grid-meta li a {
  color: #fff
}

.post-default.post-grid-style4 ul.post-grid-meta li a:hover {
  color: #fff
}

.post-default.post-grid-style4 ul.post-grid-meta>li:after {
  display: none
}

.post-default.post-grid-style4 .rtin-item-post .blog-cat {
  position: relative;
  top: inherit;
  right: inherit;
  color: #000;
  background: 0 0;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.post-default.post-grid-style4 .rtin-item-post .blog-cat a {
  color: #0554f2
}

.post-default.post-grid-style4 .rtin-item-post .blog-cat a:hover {
  color: #14133b
}

@media(max-width:991px) {
  .post-grid-style4 .row {
    display: flex;
    justify-content: center
  }
}

.post-slider-style3 .owl-carousel .owl-stage-outer {
  padding: 0 20px;
  width: calc(100% + 40px);
  margin-left: -20px
}

.post-slider-style3 .rtin-item-post {
  box-shadow: 0 0 15px 0 rgba(155, 155, 155, .15)
}

.post-slider-style3 .rtin-item-post:hover {
  box-shadow: 0 0 15px 0 rgba(155, 155, 155, .25)
}

.offer-active .rt-price-table-box .offer {
  position: absolute;
  top: 46px;
  left: -72px;
  transform: rotate(-50deg);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background-color: #0554f2;
  padding: 4px 20px;
  clip-path: polygon(16% 0, 86% 0, 100% 100%, 0% 100%);
  z-index: 2;
  width: 245px;
  text-align: center
}

.offer-active .rt-price-table-box .popular-shape:after {
  content: "";
  height: 170px;
  width: 244px;
  background-color: #0554f2;
  transform: rotate(-50deg);
  position: absolute;
  top: 45px;
  left: 6px;
  z-index: -2;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 16% 100%)
}

.default-pricing .rt-price-table-box ul li i {
  font-size: 12px;
  color: #b7b7b7;
  margin-right: 7px;
  transition: all .3s ease-in-out
}

.default-pricing .shadow-on {
  box-shadow: 0 8px 25px 0 rgba(0, 0, 0, .02)
}

.default-pricing.active-class .shadow-on,
.default-pricing .shadow-on:hover {
  box-shadow: 0 12px 35px 0 rgba(0, 0, 0, .09)
}

.rtin-pricing-layout1 {
  position: relative;
  transition: all .4s ease
}

.rtin-pricing-layout1 .rt-price-table-box .item-icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  justify-content: center;
  align-items: center;
  background: #edf6ff;
  border-radius: 50%;
  padding: 15px 10px;
  margin-bottom: 30px;
  line-height: 1
}

.rtin-pricing-layout1 .item-icon .rtin-icon {
  font-size: 48px
}

.rtin-pricing-layout1 .item-icon .rtin-img img {
  width: 57px
}

.rtin-pricing-layout1 .price-header .rtin-title {
  color: #14133b;
  margin-bottom: 15px;
  transition: all .4s ease
}

.rtin-pricing-layout1 .rtin-pricing-price .rtin-price {
  font-size: 36px;
  font-weight: 500;
  color: #0554f2;
  line-height: 1;
  position: relative;
  font-family: "Barlow", sans-serif;
  transition: all .4s ease
}

.rtin-pricing-layout1 .rtin-price .price-unit {
  font-size: 16px;
  font-weight: 400
}

.rtin-pricing-layout1 .rt-price-table-box ul {
  list-style: none;
  margin: 35px 0 20px;
  padding: 0
}

.rtin-pricing-layout1 .rt-price-table-box ul li {
  color: #5b6674;
  font-size: 16px;
  margin-bottom: 10px
}

.rtin-pricing-layout1 .rt-price-table-box ul li:last-child {
  margin-bottom: 0
}

.rtin-pricing-layout1 .rt-price-table-box {
  position: relative;
  background: #f8faff;
  border-radius: 4px;
  padding: 50px;
  transition: all .4s ease
}

.rtin-pricing-layout1 .rt-price-table-box .rtin-price-button {
  margin-top: 35px
}

.rtin-pricing-layout1 .rt-price-table-box .button-style-3 {
  border-color: #0554f2;
  padding: 10px 30px
}

.rtin-pricing-layout1 .rt-price-table-box:hover {
  background-color: #0554f2;
  transition: all .4s ease
}

.rtin-pricing-layout1 .rt-price-table-box:hover .button-style-3 {
  border-color: #fff;
  background-color: #fff
}

.rtin-pricing-layout1 .rt-price-table-box:hover .button-style-3:hover {
  color: #fff;
  background: 0 0
}

.rtin-pricing-layout1 .rt-price-table-box:hover ul li,
.rtin-pricing-layout1 .rt-price-table-box:hover ul li i,
.rtin-pricing-layout1 .rt-price-table-box:hover .rtin-pricing-price .rtin-price,
.rtin-pricing-layout1 .rt-price-table-box:hover .price-header .rtin-title {
  color: #fff !important
}

.rtin-pricing-layout1 .rt-price-table-box:before {
  border-radius: 10px 10px 0 0;
  top: 0
}

.rtin-pricing-layout1 .rt-price-table-box:after {
  border-radius: 0 0 10px 10px;
  bottom: 0
}

.rtin-pricing-layout1 .rt-price-table-box:before,
.rtin-pricing-layout1 .rt-price-table-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 14px;
  background: #0554f2;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  z-index: -1
}

.rtin-pricing-layout1 .rt-price-table-box:hover:before,
.rtin-pricing-layout1 .rt-price-table-box:hover:after {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease
}

.rtin-pricing-layout1 .rt-price-table-box:hover:before {
  top: -14px
}

.rtin-pricing-layout1 .rt-price-table-box:hover:after {
  bottom: -14px
}

.rtin-pricing-layout2 {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
  transition: all .45s ease-in-out
}

.rtin-pricing-layout2 .rt-price-table-box .item-icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  justify-content: center;
  align-items: center;
  background: #edf6ff;
  border-radius: 50%;
  padding: 15px 10px;
  margin-bottom: 30px;
  line-height: 1
}

.rtin-pricing-layout2 .item-icon .rtin-icon {
  font-size: 48px
}

.rtin-pricing-layout2 .item-icon .rtin-icon i {
  display: grid
}

.rtin-pricing-layout2 .item-icon .rtin-img img {
  width: 57px
}

.rtin-pricing-layout2 .price-header .rtin-title {
  color: #14133b;
  margin-bottom: 15px;
  transition: all .3s ease-in-out
}

.rtin-pricing-layout2 .rtin-pricing-price .rtin-price {
  font-size: 36px;
  font-weight: 500;
  color: #0554f2;
  line-height: 1;
  position: relative;
  font-family: "Barlow", sans-serif;
  transition: all .3s ease-in-out
}

.rtin-pricing-layout2 .rtin-price .price-unit {
  font-size: 16px;
  font-weight: 400
}

.rtin-pricing-layout2 .rt-price-table-box ul {
  list-style: none;
  margin: 35px 0 20px;
  padding: 0
}

.rtin-pricing-layout2 .rt-price-table-box ul li {
  color: #14133b;
  font-size: 16px;
  margin-bottom: 10px;
  transition: all .3s ease-in-out
}

.rtin-pricing-layout2 .rt-price-table-box ul li:last-child {
  margin-bottom: 0
}

.rtin-pricing-layout2 .rt-price-table-box {
  position: relative;
  background: #fff;
  border: 3px solid #edf6ff;
  border-radius: 10px;
  padding: 40px;
  transition: all .3s ease-in-out
}

.rtin-pricing-layout2 .rt-price-table-box .rtin-price-button {
  margin-top: 35px
}

.rtin-pricing-layout2 .rt-price-table-box .button-style-3 {
  border-color: #0554f2;
  padding: 10px 30px
}

.rtin-pricing-layout2 .rt-price-table-box:hover {
  background-color: #0554f2;
  border: 3px solid #0554f2
}

.rtin-pricing-layout2 .rt-price-table-box:hover .button-style-3 {
  border-color: #fff;
  background-color: #fff
}

.rtin-pricing-layout2 .rt-price-table-box:hover .button-style-3:hover {
  color: #fff;
  background: 0 0
}

.rtin-pricing-layout2 .rt-price-table-box:hover ul li,
.rtin-pricing-layout2 .rt-price-table-box:hover ul li i,
.rtin-pricing-layout2 .rt-price-table-box:hover .rtin-pricing-price .rtin-price,
.rtin-pricing-layout2 .rt-price-table-box:hover .price-header .rtin-title {
  color: #fff !important
}

.rtin-logo-slider .rtin-item {
  text-align: center;
  margin: 20px 15px;
  transition: all .3s ease-in-out
}

.rtin-logo-slider .rtin-item img {
  filter: grayscale(100%);
  transition: all 1s ease
}

.rtin-logo-slider .rtin-item:hover img {
  filter: invert(100%) sepia(92%) saturate(4039%) hue-rotate(222deg) brightness(97%) contrast(97%);
  transition: all 1s ease
}

.rtin-logo-slider .rt-owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center
}

.rtin-logo-slider .rt-owl-carousel .rtin-item img {
  width: auto;
  display: inline-block
}

.logo-grid-layout2 .gutters-5 .rtin-item {
  margin-bottom: 10px
}

.logo-grid-layout2 .gutters-10 .rtin-item {
  margin-bottom: 20px
}

.logo-grid-layout2 .gutters-20 .rtin-item {
  margin-bottom: 40px
}

.logo-grid-layout2 .rtin-item {
  text-align: center;
  background: #f8faff;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px 20px;
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out
}

.logo-grid-layout2 .rtin-item img {
  filter: grayscale(100%);
  transition: all 1s ease
}

.logo-grid-layout2 .rtin-item:hover img {
  filter: invert(100%) sepia(92%) saturate(4039%) hue-rotate(222deg) brightness(97%) contrast(97%);
  transition: all 1s ease
}

.logo-grid-layout3 .gutters-5 .rtin-item {
  margin-bottom: 10px
}

.logo-grid-layout3 .gutters-10 .rtin-item {
  margin-bottom: 20px
}

.logo-grid-layout3 .gutters-20 .rtin-item {
  margin-bottom: 40px
}

.logo-grid-layout3 .rtin-item {
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  padding: 35px 10px;
  margin-bottom: 20px;
  transition: all .3s ease-in-out
}

.logo-grid-layout3 .rtin-item .rtin-title {
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 24px
}

.logo-grid-layout3 .rtin-item img {
  transition: all 1s ease
}

.logo-grid-layout3 .rtin-item:hover img {
  animation: jump .4s linear
}

.rtin-address-default .rtin-item {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.rtin-address-default .rtin-item:last-child {
  margin-bottom: 0
}

.rtin-address-default .rtin-title {
  font-size: 20px;
  margin-bottom: 5px
}

.rtin-address-default .rtin-content {
  margin-bottom: 20px
}

.rtin-address-default .rtin-item .rtin-icon {
  color: #0554f2;
  font-size: 40px;
  margin-right: 20px;
  margin-top: 5px;
  line-height: 1
}

.rtin-address-default .rtin-item .rtin-info {
  font-size: 16px
}

.rtin-address-default .rtin-item .rtin-info h3 {
  color: #14133b;
  font-size: 24px;
  margin-bottom: 10px
}

.rtin-address-default .rtin-item .rtin-info a {
  color: #646464
}

.rtin-address-default .rtin-item .rtin-info ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.rtin-address-default .rtin-item .rtin-info ul li {
  display: block
}

.rtin-address-default .rtin-item .rtin-info .phone-no {
  font-style: italic;
  font-size: 24px
}

.rtin-address-default a.button-style-3 {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.rtin-contact-info .rtin-item {
  border-radius: 10px;
  background-color: #f8fcff;
  padding: 40px;
  display: flex
}

.rtin-contact-info .rtin-title {
  font-size: 26px;
  margin-bottom: 8px
}

.rtin-contact-info .rtin-icon {
  display: inline-block;
  font-size: 60px;
  margin-bottom: 17px;
  margin-right: 20px;
  color: #0554f2;
  line-height: 1;
  transition: all .4s ease
}

.rtin-contact-info .rtin-img img {
  width: 60px
}

.rtin-contact-info:hover .rtin-img img {
  animation: jump .4s linear
}

.rtin-contact-info .rtin-img {
  display: inline-block;
  margin-bottom: 25px;
  margin-right: 20px
}

.rtin-contact-info .rtin-text {
  font-size: 18px;
  line-height: 1.6;
  color: #646464;
  margin-bottom: 0
}

.rtin-contact-info .rtin-text a {
  color: #646464
}

.rtin-contact-info .rtin-text a:hover {
  color: #0554f2
}

@media(max-width:375px) {
  .rtin-contact-info .rtin-item {
    display: inherit;
    text-align: center
  }

  .rtin-contact-info .rtin-icon,
  .rtin-contact-info .rtin-img {
    margin-right: 0
  }
}

.cta-default .action-box h2 span {
  font-style: italic;
  font-weight: 300
}

.cta-style1 .action-box h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px
}

.cta-style1 .action-box .rtin-subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  display: block;
  margin-bottom: 10px
}

.cta-style1 .action-box .rtin-button {
  margin-top: 40px
}

.cta-style2 .action-box {
  display: flex;
  align-items: center
}

.cta-style2 .action-box h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 0
}

.cta-style2 .action-box .rtin-button {
  text-align: right;
  display: flex;
  justify-content: flex-end
}

.cta-style2 .action-box .rtin-button .item1 {
  margin-right: 15px
}

@media (max-width:991px) {
  .cta-style2 .action-box h2 {
    font-size: 38px
  }

  .cta-style2 .action-box {
    display: inherit;
    text-align: center
  }

  .cta-style2 .action-box .rtin-button {
    margin-top: 25px;
    text-align: center;
    justify-content: center
  }
}

@media (max-width:767px) {
  .cta-default .action-box h2 br {
    display: none
  }
}

@media (max-width:375px) {
  .cta-style2 .action-box .rtin-button .item1 {
    margin-right: 0;
    margin-bottom: 15px
  }

  .cta-style2 .action-box .rtin-button {
    display: inherit
  }
}

.rt-accordion .accordion-button:after,
.rt-accordion .accordion-button:not(.collapsed):after {
  display: none
}

.rt-accordion .accordion-button:before {
  position: absolute;
  right: 20px;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  background-image: none;
  font-size: 16px;
  text-align: right
}

.rt-accordion .accordion-button:not(.collapsed):before {
  transform: rotate(-180deg)
}

.rt-accordion .accordion-header .accordion-button:not(.collapsed) {
  border-radius: 5px;
  border: 1px solid transparent;
  background: #0554f2;
  color: #fff
}

.rt-accordion .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none
}

.rt-accordion .accordion-item {
  border: none;
  margin-bottom: 10px
}

.rt-accordion .accordion-item:last-child {
  margin-bottom: 0 !important
}

.rt-accordion .accordion-collapse.show {
  border: none;
  color: #646464;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 7px 65px 0px rgb(0 0 0/5%);
  transition: all .3s ease-in-out
}

.rt-accordion .accordion-header .accordion-button {
  position: relative;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  font-size: 20px;
  color: #14133b;
  line-height: 1.4;
  transition: all .3s ease-in-out
}

.rt-accordion .accordion-body {
  padding: 20px 30px 22px
}

.rt-accordion .accordion-body p {
  margin-bottom: 0
}

.elementor-accordion .elementor-accordion-item {
  border: none !important;
  margin-bottom: 30px
}

.elementor-accordion .elementor-accordion-item:last-child {
  margin-bottom: 0
}

.elementor-accordion .elementor-accordion-item .elementor-tab-title {
  position: relative;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  font-weight: 500;
  font-size: 20px;
  color: #14133b;
  line-height: 1.4;
  transition: all .3s ease-in-out
}

.elementor-accordion .elementor-accordion-item .elementor-tab-title a {
  color: #14133b
}

.elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active {
  border-radius: 5px;
  border: 1px solid transparent;
  background: #0554f2;
  color: #fff
}

.elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active a {
  color: #fff
}

.elementor-accordion .elementor-accordion-item .elementor-tab-content {
  border: none;
  color: #646464;
  position: relative;
  padding: 20px 30px 22px;
  box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 5%);
  transition: all .3s ease-in-out
}

.elementor-accordion .elementor-accordion-item .elementor-tab-content p {
  margin-bottom: 0
}

.elementor-accordion .elementor-tab-title .elementor-accordion-icon {
  width: inherit
}

.elementor-accordion .elementor-tab-title .elementor-accordion-icon>span {
  position: relative;
  top: 1px;
  font-size: 22px;
  color: #14133b
}

.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
  color: #fff;
  top: 1px;
  line-height: 0
}

@media(max-width:767px) {

  .elementor-accordion .elementor-accordion-item .elementor-tab-content,
  .elementor-accordion .elementor-accordion-item .elementor-tab-title {
    padding-left: 20px;
    padding-right: 20px
  }
}

.video-default {
  position: relative;
  z-index: 1
}

.video-default .item-icon .rtin-play i {
  margin-left: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%)
}

.video-default .rtin-video img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.video-default .rtin-video .item-icon .rtin-play {
  display: inline-block;
  position: relative;
  text-align: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  margin: 0 auto;
  z-index: 0;
  animation: pulse infinite 2s
}

.video-default .rtin-video .item-icon .rtin-play:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #0554f2;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: all .3s ease-in-out
}

.video-style1 .rtin-video .item-img:after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(21, 30, 34, .8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0
}

.video-style1 .rtin-video .item-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  margin: 0 auto;
  text-align: center;
  z-index: 1
}

.video-style1 .rtin-video .item-img {
  position: relative;
  z-index: 1
}

.video-style2 .image-small {
  position: absolute;
  padding: 10px;
  background: #fff;
  right: -67px;
  top: 222px;
  width: 364px;
  height: 281px
}

.video-style2 .rtin-video .item-icon {
  position: absolute;
  right: 255px;
  top: 200px
}

@media(max-width:991px) {
  .video-style2 .image-small {
    display: none
  }

  .video-style1 .rtin-video .item-icon,
  .video-style2 .rtin-video .item-icon {
    right: 0;
    left: 0;
    top: 50%;
    bottom: inherit;
    transform: translateY(-50%);
    text-align: center
  }
}

.video-style3 .rtin-video {
  display: inline-flex;
  justify-content: center;
  align-items: center
}

.video-style3 .rtin-video .rtin-title {
  font-size: 20px;
  padding-left: 27px;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: left
}

.video-style4 .rtin-video .item-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  justify-content: center;
  text-align: center
}

.video-style4 .rtin-video .item-img {
  margin-right: 50px
}

.video-style4 .rtin-video .item-img img {
  border-radius: 50%;
  padding: 30px 0
}

.video-style4 .rtin-video .shape {
  position: absolute;
  content: "";
  height: 100%;
  width: 335px;
  right: 0;
  top: 0;
  background: #0554f2;
  z-index: -1
}

@media(max-width:767px) {
  .video-style4 .rtin-video .item-img {
    margin-right: 0
  }

  .video-style4 .rtin-video .shape {
    display: none
  }
}

.progress-circular-layout {
  text-align: center
}

.progress-circular-layout .progress-circular {
  margin-bottom: 15px
}

.progress-circular-layout .rtin-title {
  margin-bottom: 6px;
  color: #646464;
  font-size: 20px
}

.rtin-progress-bar {
  overflow: hidden
}

.rtin-progress-bar .rtin-name {
  color: #14133b;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px
}

@media(max-width:480px) {
  .rtin-progress-bar .rtin-name {
    font-size: 20px !important
  }
}

.rtin-progress-bar .progress {
  background-color: #f0f0f0;
  border-radius: 4px;
  box-shadow: none;
  overflow: visible;
  margin: 0
}

.rtin-progress-bar .progress .progress-bar {
  position: relative;
  background: #0554f2;
  border-radius: 4px;
  height: 10px;
  overflow: inherit;
  animation-duration: 1.5s;
  animation-delay: 1.2s;
  animation-name: fadeInLeft
}

.rtin-progress-bar .progress .progress-bar>span {
  font-size: 18px;
  font-weight: 500;
  color: #14133b;
  position: absolute;
  right: 0;
  top: -33px;
  padding-bottom: 10px;
  line-height: 1
}

.rtin-progress-bar .progress .progress-bar>span:before,
.rtin-progress-bar .progress .progress-bar>span:after {
  border: medium solid transparent;
  content: " ";
  height: 0;
  position: absolute;
  top: 100%;
  width: 0
}

.rtin-progress-bar .progress .progress-bar>span:before {
  border-top-color: #0554f2;
  border-width: 5px;
  left: 50%;
  margin-left: -5px
}

.rt-counter .rtin-item {
  position: relative;
  margin-bottom: 30px
}

.rt-counter .rtin-item .rtin-title {
  font-size: 20px;
  color: #14133b;
  line-height: 1.4;
  margin-bottom: 0;
  position: relative
}

.rt-counter .rtin-item .rtin-counter {
  color: #0554f2;
  font-size: 60px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
  line-height: 1;
  z-index: 3;
  position: relative;
  font-family: "Barlow", sans-serif
}

.rt-counter.rtin-center {
  text-align: center
}

.rt-counter.rtin-center .rtin-item .rtin-title:after {
  right: 0
}

.rt-counter.rtin-right {
  text-align: right
}

.rt-counter.rtin-right .rtin-item .rtin-title:after {
  right: 0;
  left: inherit
}

.rt-counter .rtin-item .rtin-media {
  line-height: 1;
  margin-bottom: 24px
}

.rt-counter .rtin-item .rtin-media i,
.rt-counter .rtin-item .rtin-media i:before {
  font-size: 48px;
  color: #d6d6d6;
  transition: all .3s ease-in-out
}

.rt-counter.rtin-counter-style2 .rtin-item {
  background: #0554f2;
  border-radius: 10px;
  padding: 27px 15px 30px
}

.rt-counter.rtin-counter-style2 .rtin-item .rtin-title {
  color: #fff
}

.rt-counter.rtin-counter-style2 .rtin-item .rtin-counter {
  color: #fff;
  margin-bottom: 6px
}

.rt-counter.rtin-counter-style3 .rtin-item .rtin-content {
  display: flex;
  align-items: center
}

.rt-counter.rtin-counter-style3 .rtin-item .rtin-title {
  max-width: 120px;
  margin-left: 23px;
  text-align: left
}

.rt-counter.rtin-counter-style3 .rtin-item .rtin-counter {
  margin-bottom: 0
}

.rtin-story .story-layout {
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 1
}

.rtin-story .story-layout:before {
  content: '';
  position: absolute;
  left: 50%;
  background-color: #e6e6e6;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  height: 100%
}

.rtin-story .story-layout .story-box-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 50px
}

.rtin-story .story-layout .story-box-layout:nth-child(odd) {
  left: 50%
}

.rtin-story .story-layout .story-box-layout:nth-child(even) {
  left: calc(50% - 500px);
  text-align: right
}

.rtin-story .story-layout .timeline-circle {
  width: 25px;
  height: 25px;
  background: #eaf1ff;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  z-index: 1
}

.rtin-story .story-layout .story-box-layout:nth-child(odd) .timeline-circle {
  left: -13px
}

.rtin-story .story-layout .story-box-layout:nth-child(even) .timeline-circle {
  right: -12px
}

.rtin-story .story-layout .timeline-circle:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #0554f2;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin: 0 auto;
  left: 0;
  border-radius: 50%
}

.rtin-story .story-layout .story-box-layout:nth-child(odd):before {
  left: -10px
}

.rtin-story .story-layout .story-box-layout:nth-child(even):before {
  right: -10px
}

.rtin-story .story-layout .story-box-layout .rtin-year {
  font-size: 32px;
  color: #0554f2;
  position: absolute;
  z-index: 1;
  margin-bottom: 0;
  margin-top: 38px
}

.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-year {
  left: -130px
}

.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-year {
  right: -130px
}

.rtin-story .story-layout .story-box-layout .rtin-img {
  position: absolute;
  z-index: 1;
  margin-top: 100px
}

.rtin-story .story-layout .story-box-layout .rtin-img img {
  border-radius: 10px
}

.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-img {
  left: -421px
}

.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-img {
  right: -421px
}

.rtin-story .story-layout .story-box-layout .rtin-content {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, .07);
  transition: all .3s ease-in-out
}

.rtin-story .story-layout .story-box-layout .rtin-content:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  filter: drop-shadow(0px 0px 54px rgba(2, 2, 2, .4)) drop-shadow(0px 0px 54px rgba(2, 2, 2, .4));
  top: 40px
}

.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content:after {
  border-width: 15px 16px 15px 0;
  left: -16px;
  border-color: transparent #fff transparent transparent
}

.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content:after {
  border-width: 15px 0 15px 16px;
  right: -16px;
  border-color: transparent transparent transparent #fff
}

.rtin-story .story-layout .story-box-layout:hover .rtin-content {
  box-shadow: 0 0 50px 0 rgba(222, 222, 222, .9)
}

.rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content {
  margin-left: 50px
}

.rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content {
  margin-right: 50px
}

.rtin-story .story-layout .story-box-layout .rtin-content .rtin-title {
  margin-bottom: 7px
}

@media only screen and (max-width:1199px) {
  .rtin-story .story-layout .story-box-layout {
    max-width: 450px
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) {
    left: calc(50% - 450px)
  }
}

@media only screen and (max-width:991px) {
  .rtin-story .story-layout:before {
    left: 105px;
    height: calc(100% - 20px);
    top: 20px
  }

  .rtin-story .story-layout .story-box-layout {
    max-width: inherit
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) {
    left: 0
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) {
    left: 0;
    text-align: left
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .timeline-circle {
    left: 92px
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .timeline-circle {
    left: 92px;
    right: inherit
  }

  .rtin-story .story-layout .story-box-layout .rtin-year {
    position: inherit
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-year {
    left: 0
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-year {
    left: 0;
    right: inherit
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content {
    margin-left: 80px
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content {
    margin-left: 80px;
    margin-right: inherit
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content:after {
    border-width: 15px 16px 15px 0;
    left: -16px;
    right: inherit;
    border-color: transparent #fff transparent transparent
  }

  .rtin-story .story-layout .story-box-layout .rtin-img {
    position: relative
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-img {
    left: inherit
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-img {
    right: inherit
  }
}

@media only screen and (max-width:767px) {
  .rtin-story .story-layout:before {
    display: none
  }

  .rtin-story .story-layout .story-box-layout {
    display: block
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd):before {
    display: none
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even):before {
    display: none
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) {
    text-align: center
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) {
    text-align: center
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-year {
    margin-bottom: 15px
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-year {
    margin-bottom: 15px
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .rtin-content {
    margin-left: 0
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .rtin-content {
    margin-left: 0
  }

  .rtin-story .story-layout .story-box-layout .rtin-year {
    margin-top: 0
  }

  .rtin-story .story-layout .story-box-layout .rtin-img {
    margin-top: 50px
  }

  .rtin-story .story-layout .story-box-layout:nth-child(odd) .timeline-circle {
    left: 0;
    right: 0;
    margin: 0 auto
  }

  .rtin-story .story-layout .story-box-layout:nth-child(even) .timeline-circle {
    left: 0;
    right: 0;
    margin: 0 auto
  }

  .rtin-story .story-layout .story-box-layout .rtin-content {
    padding: 25px 20px 25px
  }

  .rtin-story .story-layout .story-box-layout .rtin-content:after {
    display: none
  }

  .rtin-story .story-layout .story-box-layout .rtin-img img {
    border-radius: 7px 7px 0 0;
    width: 100%
  }
}

.apply-item {
  padding: 38px 55px 35px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  margin: 0 100px 30px
}

.apply-item .apply-content {
  margin-bottom: 20px
}

.apply-item .rtin-title {
  margin-bottom: 15px
}

.apply-item .apply-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between
}

.apply-item .apply-footer .job-meta .item {
  color: #14133b;
  margin-right: 80px;
  font-weight: 500;
  font-family: "Barlow", sans-serif
}

@media(max-width:767px) {
  .apply-item .apply-footer .job-meta .item {
    margin-right: 20px
  }
}

@media(max-width:425px) {
  .apply-item .apply-footer .job-meta .item {
    display: block
  }
}

.apply-item .apply-footer .job-meta .item:last-child {
  margin-right: 0
}

.apply-item .apply-footer .job-meta .item .primary-text-color {
  color: #0554f2;
  margin-left: 5px
}

.apply-item .job-button .button-style-2 {
  background: #eff4ff;
  color: #0554f2;
  padding: 10px 14px 10px 22px
}

.apply-item .button-style-2.btn-common path.rt-button-cap {
  stroke: #0554f2
}

@media(max-width:1199px) {
  .apply-item {
    margin: 0 0 30px
  }
}

@media (max-width:625px) {
  .apply-item .job-button {
    margin-top: 20px
  }
}

@media (max-width:575px) {
  .apply-item {
    padding: 35px 20px
  }
}

.rtel-tab-toggle .nav-tabs {
  position: relative;
  border-bottom: none;
  display: flex;
  justify-content: center
}

.rtel-tab-toggle .nav-item {
  border-bottom: 2px solid #dbdbe3
}

.rtel-tab-toggle .nav-item .nav-link {
  font-size: 16px;
  color: #14133b;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  border: none;
  padding: 15px 30px;
  position: relative;
  margin-bottom: -2px !important
}

.rtel-tab-toggle .nav-item .nav-link.active {
  background-color: transparent;
  color: #0554f2;
  position: relative
}

.rtel-tab-toggle .nav-item .nav-link:before {
  --scale: 0;
  position: absolute;
  content: "";
  height: 2px;
  background: #0554f2;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  transform: scaleX(var(--scale));
  transform-origin: var(--x) 50%;
  transition: -webkit-transform .4s cubic-bezier(.51, .92, .24, 1);
  transition: transform .4s cubic-bezier(.51, .92, .24, 1)
}

.rtel-tab-toggle .nav-item .nav-link.active:before {
  --scale: 1
}

.rtel-tab-toggle .nav-item .nav-link i {
  font-size: 30px;
  line-height: 1;
  padding-right: 11px
}

.rtel-tab-toggle .tab-content {
  margin-top: 60px
}

.image-default .rtin-image {
  position: relative
}

.image-default .rtin-image img {
  position: relative
}

.elementor-widget-rt-image,
.elementor-widget-rt-image>.elementor-widget-container,
.elementor-widget-rt-image>.elementor-widget-container .image-default {
  height: 100%
}

.image-style1 .rtin-image {
  overflow: hidden;
  display: inline-block
}

.image-style1 .image-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #0554f2;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 30px;
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  animation: dzMove5 8s linear infinite
}

.image-style1 .rtin-years {
  font-size: 70px;
  position: relative;
  padding-right: 25px;
  margin-right: 25px;
  line-height: 1.652;
  text-shadow: 0px 7px 0px rgb(0 0 0/10%)
}

.image-style1 .rtin-title {
  letter-spacing: .1em;
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0px 7px 0px rgb(0 0 0/10%);
  text-align: left
}

.image-style1 .rtin-years:after {
  content: "";
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  background: rgba(255, 255, 255, .2);
  height: 40px;
  width: 2px
}

@media (max-width:575px) {
  .image-style1 .image-content {
    padding: 5px 15px;
    left: 5px;
    bottom: 10px
  }

  .image-style1 .rtin-years {
    font-size: 44px
  }

  .image-style1 .rtin-title {
    font-size: 16px
  }
}

@media (max-width:375px) {
  .image-style1 .rtin-years {
    font-size: 26px;
    padding-right: 15px;
    margin-right: 15px
  }

  .image-style1 .rtin-title {
    font-size: 12px
  }
}

.image-style2 .rtin-image {
  display: inline-block
}

.image-style2 .rtin-image .animate-right {
  position: absolute;
  right: 28px;
  top: -43px;
  z-index: 1
}

.image-style2 .rtin-image .animate-right img {
  animation: bouncebubble infinite 5s
}

@media(max-width:991px) {
  .image-style2 {
    text-align: center
  }
}

.image-style3 .rtin-image {
  display: inline-block
}

.image-style3 .hero-img-animation-list {
  position: absolute;
  height: 608px;
  width: 100%;
  top: 0
}

.image-style3 .rtin-image .item {
  display: inline-block;
  position: absolute
}

.image-style3 .rtin-image .item-1 {
  bottom: 20px;
  left: 33px
}

.image-style3 .rtin-image .item-2 {
  bottom: 15px;
  right: 208px
}

.image-style3 .rtin-image .item-3 {
  bottom: 225px;
  right: -25px
}

.image-style3 .rtin-image .item-4 {
  top: 49px;
  right: 43px
}

.image-style3 .rtin-image .item-5 {
  top: 2px;
  right: 176px
}

.image-style3 .rtin-image .item-6 {
  left: 429px;
  top: -23px
}

.rt-animate-image {
  position: relative
}

.animate-image-style1 .left-holder {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 1
}

.animate-image-style1 .right-holder {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.animate-image-style2 .left-holder {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 1
}

.animate-image-style2 .right-holder {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.animate-image-style3 .left-holder {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1
}

.animate-image-style3 .right-holder {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1
}

@media(max-width:991px) {
  .animate-image-style1 .left-holder {
    display: none
  }
}

.fixed-side-bar .fixed-bar-coloum {
  display: initial
}

@media(min-width:992px) and (max-width:1199px) {
  .fixed-side-bar .post-grid-style1 .row>div {
    width: 100%;
    max-width: 100%;
    flex: 100%
  }
}

@media(max-width:991px) {
  .fixed-side-bar .fixed-bar-coloum.fixed-sidebar-left {
    display: none
  }

  .fix-bar-bottom-copyright {
    display: block
  }
}

.multiscroll-wrapper {
  position: relative;
  height: 100vh
}

@media only screen and (max-width:991px) {
  .multiscroll-wrapper {
    margin-top: -32px
  }
}

.multiscroll-wrapper .ms-section {
  background-color: #09091d
}

.multiscroll-wrapper .ms-content {
  padding-left: 120px;
  padding-right: 15%
}

@media (max-width:1666px) {
  .multiscroll-wrapper .ms-content {
    padding-left: 30px;
    padding-right: 5%
  }
}

@media (max-width:1366px) {
  .multiscroll-wrapper .ms-content {
    padding-left: 40px;
    padding-right: 10%
  }
}

.multiscroll-wrapper .ms-content .sub-title {
  display: inline-block;
  font-size: 24px;
  color: #bfbebe;
  font-weight: 400;
  letter-spacing: 4px;
  font-family: "Barlow", sans-serif
}

.multiscroll-wrapper .ms-content .item-title {
  color: #fff;
  font-size: 80px;
  line-height: 1.33;
  margin-bottom: 8px
}

@media (min-width:1200px) {
  .multiscroll-wrapper .ms-content .item-title {
    font-size: 58px
  }
}

.multiscroll-wrapper .ms-content .item-text {
  display: block;
  color: #d4d2d2;
  font-size: 18px;
  margin-bottom: 37px;
  line-height: 1.5
}

.multiscroll-wrapper .button-style-2 {
  padding: 11px 12px 11px 25px;
  line-height: 1.5
}

.multiscroll-wrapper .ms-left .ms-section .ms-tableCell>.full,
.multiscroll-wrapper .ms-right .ms-section .ms-tableCell>.full {
  height: 100%
}

.multiscroll-wrapper .ms-left .ms-section .ms-tableCell>.full img,
.multiscroll-wrapper .ms-right .ms-section .ms-tableCell>.full img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.multiscroll-wrapper .ms-right {
  right: 0 !important
}

.multiscroll-wrapper .ms-right .img-content-right {
  position: absolute;
  border-radius: 0 15px 15px 0;
  text-align: center;
  background: #fff;
  min-width: 240px;
  min-height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.multiscroll-wrapper .ms-left .img-content-left {
  position: absolute;
  border-radius: 15px 0 0 15px;
  text-align: center;
  background: #fff;
  min-width: 240px;
  min-height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.multiscroll-wrapper .ms-right .img-content-right {
  left: 0;
  bottom: 341px
}

.multiscroll-wrapper .ms-left .img-content-left {
  right: 0;
  bottom: 347px
}

@media (max-width:1440px) {

  .multiscroll-wrapper .ms-right .img-content-right,
  .multiscroll-wrapper .ms-left .img-content-left {
    bottom: 260px
  }
}

.img-content-left .title-small,
.img-content-right .title-small {
  font-size: 18px;
  color: #0554f2;
  font-weight: 500;
  margin-bottom: 8px
}

.img-content-left .title-big,
.img-content-right .title-big {
  font-size: 26px;
  color: #14133b;
  margin-bottom: 0
}

.img-content-left .icon,
.img-content-right .icon {
  font-size: 38px;
  color: #14133b;
  line-height: 1;
  margin-bottom: 4px
}

.multiscroll-wrapper .small-image-left {
  position: absolute;
  right: 0;
  bottom: 50px
}

.multiscroll-wrapper .small-image-left img {
  border-radius: 15px 0 0 15px
}

.multiscroll-wrapper .small-image-right {
  position: absolute;
  left: 0;
  bottom: 50px
}

.multiscroll-wrapper .small-image-right img {
  border-radius: 0 15px 15px 0
}

.multiscroll-wrapper .ms-right .ms-copyright {
  position: absolute;
  bottom: 150px;
  right: 50px;
  font-size: 16px;
  color: #ccc;
  line-height: 1
}

.multiscroll-wrapper .ms-left .ms-copyright {
  position: absolute;
  bottom: 150px;
  left: 50px;
  font-size: 16px;
  color: #ccc;
  line-height: 1
}

.multiscroll-wrapper .ms-copyright a {
  color: #ccc
}

.multiscroll-wrapper .ms-copyright a:hover {
  color: #0554f2
}

@media(max-width:1199px) {

  .multiscroll-wrapper .small-image-left,
  .multiscroll-wrapper .small-image-right {
    display: none
  }

  .multiscroll-wrapper .ms-content .item-title {
    font-size: 44px
  }

  .multiscroll-wrapper .ms-right .img-content-right,
  .multiscroll-wrapper .ms-left .img-content-left {
    bottom: 100px
  }
}

@media(max-width:991px) {
  .multiscroll-wrapper .ms-content .item-title {
    font-size: 34px
  }

  .multiscroll-wrapper .ms-content .item-text {
    font-size: 16px;
    margin-bottom: 25px
  }

  .multiscroll-wrapper .ms-content .sub-title {
    font-size: 20px;
    letter-spacing: 2px
  }

  .multiscroll-wrapper .ms-right .img-content-right,
  .multiscroll-wrapper .ms-left .img-content-left {
    bottom: 60px
  }
}

@media(max-width:767px) {
  .multiscroll-wrapper .ms-content {
    padding-left: 15px;
    padding-right: 15px
  }

  .multiscroll-wrapper .ms-content .item-title {
    font-size: 30px
  }

  .multiscroll-wrapper .ms-left .img-content-left,
  .multiscroll-wrapper .ms-right .img-content-right {
    min-width: 195px;
    min-height: 180px
  }
}

@media(max-width:376px) {
  .multiscroll-wrapper .ms-content .sub-title {
    margin-bottom: 8px
  }

  .multiscroll-wrapper .ms-content .item-title {
    font-size: 26px;
    margin-bottom: 20px
  }

  .multiscroll-wrapper .ms-content .item-text {
    display: none
  }

  .multiscroll-wrapper .ms-left .img-content-left,
  .multiscroll-wrapper .ms-right .img-content-right {
    min-width: 140px;
    min-height: 180px
  }

  .img-content-left .title-small,
  .img-content-right .title-small {
    font-size: 18px;
    margin-bottom: 0
  }

  .img-content-left .title-big,
  .img-content-right .title-big {
    font-size: 22px
  }

  .multiscroll-wrapper .ms-content .button-style-2 {
    padding: 11px 4px 11px 12px;
    font-size: 14px
  }
}

div#multiscroll-nav.right {
  right: 50px;
  left: auto;
  z-index: 33
}

div#multiscroll-nav ul {
  margin: 0;
  padding: 0;
  list-style: none
}

div#multiscroll-nav li {
  width: 14px;
  height: 14px;
  margin: 0;
  margin-bottom: 15px
}

div#multiscroll-nav li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none
}

div#multiscroll-nav li a span {
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  transition: all .4s ease
}

div#multiscroll-nav li a.active span {
  background: #fff;
  width: 20px;
  height: 20px;
  top: -5px;
  left: -5px
}

@media only screen and (max-width:991px) {
  div#multiscroll-nav.right {
    right: 15px
  }
}

.banner-slider .slider-content {
  position: relative;
  z-index: 9;
  padding-left: 185px;
  padding-right: 185px
}

@media(max-width:1666px) {
  .banner-slider .slider-content {
    padding-left: 50px;
    padding-right: 50px
  }
}

@media(max-width:1199px) {
  .banner-slider .slider-content {
    padding-left: 0;
    padding-right: 0
  }
}

.swiper-slide .single-slider {
  position: relative;
  height: calc(100vh - 165px);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  align-items: center;
  padding-top: 220px;
  padding-bottom: 220px;
  background-size: cover
}

@media(max-width:767px) {
  .swiper-slide .single-slider {
    padding-top: 80px;
    padding-bottom: 80px;
    background-position: center
  }
}

.banner-slider .swiper-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(20, 19, 59, .5);
  z-index: 0
}

.banner-slider .slider-content .sub-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
  line-height: 1;
  display: inline-block;
  padding-left: 15px;
  margin-bottom: 20px
}

.banner-slider .slider-content .sub-title:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 5px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #0554f2
}

.banner-slider .slider-content .slider-title {
  font-size: 60px;
  color: #fff;
  max-width: 590px;
  margin-bottom: 20px;
  line-height: 1.1;
  text-decoration-thickness: 4px;
  text-underline-position: under;
  text-underline-offset: -4px
}

.banner-slider .slider-content .slider-title.left {
  margin-right: auto
}

.banner-slider .slider-content .slider-title.center {
  margin-left: auto;
  margin-right: auto
}

.banner-slider .slider-content .slider-title.right {
  margin-left: auto
}

.banner-slider .slider-content .slider-title span {
  display: block
}

.banner-slider .slider-content .slider-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 570px
}

.banner-slider .slider-content .slider-text.left {
  margin-right: auto
}

.banner-slider .slider-content .slider-text.center {
  margin-left: auto;
  margin-right: auto
}

.banner-slider .slider-content .slider-text.right {
  margin-left: auto
}

.swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 8px;
  border-radius: 6px;
  border: 1px solid #fff;
  transition: all .4s ease;
  background: 0 0;
  opacity: 1
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: 0 0;
  border: 2px solid transparent;
  background: #fff
}

.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 90px;
  left: 0;
  width: 220px;
  right: 0;
  margin: 0 auto;
  display: inline-block
}

@media(max-width:767px) {
  .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 25px
  }

  .banner-slider .slider-content .slider-text,
  .banner-slider .slider-content .slider-title {
    max-width: 100%
  }
}

.banner-slider .shape-item .shape {
  position: absolute
}

.banner-slider .slide-1 .shape-item .shape1 {
  top: 200px;
  right: 300px
}

.banner-slider .slide-1 .shape-item .shape2 {
  top: 0;
  right: 0
}

.banner-slider .slide-2 .shape-item .shape1 {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 293px;
  text-align: center
}

.banner-slider .slide-2 .shape-item .shape2 {
  bottom: -350px;
  left: 0;
  right: 0;
  text-align: center
}

.banner-slider .slide-3 .shape-item .shape1 {
  bottom: 93px;
  left: 342px
}

.banner-slider .slide-3 .shape-item .shape2 {
  bottom: -257px;
  left: 0
}

.banner-slider .slide-4 .shape-item .shape1 {
  top: 200px;
  right: 300px
}

.banner-slider .slide-4 .shape-item .shape2 {
  top: 0;
  right: 0
}

.banner-slider .slide-5 .shape-item .shape1 {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 293px;
  text-align: center
}

.banner-slider .slide-5 .shape-item .shape2 {
  bottom: -350px;
  left: 0;
  right: 0;
  text-align: center
}

.banner-slider .slide-6 .shape-item .shape1 {
  bottom: 93px;
  left: 342px
}

.banner-slider .slide-6 .shape-item .shape2 {
  bottom: -257px;
  left: 0
}

.banner-slider .animation .single-slide .sub-title {
  transform: translateY(100px);
  transition: all ease 1.5s;
  opacity: 0;
  visibility: hidden
}

.banner-slider .animation .single-slide.swiper-slide-active .sub-title {
  transform: translateY(0);
  transition-delay: .8s;
  opacity: 1;
  visibility: visible
}

.banner-slider .animation .single-slide .slider-title {
  transform: translateY(100px);
  transition: all ease 1.5s;
  opacity: 0;
  visibility: hidden
}

.banner-slider .animation .single-slide.swiper-slide-active .slider-title {
  transform: translateY(0);
  transition-delay: 1s;
  opacity: 1;
  visibility: visible
}

.banner-slider .animation .single-slide .slider-text {
  transform: translateY(100px);
  transition: all ease 1.5s;
  opacity: 0;
  visibility: hidden
}

.banner-slider .animation .single-slide.swiper-slide-active .slider-text {
  transform: translateY(0);
  transition-delay: 1.5s;
  opacity: 1;
  visibility: visible
}

.banner-slider .animation .single-slide .slider-btn-area {
  transform: translateY(100px);
  transition: all ease 1.5s;
  opacity: 0;
  visibility: hidden
}

.banner-slider .animation .single-slide.swiper-slide-active .slider-btn-area {
  transform: translateX(0);
  transition-delay: 2s;
  opacity: 1;
  visibility: visible
}

.banner-slider .animation .shape-item .shape {
  opacity: 0;
  visibility: hidden
}

.banner-slider .animation .swiper-slide-active .shape-item .shape {
  opacity: 1;
  visibility: visible;
  z-index: 5
}

.banner-slider .animation .shape-item .shape1 {
  transform: scale(0);
  transition: all ease 2s
}

.banner-slider .animation .swiper-slide-active .shape-item .shape1 {
  transform: scale(1);
  transition-delay: .7s
}

.banner-slider .animation .slide-1 .shape-item .shape1 {
  transform: translateY(-300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-1.swiper-slide-active .shape-item .shape1 {
  transform: translateY(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-1 .shape-item .shape2 {
  transform: translateX(300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-1.swiper-slide-active .shape-item .shape2 {
  transform: translateX(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-2 .shape-item .shape2 {
  transform: translateY(300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-2.swiper-slide-active .shape-item .shape2 {
  transform: translateY(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-3 .shape-item .shape2 {
  transform: translateX(-300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-3.swiper-slide-active .shape-item .shape2 {
  transform: translateX(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-4 .shape-item .shape1 {
  transform: translateY(-300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-4.swiper-slide-active .shape-item .shape1 {
  transform: translateY(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-4 .shape-item .shape2 {
  transform: translateX(300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-4.swiper-slide-active .shape-item .shape2 {
  transform: translateX(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-5 .shape-item .shape2 {
  transform: translateY(300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-5.swiper-slide-active .shape-item .shape2 {
  transform: translateY(0);
  transition-delay: .7s
}

.banner-slider .animation .slide-6 .shape-item .shape2 {
  transform: translateX(-300px);
  transition: all ease 2s
}

.banner-slider .animation .slide-6.swiper-slide-active .shape-item .shape2 {
  transform: translateX(0);
  transition-delay: .7s
}

.home-one-banner .title-text-button {
  padding-left: 185px;
  padding-right: 185px
}

@media(max-width:1666px) {
  .home-one-banner .title-text-button {
    padding-left: 50px;
    padding-right: 50px
  }
}

@media(max-width:1199px) {
  .home-one-banner .title-text-button {
    padding-left: 15px;
    padding-right: 15px
  }
}

.home-one-banner .title-text-button .rtin-title,
.home-one-banner .title-text-button .rtin-content {
  width: 570px
}

@media(max-width:767px) {

  .home-one-banner .title-text-button .rtin-title,
  .home-one-banner .title-text-button .rtin-content {
    max-width: 100%
  }
}

.elementor-invisible {
  visibility: visible
}

.height100vh {
  height: 100vh
}

@media(max-width:1199px) {
  .height100vh {
    height: inherit
  }
}

.elementor-section.rt-parallax-bg-yes {
  transition: none !important
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #0554f2
  }

  70% {
    box-shadow: 0 0 0 30px rgba(221, 14, 30, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(221, 14, 30, 0)
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #0554f2
  }

  70% {
    box-shadow: 0 0 0 30px rgba(221, 14, 30, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(221, 14, 30, 0)
  }
}

@-webkit-keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 #fff
  }

  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 pulse2 {
  0% {
    box-shadow: 0 0 0 0 #fff
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
  }
}

@-webkit-keyframes round_run {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes round_run {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-webkit-keyframes down_up {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes down_up {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes bouncebubble {
  1% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(10px)
  }

  50% {
    transform: translateX(10px)
  }

  75% {
    transform: translateX(-10px)
  }

  100% {
    transform: translateY(0);
    transform: translateX(0)
  }
}

@-webkit-keyframes upDownBounch1 {
  50% {
    -webkit-transform: translateX(15px) translateY(15px)
  }
}

@-moz-keyframes upDownBounch1 {
  50% {
    -moz-transform: translateX(15px) translateY(15px)
  }
}

@keyframes upDownBounch1 {
  50% {
    transform: translateX(15px) translateY(15px)
  }
}

@-webkit-keyframes upDownBounch2 {
  50% {
    -webkit-transform: translateX(20px) translateY(25px)
  }
}

@-moz-keyframes upDownBounch2 {
  50% {
    -moz-transform: translateX(20px) translateY(25px)
  }
}

@keyframes upDownBounch2 {
  50% {
    transform: translateX(20px) translateY(25px)
  }
}

@-webkit-keyframes upDownBounch3 {
  50% {
    -webkit-transform: translateY(20px)
  }
}

@-moz-keyframes upDownBounch3 {
  50% {
    -moz-transform: translateY(20px)
  }
}

@keyframes upDownBounch3 {
  50% {
    transform: translateY(20px)
  }
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0)
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40% {
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0)
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes dzMove5 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0)
  }

  25% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px)
  }

  50% {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px)
  }

  75% {
    -webkit-transform: translate(10px, -5px);
    transform: translate(10px, -5px)
  }

  to {
    -webkit-transform: translate(0);
    transform: translate(0)
  }
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px) translateY(50px);
    transform: translateX(50px) translateY(50px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0)
  }
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px) translateY(50px);
    transform: translateX(50px) translateY(50px)
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0)
  }
}

.fadeInTopLeft {
  animation-name: fadeInTopLeft
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #444;
  font-weight: 400;
  height: 100%;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: #fff;
  overflow-x: hidden
}

.floatleft {
  float: left
}

.floatright {
  float: right
}

.alignleft {
  float: left;
  margin-bottom: 15px;
  margin-right: 25px;
  margin-top: 10px
}

.alignright {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
  margin-top: 10px
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 15px
}

a {
  color: #0554f2;
  text-decoration: none
}

a:focus {
  outline: 0px solid;
  text-decoration: none;
  outline: 0 none
}

a:active {
  text-decoration: none;
  outline: 0 none
}

a:hover {
  color: #14133b;
  text-decoration: none;
  outline: 0 none
}

img {
  max-width: 100%;
  height: auto
}

.fix {
  overflow: hidden
}

p {
  margin: 0 0 20px
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow', sans-serif;
  margin: 0 0 20px;
  color: #14133b
}

h1 {
  font-size: 41px;
  font-weight: 600;
  line-height: 44px
}

h2 {
  font-size: 32.44px;
  font-weight: 600;
  line-height: 35px
}

h3 {
  font-size: 25.63px;
  font-weight: 600;
  line-height: 35px
}

h4 {
  font-size: 20.25px;
  font-weight: 600;
  line-height: 30px
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px
}

.clear {
  clear: both
}

.clear:after {
  clear: both;
  content: "";
  display: block
}

ul {
  list-style: disc inside none;
  margin: 0 0 20px;
  padding: 0px;
}

#wrapper {
  overflow: hidden;
  transition: all .5s ease-out
}

blockquote {
  background: 0 0;
  border: 1px solid #e1e1e2;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  text-align: left;
  padding: 35px 40px;
  margin: 35px 0 35px;
  color: #14133b
}

blockquote p {
  position: relative;
  margin-bottom: 0;
  margin-left: 80px;
  z-index: 1;
  font-family: "Barlow", sans-serif;
  line-height: 1.3
}

blockquote p:before {
  position: absolute;
  content: "\f11b";
  font-family: flaticon !important;
  font-size: 48px;
  color: #999;
  left: -80px;
  top: -4px;
  line-height: 1
}

blockquote cite {
  display: block;
  font-size: 14px;
  color: #646464;
  font-weight: 500;
  font-style: normal;
  margin-top: 12px;
  padding-left: 0;
  position: relative;
  letter-spacing: 2px;
  z-index: 1
}

blockquote.wp-block-quote cite {
  display: block;
  font-size: 14px;
  color: #646464;
  font-weight: 500;
  font-style: normal;
  margin-top: 12px;
  padding-left: 80px;
  letter-spacing: 2px;
  z-index: 1
}

blockquote.wp-block-quote[style="text-align:right"] cite:after {
  left: inherit;
  right: 0
}

blockquote.wp-block-quote[style="text-align:right"] cite {
  padding-right: 34px
}

@media(max-width:425px) {
  blockquote p {
    margin-left: 40px
  }

  blockquote p:before {
    left: -64px
  }
}

hr,
.elementor hr {
  background-color: #ebebeb
}

* {
  -ms-word-wrap: break-word;
  word-wrap: break-word
}

button:focus,
.submit-btn:focus {
  outline: none
}

.primary-color {
  color: #0554f2
}

.secondary-color {
  color: #14133b
}

#page {
  background-position: top center;
  background-repeat: no-repeat
}

.post-bottom-spacer {
  margin-bottom: 20px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #d7d7d7
}

.visibility-h {
  visibility: hidden
}

@keyframes blinker {
  90% {
    opacity: 0
  }
}

@keyframes toBottomFromTop10 {
  49% {
    transform: translateY(-10%)
  }

  50% {
    opacity: 0;
    transform: translateY(10%)
  }

  51% {
    opacity: 1
  }
}

@keyframes toRightFromLeft10 {
  5% {
    left: -5px
  }

  30% {
    opacity: .5;
    left: 10px
  }

  60% {
    left: 5px;
    opacity: 1
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px
  }

  100% {
    margin-top: 0
  }
}

.elementor-widget-divider .elementor-divider-separator {
  border-top-color: #dedede
}

.row.gutters-0 {
  margin-left: 0;
  margin-right: 0
}

.row.gutters-0>[class^=col-] {
  padding-left: 0;
  padding-right: 0
}

.row.gutters-5 {
  margin-left: -5px;
  margin-right: -5px
}

.row.gutters-5>[class^=col-] {
  padding-left: 5px;
  padding-right: 5px
}

.row.gutters-10 {
  margin-left: -10px;
  margin-right: -10px
}

.row.gutters-10>[class^=col-] {
  padding-left: 10px;
  padding-right: 10px
}

.row.gutters-20 {
  margin-left: -20px;
  margin-right: -20px
}

.row.gutters-20>[class^=col-] {
  padding-left: 20px;
  padding-right: 20px
}

.fab.fa-rss {
  font-family: "Font Awesome 6 Free";
  font-weight: 900
}

.fa-rss:before {
  content: "\f09e"
}

.header-top-bar {
  border-bottom: none;
  padding: 6px 0
}

.header-top-bar .tophead-right ul li {
  display: inline-block;
  margin-right: 14px;
  font-size: 16px
}

.header-top-bar .tophead-left ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px
}

.header-top-bar .tophead-right ul li:last-child {
  margin-right: 0
}

.header-top-bar .tophead-left ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px
}

.header-top-bar .tophead-left ul li:last-child {
  margin-right: 0
}

.header-top-bar .top-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.header-top-bar .widget {
  margin-bottom: 0
}

.header-top-bar .widget ul li {
  display: inline-block;
  margin-right: 10px
}

.header-top-bar .widget ul li:last-child {
  margin-right: 0
}

.header-area {
  background: #fff
}

.topbar-style-1 .header-top-bar {
  background-color: #fff;
  color: #646464;
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3
}

.topbar-style-1 .header-top-bar a {
  color: #646464
}

.topbar-style-1 .header-top-bar a:hover {
  color: #0554f2
}

.topbar-style-1 .header-top-bar .tophead-left {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 15px
}

.topbar-style-1 .header-top-bar .tophead-left>div {
  display: inline-flex;
  align-items: center
}

.topbar-style-1 .tophead-left>div:after {
  content: "/";
  color: #bbb;
  padding: 0 10px
}

.topbar-style-1 .tophead-left>div:last-child:after {
  display: none
}

.topbar-style-1 .tophead-left i {
  color: #0554f2;
  font-size: 18px;
  padding-right: 10px
}

.topbar-style-1 .tophead-right {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 15px
}

.topbar-style-1 .tophead-right .header-button a:after {
  content: "/";
  color: #bbb;
  padding: 0 10px
}

.topbar-style-1 .tophead-right .header-button i {
  color: #0554f2;
  font-size: 18px;
  padding-right: 10px
}

.topbar-style-2 .header-top-bar {
  background-color: #f6f9ff;
  border-bottom: none;
  color: #646464;
  padding: 10px 0;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500
}

.topbar-style-2 .header-top-bar a {
  color: #5b6674;
  transition: all .3s ease-out
}

.topbar-style-2 .header-top-bar .topbar_text a {
  color: #0554f2;
  padding-left: 5px
}

.topbar-style-2 .header-top-bar .tophead-right {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: relative
}

.topbar-style-2 .header-top-bar .tophead-right>div {
  display: inline-flex;
  align-items: center;
  margin-left: 40px
}

.topbar-style-2 .header-top-bar .tophead-right>div:first-child {
  margin-left: 0
}

.topbar-style-2 .tophead-right i {
  color: #5b6674;
  font-size: 18px;
  padding-right: 10px
}

@media(max-width:992px) {
  .header-top-bar .top-bar-wrap {
    text-align: center
  }

  .header-top-bar .top-bar-wrap,
  .topbar-style-1 .header-top-bar .tophead-left {
    display: inherit
  }
}

@media(max-width:425px) {
  .topbar-style-1 .tophead-left>div:after {
    display: none
  }
}

.trheader .header-top-bar {
  border-bottom: 1px solid #bababa
}

.topbar-style-1.trheader .header-top-bar {
  background: 0 0
}

.topbar-style-2.trheader .header-top-bar {
  background: 0 0
}

.topbar-style-2.trheader .header-top-bar,
.topbar-style-2.trheader .header-top-bar a {
  color: #fff
}

.topbar-style-2.trheader .header-top-bar .tophead-right i,
.topbar-style-2.trheader .header-top-bar .tophead-left i:before {
  color: #fff
}

.trheader.has-topbar .entry-banner .container {
  padding-top: 34px
}

@media(max-width:992px) {
  .trheader.has-topbar .entry-banner .container {
    padding-top: 0
  }
}

.header-top-bar {
  min-height: 34px
}

.trheader .site-header {
  left: 0;
  position: absolute;
  right: 0;
  z-index: 99
}

@media(max-width:992px) {
  .trheader .site-header {
    position: inherit
  }
}

.menu-full-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.header-icon-area {
  display: flex;
  align-items: center;
  column-gap: 15px;
  height: 100%;
  position: relative;
  font-size: 20px
}

.header-icon-area>div {
  position: relative
}

.header-icon-area>div:last-child:before {
  content: none
}

.header-icon-area>div:first-child {
  margin-left: 0
}

.header-icon-area .additional-menu-area {
  margin-left: 15px
}

.header-icon-area .offcanvas-menu-wrap {
  display: inline-flex;
  margin-left: 25px
}

.mini-cart-items {
  position: relative
}

.mini-cart-items .item-icon>a {
  color: #14133b;
  width: 40px;
  height: 40px;
  font-size: 15px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  background: rgba(5, 84, 242, .1);
  border-radius: 50%
}

.mini-cart-items .item-icon .item-count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #0554f2;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -7px;
  top: -6px;
  font-size: 13px;
  font-weight: 500
}

.cart-area .cart-wrapper {
  font-size: 15px;
  line-height: 22px;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 340px;
  max-height: 70vh;
  overflow-y: auto;
  text-align: left;
  box-shadow: 0px 0px 90px 0px rgb(0 0 0/10%);
  padding: 30px 20px;
  border-radius: 0 0 6px 6px;
  transition: all .4s cubic-bezier(.3, .02, 0, .6);
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  z-index: 9999
}

.cart-area .cart-list-trigger:hover .cart-wrapper {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1)
}

.cart-area .cart-wrapper ul.minicart>li {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 10px;
  padding-bottom: 10px
}

.cart-area .cart-wrapper ul.minicart>li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.cart-single-product {
  width: 100%
}

.cart-single-product>.media {
  display: flex;
  position: relative;
  align-items: center
}

.cart-wrapper .cart-product-img {
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: auto;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-right: 13px;
  padding: 3px
}

.cart-area .cart-content {
  flex: 1
}

.cart-area .cart-wrapper ul.minicart {
  list-style: none;
  margin: 0;
  padding: 0
}

.cart-area .cart-wrapper ul.minicart>li .media .cart-content ul {
  display: flex;
  padding-left: 0;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  color: #444
}

.cart-area .minicart-title a {
  color: #14133b;
  font-weight: 500
}

.cart-area .minicart-title a:hover {
  color: #0554f2
}

.cart-area .cart-title-line2 {
  color: #0554f2;
  font-weight: 500
}

.cart-wrapper .remove-item-overlay {
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  background-color: #fff
}

.cart-wrapper .remove-item-overlay>img {
  top: 50%;
  width: 25px;
  max-width: 100%;
  position: absolute;
  transform: translateY(-50%)
}

.cart-area .cart-wrapper ul.minicart>li.cart-total {
  color: #14133b;
  font-weight: 500
}

.cart-area .cart-wrapper ul.minicart .cart-btn {
  margin-top: 20px
}

@media(max-width:991px) {
  .cart-area .cart-wrapper {
    left: 0
  }
}

.offcanvas-menu-wrap button.offcanvas-btn-dark .menu-btn-icon>span {
  background-color: #0554f2
}

.offcanvas-menu-wrap button.offcanvas-btn-darklight .menu-btn-icon span {
  background-color: #ccc
}

.offcanvas-menu-wrap button.offcanvas-btn-light .menu-btn-icon span {
  background-color: #fff
}

.offcanvas-menu-wrap button.offcanvas-close-btn.menu-status-close .menu-btn-icon span {
  background-color: #fff
}

.offcanvas-menu-wrap button.offcanvas-menu-btn {
  border: none;
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0;
  width: 40px
}

.offcanvas-menu-wrap button.offcanvas-menu-btn:focus {
  outline: none
}

.offcanvas-menu-wrap button.offcanvas-menu-btn .menu-btn-icon {
  display: block;
  width: 35px;
  position: relative;
  height: 50px
}

.offcanvas-navigation ul {
  padding: 0;
  margin: 0
}

.offcanvas-navigation ul li {
  line-height: 1.7
}

@media(max-width:767px) {
  .offcanvas-navigation ul li {
    line-height: 1.2
  }

  .offcanvas-navigation ul li a {
    font-size: 28px
  }
}

.header-search {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 35, 35, .95);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all .3s;
  transform: translateY(-30%)
}

.header-search .header-search-form,
.header-search .stylish-input-group,
.header-search .custom-search-input {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%)
}

.header-search .stylish-input-group input[type=search],
.header-search .header-search-form input[type=search],
.header-search .custom-search-input input[type=text] {
  width: 54%;
  height: 70px;
  color: #fff;
  font-size: 24px;
  flex: initial;
  text-align: left;
  border: none;
  border-radius: 0;
  margin: 0 auto;
  padding: 20px 35px 20px 0;
  outline: none;
  background: 0 0;
  border-bottom: 1px solid #fff;
  line-height: 28px
}

@media (max-width:425px) {

  .header-search .stylish-input-group input[type=search],
  .header-search .header-search-form input[type=search],
  .header-search .custom-search-input input[type=text] {
    width: 70%
  }
}

.header-search .stylish-input-group input::-webkit-input-placeholder,
.header-search .header-search-form input::-webkit-input-placeholder,
.header-search .custom-search-input input::-webkit-input-placeholder {
  color: #fff
}

.header-search .stylish-input-group input:-ms-input-placeholder,
.header-search .header-search-form input:-ms-input-placeholder,
.header-search .custom-search-input input:-ms-input-placeholder {
  color: #fff
}

.header-search .stylish-input-group input:-moz-placeholder,
.header-search .header-search-form input:-moz-placeholder,
.header-search .custom-search-input input:-moz-placeholder {
  color: #fff
}

.header-search .header-search-form .search-btn,
.header-search .stylish-input-group .btn,
.header-search .custom-search-input .btn {
  padding: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-left: -32px;
  background: 0 0;
  line-height: 29px;
  z-index: 12;
  transition: all .3s
}

.header-search .header-search-form .search-btn i {
  line-height: 28px
}

.header-search .header-search-form .search-btn:hover,
.header-search .stylish-input-group .btn:hover,
.header-search .custom-search-input .btn:hover {
  color: #0554f2
}

.header-search .stylish-input-group .btn,
.header-search .custom-search-input .btn {
  position: absolute;
  left: 20%
}

.header-search .stylish-input-group input:focus,
.header-search .stylish-input-group .search-btn:focus,
.header-search .stylish-input-group .btn:focus,
.header-search .custom-search-input input:focus,
.header-search .header-search-form .search-btn:focus,
.header-search .custom-search-input .btn:focus {
  box-shadow: none;
  outline: none
}

.header-search.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.header-search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  left: 15px;
  margin: 0 auto;
  color: #fff;
  border-radius: 3px;
  border: none;
  opacity: 1;
  visibility: visible;
  padding: 3px 15px 5px;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  background: 0 0;
  transition: all .3s
}

.header-search .close:focus {
  box-shadow: none;
  border: none;
  outline: none
}

.header-search .close:hover {
  transform: scale(1.2);
  opacity: 1 !important
}

.header-search-one {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  background-color: #fff;
  border-radius: 5px;
  text-align: left;
  width: 330px;
  transition: all .14s ease-in-out
}

.header-search-one .search-form input.search-field {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  height: 46px;
  padding: 0 30px 0 15px
}

.header-search-one .search-form .search-button {
  color: #14133b
}

.header-menu {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  background-color: #fff
}

.admin-bar .rt-sticky {
  top: 32px
}

.rt-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 7px 65px 0px rgb(0 0 0/5%);
  transition: background .2s ease, padding .8s linear
}

.trheader .site-header .rt-sticky .main-navigation nav>ul>li>a,
.trheader .site-header .rt-sticky .main-navigation .menu>li>a {
  color: #14133b
}

.trheader .site-header .rt-sticky .main-navigation ul.menu li.current-menu-ancestor>a {
  color: #0554f2
}

.trheader .offcanvas-menu-wrap button.offcanvas-btn-dark .menu-btn-icon>span {
  background-color: #fff
}

.trheader .site-header .main-navigation nav>ul>li>a,
.trheader .site-header .main-navigation .menu>li>a {
  color: #fff
}

.trheader .site-header .header-icon-area .search-box .search-button i {
  color: #fff
}

.trheader.non-stickh .header-area {
  background: #fff
}

.trheader .header-area .header-menu {
  background-color: transparent
}

.trheader .header-area .header-menu.rt-sticky {
  background-color: #fff
}

.trheader .header-area {
  background: 0 0
}

.header-social {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0
}

.header-social li {
  display: inline-block;
  list-style: outside none none
}

.header-social li:last-child {
  padding-right: 0
}

.header-social li a {
  font-size: 15px;
  margin-right: 7px;
  text-align: center;
  color: #14133b;
  display: block
}

.header-social li:last-child a {
  margin-right: 0
}

.header-social li i {
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  border-radius: 5px;
  display: inline-block;
  line-height: 36px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.header-social li a:hover i {
  background: #0554f2;
  color: #fff
}

.header-social li .fa-facebook-f {
  color: #4064ac;
  background: #edf3ff
}

.header-social li .fa-x-twitter {
  color: #1c9cea;
  background: #dff3ff
}

.header-social li .fa-google-plus-g {
  color: #d54836;
  background: #f5e2e0
}

.header-social li .fa-linkedin-in {
  color: #016196;
  background: #ecf8ff
}

.header-social li .fa-pinterest-p {
  color: #df0022;
  background: #fff1f3
}

.header-social li .fa-instagram {
  color: #d1005c;
  background: #ffedf5
}

.header-social li .fa-rss {
  color: #fb691a;
  background: #ffecd4
}

.site-header .site-branding a {
  display: table-cell;
  vertical-align: middle
}

.site-header .site-branding a img {
  max-width: 175px;
  width: 100%
}

@media(max-width:1199px) {
  .site-header .site-branding a img {
    max-width: 120px
  }
}

.site-header .site-branding .light-logo {
  display: none
}

.trheader .site-header .site-branding .dark-logo {
  display: none
}

.trheader .site-header .site-branding .light-logo {
  display: table-cell
}

.trheader .site-header .rt-sticky .site-branding .dark-logo {
  display: table-cell
}

.trheader .site-header .rt-sticky .site-branding .light-logo {
  display: none
}

.site-header ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.site-header .main-navigation nav ul li {
  display: inline-block;
  position: relative;
  margin-bottom: 0
}

.site-header .main-navigation nav ul li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #14133b;
  padding: 33px 15px;
  text-transform: capitalize;
  font-family: 'Barlow', sans-serif;
  transition: all .3s ease-in-out
}

.site-header .main-navigation nav>ul>li>a:before {
  position: absolute;
  content: "";
  height: 3px;
  background: #0554f2;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 100%;
  transition: .5s;
  transform: scaleX(0);
  transform-origin: top right
}

.site-header .main-navigation nav>ul>li:hover>a:before {
  transform-origin: top right;
  transform: scaleX(1)
}

.site-header .main-navigation nav ul li a:hover {
  color: #0554f2
}

.site-header .main-navigation nav ul li a.active {
  color: #a5a5a5 !important
}

.site-header .main-navigation ul.menu>li>a:hover {
  color: #0554f2
}

.site-header .main-navigation ul.menu li.current-menu-item>a,
.site-header .main-navigation ul.menu>li.current>a {
  color: #0554f2
}

.site-header .main-navigation ul.menu li.current-menu-ancestor>a {
  color: #0554f2
}

.site-header .main-navigation nav ul li.menu-item-has-children a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  transform: rotate(0deg);
  display: inline-block;
  padding-left: 6px;
  font-size: 12px
}

.site-header .main-navigation nav ul li.menu-item-has-children:hover a:after {
  transform: rotate(180deg) translateX(-6px);
  transition: all .4s ease
}

.site-header .main-navigation ul li ul {
  text-align: left
}

.site-header .main-navigation ul li ul.sub-menu li.menu-item-has-children:before {
  color: #14133b;
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  right: 12px;
  top: 10px;
  transition: all .4s ease
}

.site-header .main-navigation ul li ul li:last-child {
  border-bottom: none
}

.site-header .main-navigation ul li ul li a {
  position: relative;
  overflow: hidden;
  display: block;
  color: #656567;
  text-transform: inherit;
  padding: 10px 20px 10px 25px;
  font-weight: 500;
  font-size: 15px;
  z-index: 2;
  transition: all .14s ease-in-out
}

.site-header .main-navigation ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  margin: 0;
  padding: 10px 0;
  background-color: #fff;
  text-align: left;
  box-shadow: 0px 0px 90px 0px rgb(0 0 0/10%);
  padding: 15px 0;
  border-radius: 0 0 5px 5px;
  visibility: hidden;
  transition: all .4s cubic-bezier(.3, .02, 0, .6);
  opacity: 0;
  z-index: 100;
  transform: scaleY(0);
  transform-origin: 0 0 0
}

.site-header .main-navigation ul>li:hover>ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
  transform: scaleY(1)
}

.site-header .main-navigation ul>li>ul li ul {
  left: 220px;
  top: 0;
  width: 220px
}

.site-header .main-navigation ul>li:hover>ul li ul {
  top: 0;
  border-radius: 0 5px 5px
}

.site-header .main-navigation ul li ul {
  background-color: #fff
}

.site-header .main-navigation ul li ul li {
  display: block;
  border-bottom: none;
  border-left: none
}

.site-header .main-navigation ul li ul li:hover {
  background: #fff
}

.site-header .main-navigation ul li ul li:last-child {
  border-bottom: none
}

.site-header .main-navigation ul li ul.sub-menu li>a:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 0;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  margin: 0;
  background: #6c6c6c;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.site-header .main-navigation ul li ul.sub-menu li:hover>a:before {
  background: #0554f2;
  height: 11px;
  opacity: 1;
  visibility: visible;
  transition: all .4s ease
}

.site-header .main-navigation ul.menu li ul.sub-menu li a:after {
  content: ""
}

.site-header .main-navigation ul.menu li ul.sub-menu li a:hover {
  color: #0554f2
}

.site-header .main-navigation ul li.mega-menu {
  position: static
}

.site-header .main-navigation ul li.mega-menu:hover ul {
  opacity: 1;
  visibility: visible
}

.site-header .main-navigation ul li.mega-menu ul.sub-menu li {
  background-color: inherit
}

.site-header .main-navigation ul li.mega-menu ul.sub-menu li:last-child {
  border-bottom: none
}

.site-header .main-navigation ul li.mega-menu ul.sub-menu li a {
  color: #010101;
  padding-left: 15px
}

.site-header .main-navigation ul li.mega-menu ul.sub-menu li a:hover {
  color: #14133b;
  padding-left: 20px
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu {
  background-color: #fff;
  width: calc(100% - 30px);
  max-width: 1170px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  padding: 15px;
  display: flex;
  justify-content: space-around
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu>li {
  display: inline-block;
  margin: 0 15px;
  width: 100%;
  border: none
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu>li ul {
  top: 0;
  position: relative;
  width: inherit;
  left: inherit;
  box-shadow: none;
  border-top: none
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu li:after {
  content: ''
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu li:before {
  color: #0554f2;
  font-size: 14px;
  padding-right: 13px
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu>li>a {
  font-size: 16px
}

.site-header .main-navigation ul li.mega-menu>ul.sub-menu>li>a {
  font-weight: 700
}

.site-header .main-navigation ul li.mega-menu.hide-header>ul.sub-menu>li>a {
  display: none
}

.site-header .main-navigation ul.menu li.mega-menu ul.sub-menu li:after,
.site-header .main-navigation ul.menu li.mega-menu ul.sub-menu li.menu-item-has-children:before {
  display: none
}

.header-icon-area .search-icon a {
  color: #14133b;
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  background: rgba(5, 84, 242, .1);
  border-radius: 50%
}

.header-style-1 .container-custom {
  padding-left: 195px;
  padding-right: 195px
}

@media(max-width:1666px) {
  .header-style-1 .container-custom {
    padding-left: 60px;
    padding-right: 60px
  }
}

@media(max-width:1199px) {
  .header-style-1 .container-custom {
    padding-left: 15px;
    padding-right: 15px
  }
}

.header-style-1 .masthead-container {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1
}

.header-style-1 .site-header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.header-style-1 .site-header .header-top .icon-left {
  float: left;
  margin-right: 10px;
  text-align: center;
  font-size: 18px;
  color: #0554f2
}

.header-style-1 .site-header .header-top .info {
  float: left;
  line-height: 1;
  font-size: 16px;
  text-align: left;
  color: #14133b;
  position: relative
}

.header-style-1 .site-header .header-top .info-text {
  font-size: 15px;
  font-weight: 400
}

.header-style-1 .site-header .header-top .info-text a {
  color: #14133b
}

.header-style-1 .site-header .header-top .info-text a:hover {
  color: #0554f2
}

.header-style-1 .site-header .header-top .info-label {
  display: block;
  color: #76767d;
  font-size: 13px
}

.header-style-1 .site-header .header-top .header-address>div {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #d4d3d3
}

.header-style-1 .site-header .header-top .header-address>div:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none
}

.header-style-1.trheader .masthead-container {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.header-style-1.trheader .site-header .header-top .icon-left {
  color: #fff
}

.header-style-1.trheader .site-header .header-top .info-label,
.header-style-1.trheader .site-header .header-top .info,
.header-style-1.trheader .site-header .header-top .info-text a {
  color: #fff
}

@media(max-width:1199px) {
  .header-style-1 .site-header .header-top {
    display: block
  }

  .header-style-1 .site-header .header-top .header-address {
    text-align: center
  }

  .header-style-1 .site-header .header-social {
    margin-top: 20px;
    justify-content: center
  }
}

@media(min-width:1510px) {
  .header-style-2 .container-custom {
    padding-left: 215px
  }

  .header-style-2 .no-vertical-menu .container-custom {
    padding-right: 215px
  }
}

@media(max-width:1510px) {
  .header-style-2 .container-custom {
    padding-left: 15px
  }

  .header-style-2 .no-vertical-menu .container-custom {
    padding-right: 15px
  }
}

.header-style-2 .site-header .info-wrap {
  display: flex;
  align-items: center
}

.header-style-2.trheader .header-area .header-menu {
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.header-style-2.trheader .header-area .header-menu.rt-sticky {
  border-bottom: none
}

.header-style-2 .header-right-wrap {
  display: inline-flex;
  align-items: center
}

.header-style-2 .header-offcanvus {
  margin-left: 30px
}

.header-style-2.trheader .entry-banner {
  margin-top: 0
}

.header-style-2 .header-right-wrap .search-icon a {
  color: #14133b
}

.header-style-2.trheader .header-icon-area .search-icon a,
.header-style-2.trheader .mini-cart-items .item-icon>a {
  color: #fff
}

.header-style-2.trheader .rt-sticky .mini-cart-items .item-icon>a,
.header-style-2.trheader .rt-sticky .header-icon-area .search-icon a {
  color: #14133b
}

.header-button .button-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  background: #0554f2;
  color: #fff;
  border-radius: 5px;
  outline: 0;
  transition: all .4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: .5px;
  line-height: 1.5;
  margin-left: 30px
}

.header-button .button-btn:hover {
  background: #14133b
}

.header-style-3 .masthead-container {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1
}

.header-style-3 .info-wrap {
  display: flex;
  align-items: center
}

.header-style-3 .header-right-wrap {
  display: flex;
  align-items: center
}

.header-style-3 .header-3-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.header-style-3 .site-header .info-wrap .info {
  color: #14133b;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex
}

.header-style-3 .site-header .info-wrap .info a {
  color: #14133b
}

.header-style-3 .site-header .info-wrap .info i {
  font-size: 20px;
  margin-right: 12px;
  color: #0554f2
}

.header-style-3 .site-header .main-navigation nav>ul>li {
  margin-right: 30px
}

.header-style-3 .site-header .main-navigation nav>ul>li:last-child {
  margin-right: 0
}

.header-style-3 .site-header .main-navigation nav>ul>li>a {
  padding: 33px 0
}

.header-style-3 .header-right-wrap .search-icon a {
  color: #14133b
}

.header-style-3.trheader .site-header .rt-sticky .main-navigation nav>ul>li>a:hover {
  color: #0554f2
}

.header-style-3.trheader .rt-sticky .mini-cart-items .item-icon>a,
.header-style-3.trheader .rt-sticky .header-right-wrap .search-icon a {
  color: #14133b
}

.header-style-3.trheader .masthead-container {
  border-bottom: 1px solid rgba(181, 181, 181, .3)
}

.header-style-3.trheader .site-header .info-wrap .info i,
.header-style-3.trheader .header-right-wrap .search-icon a,
.header-style-3.trheader .site-header .info-wrap .info,
.header-style-3.trheader .mini-cart-items .item-icon>a,
.header-style-3.trheader .site-header .info-wrap .info a {
  color: #fff
}

@media(max-width:991px) {
  .header-style-3.trheader .masthead-container {
    background: #000
  }
}

.header-style-4 .header-area .menu-full-wrap {
  margin-top: 30px
}

.header-style-4 .container-custom {
  padding-left: 120px;
  padding-right: 120px
}

@media (max-width:1366px) {
  .header-style-4 .container-custom {
    padding-left: 50px;
    padding-right: 50px
  }
}

.header-style-5 .masthead-container {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1
}

.header-style-5 .header-right-wrap {
  display: flex;
  align-items: center
}

.header-style-5 .site-header .main-navigation nav>ul>li {
  margin-right: 30px
}

@media(max-width:1199px) {
  .header-style-5 .site-header .main-navigation nav>ul>li {
    margin-right: 20px
  }
}

.header-style-5 .site-header .main-navigation nav>ul>li:last-child {
  margin-right: 0
}

.header-style-5 .site-header .main-navigation nav>ul>li>a {
  padding: 34px 0
}

.header-style-5 .header-icon-area .search-icon a:hover {
  color: #0554f2 !important;
  background: rgba(255, 255, 255, 1)
}

.header-style-5.trheader .site-header .rt-sticky .main-navigation nav>ul>li>a:hover {
  color: #0554f2
}

.header-style-5.trheader .rt-sticky .header-icon-area .search-icon a,
.header-style-5.trheader .rt-sticky .mini-cart-items .item-icon>a {
  color: #14133b
}

.header-style-5.trheader .menu-layout5 {
  border-bottom: 1px solid rgba(181, 181, 181, .3)
}

.header-style-5.trheader .site-header .info-wrap .info i,
.header-style-5.trheader .header-icon-area .search-icon a,
.header-style-5.trheader .mini-cart-items .item-icon>a,
.header-style-5.trheader .site-header .info-wrap .info,
.header-style-5.trheader .site-header .info-wrap .info a {
  color: #fff
}

.header-style-5.trheader .header-area .header-menu {
  border-bottom: 1px solid rgba(165, 165, 165, .65)
}

.header-style-5.trheader .header-area .header-menu.rt-sticky {
  border-bottom: none
}

@media(max-width:991px) {
  .header-style-5.trheader .masthead-container {
    background: #000
  }
}

.header-style-6.trheader .header-right-wrap .search-icon a,
.header-style-6.trheader .mini-cart-items .item-icon>a {
  color: #fff
}

.header-style-6.trheader .rt-sticky .header-icon-area .search-icon a,
.header-style-6.trheader .rt-sticky .mini-cart-items .item-icon>a {
  color: #14133b
}

@media all and (max-width:1199px) {
  .site-header .main-navigation nav ul li a {
    padding-left: 7px;
    padding-right: 7px
  }

  .site-header .main-navigation ul li a {
    padding-left: 7px;
    padding-right: 7px
  }

  .header-style-1 .site-header .header-top .header-address>div {
    margin-bottom: 15px
  }
}

@media(max-width:992px) {
  .header-style-1 .site-header .site-branding {
    display: none
  }

  .header-style-1 .header-controll,
  .header-style-3 .header-controll {
    border-bottom: 1px solid #f8f8f8
  }

  .header-style-3 .header-3-middle {
    display: none
  }

  .header-style-1 .site-header .header-top .header-address {
    width: 100%;
    text-align: center
  }

  .header-style-1 .site-header .header-top .header-address>div:nth-child(2):after {
    display: none
  }
}

@media all and (max-width:767px) {
  #tophead .tophead-right {
    text-align: center;
    float: none
  }

  .site-header .site-branding {
    display: block;
    height: inherit;
    padding: 20px 0;
    text-align: center
  }

  .site-header .site-branding a {
    display: block;
    vertical-align: inherit
  }

  .site-header .site-branding a img {
    height: 35px
  }

  .site-header .main-navigation ul {
    text-align: center
  }

  .site-header .main-navigation ul li a {
    padding-bottom: 10px;
    padding-top: 10px
  }

  .header-icon-area {
    display: none
  }

  .header-style-1 .site-header .header-top .header-address>div {
    margin-right: 20px;
    padding-right: 20px;
    border: none
  }

  .header-style-1 .site-header .header-top .icon-left {
    font-size: 16px;
    height: 40px;
    width: 40px;
    line-height: 38px
  }

  .header-style-2 .site-header .main-navigation ul {
    text-align: center
  }

  .header-style-2 .site-header .main-navigation ul li a {
    padding: 10px 15px
  }

  .header-firstrow {
    padding: 15px 0 10px
  }

  .site-header .site-branding,
  .header-firstrow-right {
    display: block;
    height: inherit
  }

  .site-header .site-branding {
    padding: 0 0 10px
  }

  .header-firstrow-right-contents {
    display: block
  }

  .header-firstrow-right-contents ul {
    display: block;
    padding: 0;
    text-align: center
  }

  .header-contact li {
    display: block;
    margin-left: 0
  }

  .menu-sep {
    margin-bottom: 10px
  }

  .site-header .main-navigation ul {
    text-align: center
  }

  .site-header .main-navigation ul li a {
    padding: 10px 15px
  }

  .header-firstrow-wrap {
    padding-top: 10px
  }

  .site-header .site-branding,
  .header-firstrow {
    display: block;
    height: inherit;
    text-align: center;
    padding-top: 0;
    padding-bottom: 10px
  }

  .header-firstrow-contents {
    display: block
  }

  .header-contact li {
    display: block;
    margin-right: 0
  }

  .header-firstrow-contents-right {
    text-align: center
  }

  .header-firstrow-contents-right .header-icon-area {
    display: none
  }

  .site-header .site-branding {
    float: none;
    height: inherit
  }

  .site-header .main-navigation {
    float: none
  }

  .site-header .main-navigation ul.menu>li>a {
    padding: 10px 15px;
    border-left: none
  }

  .header-menu-btn {
    display: none
  }
}

@media(max-width:1498px) {
  .header-style-1 .site-header .header-top .header-address>div {
    margin-right: 20px;
    padding-right: 20px
  }
}

@media(max-width:425px) {
  .header-style-1 .site-header .header-top .header-address>div:first-child {
    margin-bottom: 8px
  }

  .header-style-1 .site-header .header-top .header-address>div:after {
    display: none
  }

  .header-style-1 .site-header .header-top .header-address>div {
    margin-right: 0;
    padding-right: 0
  }
}

.additional-menu-area a.side-menu-trigger {
  color: #222;
  cursor: pointer;
  font-size: 21px;
  line-height: 0
}

.additional-menu-area .sidemenu {
  height: 100%;
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  text-align: left;
  background-color: #000;
  padding-top: 30px;
  transform: translateX(100%);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  width: 100%;
  padding: 60px 120px
}

.additional-menu-area .sidemenu .closebtn {
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: 700;
  position: absolute;
  right: 120px;
  top: 60px
}

.additional-menu-area .sidenav .additional-logo img {
  max-width: 9vw;
  width: 100%
}

.additional-menu-area .sidenav .sidenav-search {
  border: 1px solid #5f5f5f;
  margin: 0 20px 10px
}

.additional-menu-area .sidenav ul.menu {
  padding: 30px 30px 20px;
  text-align: center
}

.additional-menu-area .sidenav ul li {
  font-family: 'Barlow', sans-serif;
  line-height: 24px;
  list-style: none;
  transition: all .3s ease-in-out
}

.additional-menu-area .sidenav ul li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #a1a0c9;
  border: none;
  padding: 7px 20px;
  font-weight: 500;
  transition: all .14s ease-in-out
}

.additional-menu-area .sidenav ul li a:hover {
  color: #0554f2
}

.additional-menu-area .sidenav ul.menu>li>a {
  font-size: 26px;
  padding: 16px 20px
}

.additional-menu-area .sub-menu {
  display: none
}

.additional-menu-area .sidenav ul li.menu-item-has-children>a:after {
  content: "\f067";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  transition: .1s;
  right: 0;
  position: absolute;
  font-size: 13px;
  font-weight: 700
}

.additional-menu-area .sidenav ul li.menu-item-has-children>a.opened:after {
  content: "\f068"
}

.additional-menu-area .offscreen-navigation {
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.additional-menu-area .sidecanvas {
  width: 510px;
  height: 100vh;
  position: fixed;
  transform: translateX(100%);
  top: 0;
  left: auto;
  right: -17px;
  background-color: #14133b;
  z-index: 999999999;
  transition: transform .5s ease;
  transition-timing-function: linear;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.additional-menu-area .sidecanvas .canvas-content {
  padding: 100px 56px 88px 80px;
  scrollbar-width: none;
  transition: all .3s ease-in-out
}

.additional-menu-area .sidecanvas .closebtn {
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: 700;
  position: absolute;
  right: 30px;
  top: 60px
}

.additional-menu-area .sidenav-address h4 {
  color: #fff;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px
}

.additional-menu-area .sidenav-address span {
  color: #dbdbdb;
  font-size: 15px;
  display: block;
  margin-bottom: 15px
}

.additional-menu-area .sidenav-address span i {
  margin-right: 15px
}

.additional-menu-area .sidenav-address span a {
  display: inline-block;
  color: #dbdbdb;
  padding: 0
}

.additional-menu-area .sidenav-address span a:hover {
  color: #0554f2
}

.additional-menu-area .sidenav-social span {
  color: #646464;
  display: inline-block;
  padding-right: 5px;
  font-size: 16px;
  text-align: center
}

.additional-menu-area .sidenav-social span i {
  margin-right: 0
}

.additional-menu-area .sidenav-social span a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0554f2;
  color: #fff;
  font-size: 13px;
  transition: all .4s ease
}

.additional-menu-area .sidenav-social span a:hover {
  background-color: #fff
}

body .rt-cover {
  z-index: 149;
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  animation: slideInRight .5s ease-in-out;
  transition: all .5s ease-in-out
}

.header-offcanvus {
  height: 91px;
  width: 90px;
  overflow: hidden;
  background: #0554f2
}

.header-offcanvus button.side-menu-trigger {
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-radius: 4px;
  height: 90px;
  width: 90px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon {
  position: relative;
  display: block;
  width: 53px;
  height: 21px;
  overflow: hidden
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon .line {
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  transition: all .3s ease-out;
  transition-delay: 0s;
  transform: translateX(0)
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon:before,
.header-offcanvus button.side-menu-trigger .menu-btn-icon:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .3s ease-out;
  transform: translateX(-100%);
  transform-origin: left;
  transition-delay: 0s
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon .line3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .3s ease-out;
  transform: translateX(-100%);
  transform-origin: left;
  transition-delay: 0s
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon .line1 {
  top: 0
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon .line2 {
  top: 20px
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon .line3 {
  top: 10px
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon:after {
  bottom: 0
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon .line {
  transform: translateX(100%)
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon .line1 {
  transition-delay: 0s
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon .line2 {
  transition-delay: .15s
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon .line3 {
  transition-delay: .15s;
  transform: translateX(100%)
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon:before,
.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon:after {
  transform: translateX(0)
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon:before {
  transition-delay: .3s
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon:after {
  transition-delay: .45s
}

.header-offcanvus button.side-menu-trigger .menu-btn-icon .line3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .3s ease-out;
  transform: translateX(-100%);
  transform-origin: left;
  transition-delay: 0s
}

.header-offcanvus button.side-menu-trigger.side-menu-open:hover .menu-btn-icon .line3:before {
  transform: translateX(-100%);
  transition-delay: .45s
}

#preloader {
  overflow: visible;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999999;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: 20vw
}

@media(max-width:991px) {
  #preloader {
    background-size: 35vw
  }
}

.loader {
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: hidden;
  background: #fff
}

.loader .cssload-loader {
  width: 65px;
  height: 65px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

.loader .cssload-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50%
}

.loader .cssload-inner.cssload-one {
  left: 0;
  top: 0;
  animation: cssload-rotate-one 1.15s linear infinite;
  border-bottom: 5px solid #0554f2
}

.loader .cssload-inner.cssload-two {
  right: 0;
  top: 0;
  animation: cssload-rotate-two 1.15s linear infinite;
  border-right: 5px solid #0554f2
}

.loader .cssload-inner.cssload-three {
  right: 0;
  bottom: 0;
  animation: cssload-rotate-three 1.15s linear infinite;
  border-top: 5px solid #0554f2
}

@keyframes cssload-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg)
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg)
  }
}

@-webkit-keyframes cssload-rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg)
  }

  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg)
  }
}

@keyframes cssload-rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg)
  }

  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg)
  }
}

@-webkit-keyframes cssload-rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg)
  }

  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg)
  }
}

@keyframes cssload-rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg)
  }

  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg)
  }
}

@-webkit-keyframes cssload-rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg)
  }

  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg)
  }
}

.scroll-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 37px;
  height: 37px;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  box-shadow: inset 0 0 0 .1rem rgb(128 130 134/25%);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.75rem);
  transition: all .2s linear, margin-right 0ms
}

.scroll-wrap:after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  color: #0554f2;
  left: 0;
  top: 0;
  height: 37px;
  width: 37px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all .2s linear
}

.scroll-wrap.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.scroll-wrap svg path {
  fill: none
}

.scroll-wrap svg.scroll-circle path {
  stroke: #0554f2;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all .2s linear
}

.footer-bottom-area a,
.footer-bottom-area a:link,
.footer-bottom-area a:visited {
  color: #646464
}

.footer-bottom-area a:hover,
.footer-bottom-area .widget ul li a:hover {
  color: #14133b
}

.footer-logo img {
  max-width: 175px
}

.footer-area .widgettitle {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  padding-left: 15px
}

.footer-area .widgettitle:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 15px;
  width: 5px;
  background: #0554f2;
  left: 0
}

.footer-top-area .widget_mc4wp_form_widget h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px
}

.footer-top-area .mc4wp-form .form-group {
  border: 1px solid #999;
  border-radius: 4px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%
}

.footer-top-area .mc4wp-form .form-group:last-child {
  margin-bottom: 0
}

.footer-top-area .mc4wp-form .form-group .form-control {
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 5px 20px;
  height: 60px;
  box-shadow: none;
  border-radius: 4px
}

.footer-top-area .mc4wp-form .form-group .item-btn {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  height: 50px;
  border: none;
  margin: 5px;
  padding: 12px 30px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  line-height: 1.4;
  letter-spacing: 1px;
  outline: none;
  z-index: 1;
  background: #0554f2;
  transition: all .5s ease-out
}

.footer-top-area .mc4wp-form .form-group .form-control::-moz-placeholder {
  color: #a5a5a5
}

.footer-top-area .mc4wp-form .form-group .form-control::-webkit-input-placeholder {
  color: #a5a5a5
}

.footer-top-area {
  font-size: 16px;
  border-top: none;
  padding: 120px 0 60px
}

@media (max-width:991px) {
  .footer-top-area {
    padding: 70px 0 15px
  }
}

@media (max-width:767px) {
  .footer-top-area {
    text-align: left
  }
}

.footer-top-area .widget select {
  color: #444
}

.footer-top-area .widget_archive.widget>select {
  margin-top: 0
}

.footer-top-area .widget {
  margin-bottom: 60px;
  padding-bottom: 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 1
}

.footer-area caption {
  color: inherit
}

.footer-top-area ul.menu li.menu-item-has-children {
  width: 100%
}

.footer-top-area .widget ul.menu li a {
  margin-left: 22px;
  display: inline-block;
  position: relative;
  transition: all .14s ease-in-out
}

.footer-top-area .widget ul.menu li a:before {
  content: "\f101";
  font-family: flaticon !important;
  position: absolute;
  top: 1px;
  left: -22px;
  font-size: 14px;
  transition: all .3s ease-in-out
}

.footer-top-area .widget ul.menu li a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  width: 0;
  left: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.footer-top-area .widget ul.menu li a:hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width .4s ease
}

.footer-top-area .widget_techkit_address p {
  margin-bottom: 0
}

.footer-top-area .corporate-address {
  margin-top: 20px
}

.footer-top-area .corporate-address li {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding-bottom: 0
}

.footer-top-area .corporate-address li span {
  color: #fff;
  font-size: 16px;
  font-weight: 500
}

.footer-top-area .search-form input:-webkit-autofill,
.footer-top-area .search-form input:-webkit-autofill:hover,
.footer-top-area .search-form input:-webkit-autofill:focus,
.footer-top-area .search-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #181a2e inset !important
}

.footer-top-area .search-form .input-group>.custom-select:not(:last-child),
.footer-top-area .search-form .input-group>.form-control:not(:last-child) {
  border-bottom: 1px solid rgb(210 210 210/15%)
}

.footer-top-area .search-form button:hover {
  color: #fff
}

.footer-top-area .search-form input {
  color: #fff
}

.footer-top-area .widget_archive ul li a {
  display: inline-block;
  position: relative;
  transition: all .14s ease-in-out
}

.footer-top-area .widget_archive ul li a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  width: 0;
  left: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.footer-top-area .widget_archive ul li a:hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width .4s ease
}

.footer-top-area .widget_categories ul li a {
  display: inline-block;
  position: relative;
  transition: all .14s ease-in-out
}

.footer-top-area .widget_categories ul li a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  width: 0;
  left: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.footer-top-area .widget_categories ul li a:hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width .4s ease
}

.footer-top-area .widget_pages ul li a {
  display: inline-block;
  position: relative;
  transition: all .14s ease-in-out
}

.footer-top-area .widget_pages ul li a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  width: 0;
  left: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.footer-top-area .widget_pages ul li a:hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width .4s ease
}

.footer-top-area .widget_meta li a {
  display: inline-block;
  position: relative;
  transition: all .14s ease-in-out
}

.footer-top-area .widget_meta li a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  width: 0;
  left: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.footer-top-area .widget_meta li a:hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width .4s ease
}

.footer-top-area .widget_recent_comments ul li {
  transition: all .14s ease-in-out
}

.footer-top-area .widget_recent_comments ul li.recentcomments:last-child {
  margin-bottom: 0
}

.footer-top-area .widget_recent_comments ul li.recentcomments>a:before {
  display: none
}

.footer-top-area .widget_recent_comments ul li.recentcomments>span {
  position: relative
}

.footer-top-area .widget_recent_comments ul li.recentcomments:hover>span:before {
  background-color: #0554f2
}

.footer-top-area .widget_recent_comments ul li.recentcomments span>a:before {
  left: -15px;
  top: -3px
}

.footer-top-area .widget_recent_entries ul li a {
  display: inline-block;
  position: relative;
  transition: all .14s ease-in-out
}

.footer-top-area .widget_recent_entries ul li a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  width: 0;
  left: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.footer-top-area .widget_recent_entries ul li a:hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width .4s ease
}

.footer-area .footer-about {
  margin-bottom: 28px
}

@media(min-width:992px) {
  .footer-area .footer-about {
    margin-right: 40px
  }
}

.footer-area .footer-social {
  margin: 0;
  padding: 0;
  list-style: none
}

.footer-area .footer-social li {
  display: inline-block;
  margin-right: 5px;
  padding-bottom: 0;
  transition: all .3s ease-in-out
}

.footer-area .footer-social li a {
  height: 35px;
  width: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  background: #212338;
  border-radius: 7px;
  transition: all .4s ease
}

.footer-area .footer-social li a:hover {
  background: #0554f2
}

.footer-area .footer-social li a:hover i {
  color: #fff
}

.footer-area .footer-social li i.fa-facebook-f {
  color: #4064ac
}

.footer-area .footer-social li i.fa-x-twitter {
  color: #1c9cea
}

.footer-area .footer-social li i.fa-instagram {
  color: #d1005c
}

.footer-area .footer-social li i.fa-linkedin-in {
  color: #016196
}

.footer-area .footer-social li i.fa-pinterest-p {
  color: #df0022
}

.footer-top-area ul li a i {
  transition: all .3s ease-in-out
}

.footer-top-area .widget_tag_cloud .tagcloud {
  padding-top: 10px
}

.footer-top-area .widget_tag_cloud a {
  background: #f7f7f7;
  border-radius: 4px;
  color: #646464 !important;
  display: inline-block;
  font-size: 15px !important;
  margin: 0 2px 4px 0;
  padding: 8px 15px;
  transition: all .3s
}

@media(max-width:991px) {
  .footer-top-area .widget_tag_cloud a {
    padding: 8px
  }
}

.footer-top-area .widget_tag_cloud a:hover {
  background-color: #0554f2 !important;
  color: #fff !important
}

.footer-top-area .search-form input.search-submit {
  background-color: #fff;
  color: #0554f2
}

.footer-top-area .widget_calendar caption {
  caption-side: initial;
  text-align: center;
  font-weight: 500;
  border-radius: 6px 6px 0 0;
  background: #0554f2;
  color: #fff;
  padding: 10px 7px;
  margin-top: 0
}

.footer-top-area .widget_calendar table th,
.footer-top-area .widget_calendar table td {
  border: none
}

.footer-top-area .widget_calendar table td#today {
  background: #0554f2;
  color: #fff;
  border-radius: 3px
}

.footer-top-area .widget_calendar table td#today a {
  color: #fff
}

.footer-top-area .widget_calendar table td a {
  color: #0554f2
}

.footer-top-area a {
  text-decoration: none
}

.footer-top-area .widget a:hover,
.footer-top-area .widget a:active {
  color: #14133b
}

.footer-top-area ul li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
  line-height: 1.6
}

.footer-top-area ul li:last-child,
.footer-top-area ul.menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 0
}

.footer-top-area ul li ul.children,
.footer-top-area ul li ul.sub-menu {
  padding-left: 15px;
  padding-top: 15px
}

.footer-top-area ul li ul.children li :last-child,
.footer-top-area ul li ul.sub-menu li :last-child {
  margin-bottom: 0;
  padding-bottom: 0
}

.footer-top-area ul li a {
  text-decoration: none
}

.footer-top-area .widget_tag_cloud a {
  text-decoration: none
}

.footer-top-area .mc4wp-success {
  margin-top: 25px
}

.footer-top-area .widget>form.mc4wp-form {
  padding: 0;
  background: 0 0
}

.footer-top-area .stylish-input-group {
  padding-top: 15px
}

.footer-top-area .stylish-input-group .form-control {
  background: #2d2d2d;
  border: none;
  box-shadow: none;
  color: #646464;
  border-radius: 0;
  height: 39px;
  padding-left: 18px
}

.footer-top-area .stylish-input-group .form-control::-moz-placeholder {
  color: #646464
}

.footer-top-area .stylish-input-group .form-control::-webkit-input-placeholder {
  color: #646464
}

.footer-top-area .stylish-input-group .input-group-addon {
  background: #2d2d2d;
  border: none;
  border-radius: 0;
  padding: 0
}

.footer-top-area .stylish-input-group .input-group-addon button {
  background: #2d2d2d;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 11px 16px;
  transition: all .3s ease-in-out
}

.footer-top-area .stylish-input-group .input-group-addon button i {
  color: #0554f2
}

.footer-top-area .stylish-input-group .input-group-addon button:hover {
  background: #0554f2;
  opacity: .7
}

.footer-top-area .stylish-input-group .input-group-addon button:hover i {
  color: #fff
}

.footer-top-area .rt-news-box .media-body .post-date-dark {
  font-size: 14px;
  margin-bottom: 12px
}

.footer-top-area .rt-news-box .media-body .post-date-dark ul li {
  color: #aeaeae
}

.footer-top-area .rt-news-box .media-body h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0
}

.footer-top-area .rt-news-box .dark .rt-news-box-widget .media-body a {
  color: #c6ceec
}

.footer-top-area .rt-news-box .dark .rt-news-box-widget .media-body a:hover {
  color: #0554f2
}

.footer-top-area .rt-news-box .media a.post-img-holder {
  width: 32% !important
}

.footer-top-area .gallery .gallery-item {
  max-width: 31.5%;
  margin: 0 5px 5px 0
}

.footer-top-area .gallery .gallery-item img {
  max-height: 100px
}

.footer-area .copyright {
  color: #aaa;
  text-align: center
}

@media(max-width:767px) {
  .footer-area .copyright {
    text-align: left
  }
}

.footer-area .copyright a {
  color: #d7d7d7
}

.footer-area .copyright a:hover {
  color: #fff
}

.footer-area .widget_media_image img {
  max-width: 175px !important
}

.footer-style-1 .footer-area {
  position: relative;
  overflow: hidden;
  background-color: #181a2e;
  color: #d7d7d7
}

.footer-style-1 .footer-top-area .mc4wp-form .form-group {
  background: #2c2c2c;
  border: none
}

.footer-style-1 .footer-area .mc4wp-form .form-group .form-control {
  padding: 5px 15px;
  height: 50px
}

.footer-style-1 .footer-area .mc4wp-form .form-group .item-btn {
  margin: 0;
  padding: 5px 14px
}

.footer-style-1 .footer-top-area .mc4wp-form .form-group .form-control::-moz-placeholder {
  color: #d7d7d7
}

.footer-style-1 .footer-top-area .mc4wp-form .form-group .form-control::-webkit-input-placeholder {
  color: #d7d7d7
}

.footer-style-1 .footer-area .widget_media_image {
  margin-bottom: 25px
}

.footer-style-1 .footer-bottom-area {
  border-top: 1px solid #282b43;
  font-size: 17px;
  text-align: center;
  padding: 14px 0
}

.footer-style-1 .footer-area .widget_text {
  margin-bottom: 20px
}

.footer-style-1 .footer-area ul.shape-holder {
  margin: 0;
  padding: 0;
  list-style: none
}

.footer-style-1 .footer-area ul.shape-holder li {
  position: absolute;
  z-index: 0
}

.footer-style-1 .footer-area ul.shape-holder li.shape1 {
  left: 75px;
  top: 80px
}

.footer-style-1 .footer-area ul.shape-holder li.shape2 {
  right: -3%;
  top: -53%
}

.footer-style-1 .footer-top-area .widget ul.menu li a {
  margin-left: 0
}

.footer-style-1 .footer-top-area .widget ul.menu li a:before {
  display: none
}

@media(max-width:1440px) {
  .footer-style-1 .footer-area ul.shape-holder li.shape1 {
    left: 0
  }

  .footer-style-1 .footer-area ul.shape-holder li.shape2 {
    right: 0;
    top: 0
  }
}

@media(max-width:767px) {

  .footer-style-1 .footer-area ul.shape-holder li.shape1,
  .footer-style-1 .footer-area ul.shape-holder li.shape2 {
    display: none
  }
}

.footer-style-2 .footer-area {
  position: relative;
  overflow: hidden
}

.footer-style-2 .footer-top-area {
  background-color: #191b29;
  color: #d7d7d7;
  padding-top: 160px
}

.footer-style-2 .shape-holder {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-style-2 .shape-holder .shape1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center
}

.footer-style-2 .footer-bottom-area {
  position: relative;
  z-index: 999;
  background: #1c1e2e;
  font-size: 17px;
  text-align: center;
  padding: 14px 0
}

.footer-style-2 .footer-logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #323238;
  margin-bottom: 60px;
  padding-bottom: 60px
}

@media(max-width:440px) {
  .footer-style-2 .footer-logo-area {
    display: block
  }

  .footer-style-2 .footer-area .footer-social {
    margin-top: 30px
  }
}

@media(max-width:991px) {
  .footer-style-2 .footer-top-area {
    padding-bottom: 25px
  }
}

.footer-style-3 .footer-area {
  position: relative;
  overflow: hidden
}

.footer-style-3 .footer-area .widgettitle {
  color: #14133b
}

.footer-style-3 .footer-top-area {
  background-color: #fff;
  color: #5b6674;
  padding-bottom: 0
}

.footer-style-3 .footer-top-area .widget {
  margin-bottom: 115px
}

@media(max-width:991px) {
  .footer-style-3 .footer-top-area .widget {
    margin-bottom: 60px
  }
}

.footer-style-3 .footer-area .copyright {
  color: #5b6674;
  font-size: 16px;
  margin: 0;
  padding: 16px 15px;
  border-top: 1px solid #e6e7ec
}

.footer-style-3 .footer-top-area a,
.footer-style-3 .footer-area .copyright a,
.footer-style-3 .footer-top-area .widget ul.menu li a {
  color: #5b6674
}

.footer-style-3 .footer-top-area a:hover,
.footer-style-3 .footer-area .copyright a:hover,
.footer-style-3 .footer-top-area .widget ul.menu li a:hover {
  color: #0554f2
}

.footer-style-3 .footer-area .copyright a:hover {
  color: #0554f2
}

.footer-style-3 .footer-area .widget_media_image {
  margin-bottom: 20px
}

.footer-style-3 .footer-top-area .widget ul.menu li a {
  margin-left: 0
}

.footer-style-3 .footer-top-area .widget ul.menu li a:before {
  display: none
}

.footer-style-3 .footer-top-area .widget ul.menu li a:after {
  background-color: #0554f2
}

.footer-style-3 .footer-area .footer-social li a {
  background: #efefef
}

.footer-style-3 .footer-area ul.shape-holder {
  margin: 0;
  padding: 0;
  list-style: none
}

.footer-style-3 .footer-area ul.shape-holder li {
  position: absolute;
  z-index: 0
}

.footer-style-3 .footer-area ul.shape-holder li.shape1 {
  left: 75px;
  top: 80px
}

.footer-style-3 .footer-area ul.shape-holder li.shape2 {
  right: -3%;
  top: -53%
}

@media(max-width:1440px) {
  .footer-style-3 .footer-area ul.shape-holder li.shape1 {
    left: 0
  }

  .footer-style-3 .footer-area ul.shape-holder li.shape2 {
    right: 0;
    top: 0
  }
}

@media(max-width:767px) {

  .footer-style-3 .footer-area ul.shape-holder li.shape1,
  .footer-style-3 .footer-area ul.shape-holder li.shape2 {
    display: none
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important
}

.header-search-form input:-webkit-autofill,
.header-search-form input:-webkit-autofill:hover,
.header-search-form input:-webkit-autofill:focus,
.header-search-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important
}

.widget_categories select,
.widget_archive select,
.widget_text select,
.fluentform select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-size: 12px;
  background-image: url(/wp-content/themes/techkit/assets/img/select-arrow.png) !important;
  background-repeat: no-repeat;
  background-position: 95%
}

.widget select {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 14px 13px;
  width: 100%;
  outline: none
}

.widget>select {
  margin-top: 10px
}

.widget ul {
  margin: 0;
  padding: 0;
  list-style-type: none
}

.widget ul li a {
  color: #444;
  display: inline;
  transition: all .3s ease-in-out
}

.widget ul li a:hover {
  color: #0554f2
}

.widget_recent_entries ul li span {
  display: block
}

.sidebar-widget-area .widget {
  background: #fff;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 7px 70px 0px rgb(0 0 0/5%);
  padding: 28px 37px 32px
}

.sidebar-widget-area .widget h3.widgettitle {
  display: block;
  position: relative;
  color: #14133b;
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.4;
  z-index: 2
}

.sidebar-widget-area .widget:last-child {
  margin-bottom: 0
}

.sidebar-widget-area .widget ul li {
  border-bottom: 1px solid #ebebeb;
  margin: 0 0 13px;
  padding: 0 0 13px;
  position: relative;
  transition: all .14s ease-in-out
}

.sidebar-widget-area .widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.sidebar-widget-area .widget ul li a {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  -webkit-transition: all .14s ease-in-out;
  transition: all .14s ease-in-out
}

.sidebar-widget-area .widget ul li a:hover {
  color: #0554f2
}

.sidebar-widget-area .widget ul li ul {
  border-top: 1px solid #e2e2e2;
  margin-top: 10px;
  padding-top: 10px
}

.sidebar-widget-area .widget_nav_menu ul ul.sub-menu li:last-child,
.sidebar-widget-area .widget_categories ul ul.children li:last-child {
  margin-bottom: 0;
  border-bottom: none
}

.sidebar-widget-area .widget ul li.active a {
  color: #14133b
}

.sidebar-widget-area .widget ul li ul.children li:last-child,
.sidebar-widget-area .widget ul li ul.sub-menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 0
}

.sidebar-widget-area .widget_block h2 {
  display: block;
  position: relative;
  color: #14133b;
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.4;
  z-index: 2
}

.sidebar-widget-area ol.wp-block-latest-comments {
  padding-left: 0
}

.sidebar-widget-area .wp-block-latest-comments__comment {
  line-height: 1.6;
  list-style: none;
  margin-bottom: 1em
}

.widget_search .wp-block-search .wp-block-search__label {
  display: none
}

.wp-block-search .wp-block-search__label {
  font-size: 20px;
  font-weight: 500
}

.wp-block-search input {
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  color: #444;
  font-size: 15px;
  outline: none
}

.wp-block-search .wp-block-search__button {
  background-color: #0554f2;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500
}

.sidebar-widget-area ul.wp-block-categories li,
.sidebar-widget-area ul.wp-block-archives li {
  width: 100%;
  float: left;
  background: #fff;
  line-height: 1.6;
  text-align: right
}

.sidebar-widget-area ul.wp-block-categories li a,
.sidebar-widget-area ul.wp-block-archives li a {
  float: left
}

.wp-block-categories,
.wp-block-archives {
  margin: 0;
  padding: 0;
  list-style-type: none
}

.wp-block-categories li ul.children,
.wp-block-archives li ul.children {
  padding-left: 17px;
  float: left;
  width: 100%;
  border-top: 1px solid #e2e2e2;
  margin-top: 10px;
  padding-top: 10px;
  margin-left: 0;
  list-style: none
}

.wp-block-categories li,
.wp-block-archives li {
  width: 100%;
  float: left;
  background: #fff;
  line-height: 1.6;
  text-align: right;
  border-bottom: 1px solid #ebebeb;
  margin: 0 0 13px;
  padding: 0 0 13px;
  position: relative;
  transition: all .14s ease-in-out
}

.wp-block-categories li:last-child,
.wp-block-archives li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.wp-block-categories li a,
.wp-block-archives li a {
  float: left;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  color: #444;
  display: inline;
  transition: all .14s ease-in-out
}

.wp-block-categories li a:hover,
.wp-block-archives li a:hover {
  color: #0554f2
}

.wp-block-categories-dropdown select,
.wp-block-archives-dropdown select {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 14px 13px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-size: 12px;
  background-image: url(/wp-content/themes/techkit/assets/img/select-arrow.png) !important;
  background-repeat: no-repeat;
  background-position: 98%
}

.sidebar-widget-area .widget_recent_comments ul li.recentcomments {
  background: #fff;
  line-height: 1.6;
  position: relative
}

.sidebar-widget-area .widget_recent_comments ul li.recentcomments:last-child {
  margin-bottom: 0
}

.sidebar-widget-area .widget_recent_comments ul li.recentcomments>a:before {
  display: none
}

.sidebar-widget-area .widget_recent_comments ul li.recentcomments>span {
  position: relative
}

.sidebar-widget-area .widget_recent_comments ul li.recentcomments:hover>span:before {
  background-color: #0554f2
}

.sidebar-widget-area .widget_recent_comments ul li.recentcomments span>a:before {
  left: -15px;
  top: -3px
}

.sidebar-widget-area .widget_recent_entries ul li .post-date {
  color: #535151;
  font-size: 14px
}

.sidebar-widget-area .widget_rss .widgettitle a {
  color: #14133b
}

.sidebar-widget-area .widget_rss ul li {
  position: relative;
  color: #646464;
  background: #fff;
  line-height: 1.6;
  transition: all .3s ease-out
}

.sidebar-widget-area .widget_rss ul li a {
  padding-left: 0;
  font-weight: 500;
  color: #14133b
}

.sidebar-widget-area .widget_rss ul li a:before {
  display: none
}

.sidebar-widget-area .widget_rss ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 20px
}

.sidebar-widget-area .widget_rss cite {
  color: #14133b;
  font-weight: 500
}

.widget_text .textwidget strong {
  font-weight: 500
}

.sidebar-widget-area .widget_tag_cloud a,
.sidebar-widget-area .widget_product_tag_cloud a {
  color: #646464;
  border: none;
  background: #f7f7f7;
  border-radius: 5px;
  display: inline-block;
  font-size: 15px !important;
  margin: 0 0 4px;
  padding: 6px 12px;
  font-weight: 400;
  transition: all .14s ease-in-out
}

.sidebar-widget-area .widget_tag_cloud a:hover,
.sidebar-widget-area .widget_product_tag_cloud a:hover {
  background-color: #0554f2;
  border: none;
  color: #fff
}

.search-form {
  padding-top: 0
}

.search-form input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  color: #444;
  font-size: 15px;
  border-radius: 0;
  float: left;
  height: 50px;
  padding: 0;
  width: 100%;
  outline: none;
  background-color: transparent;
  letter-spacing: 1px
}

.search-form button {
  background: 0 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #0554f2;
  font-size: 16px;
  position: absolute;
  top: 0;
  transition: all .5s ease;
  padding: 13px 10px;
  right: 0
}

.search-form button:focus {
  outline: none;
  box-shadow: none
}

.search-form button:hover {
  color: #14133b
}

.search-form input:focus {
  outline: none;
  box-shadow: none;
  border-color: #0554f2;
  background: 0 0
}

.search-form input.search-submit {
  width: 100%
}

.widget_search .search-form input.form-control::-webkit-input-placeholder {
  color: #939396
}

.widget_search .search-form input.form-control:-ms-input-placeholder {
  color: #939396
}

.widget_search .search-form input.form-control:-moz-placeholder {
  color: #939396
}

.sidebar-widget-area .widget.widget_search {
  padding: 28px 37px 37px
}

.mobile-header-search .custom-search-input input {
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: none;
  float: left;
  height: 40px;
  padding: 0 25px 0 12px;
  width: 100%
}

.mobile-header-search .custom-search-input button {
  background: 0 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #646464;
  font-size: 16px;
  position: absolute;
  top: 0;
  transition: all .5s ease;
  padding: 8px 18px 8px 17px;
  right: 15px
}

.mobile-header-search .custom-search-input button:hover {
  color: #0554f2
}

.mobile-header-search .custom-search-input .btn {
  z-index: 5
}

.widget_product_search .search-field {
  border: 1px solid #e1e1e1;
  border-radius: 4px 0 0 4px;
  padding: 13px 10px;
  float: left
}

.widget_product_search button {
  padding: 8px 10px;
  border-radius: 0 4px 4px 0
}

.widget_recent_reviews .product-title {
  font-size: 19px;
  color: #14133b;
  font-weight: 500;
  margin-bottom: 5px;
  display: block
}

.widget_recent_reviews span.reviewer {
  font-size: 15px;
  color: #7a7a7a;
  font-weight: 500;
  margin-top: 5px;
  display: block
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #0554f2
}

.input-group>.custom-file .custom-file-input:focus~.custom-file-label,
.input-group>.custom-select:focus,
.input-group>.form-control:focus {
  z-index: 0
}

.sidebar-widget-area .widget.title-style-2.rt_widget_recent_entries_with_image {
  margin-bottom: 20px
}

.sidebar-widget-area .widget.rt-news-box .rt-widget-title-holder {
  margin-bottom: 0
}

.rt_widget_recent_entries_with_image .topic-box .widget-recent-post-title {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.4;
  margin-top: 5px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.rt_widget_recent_entries_with_image .topic-box {
  margin-bottom: 20px;
  position: relative
}

.rt_widget_recent_entries_with_image .topic-box .rt-wid-post-img {
  display: block;
  overflow: hidden;
  border-radius: 4px
}

.rt_widget_recent_entries_with_image .topic-box .rt-wid-post-img img {
  border-radius: 4px;
  transform: scale(1);
  transition: all .3s ease-in-out
}

.rt_widget_recent_entries_with_image .topic-box .rt-wid-post-img:hover img {
  transform: scale(1.1)
}

.rt_widget_recent_entries_with_image .topic-box .widget-recent-post-title a {
  color: #14133b
}

.rt_widget_recent_entries_with_image .topic-box .widget-recent-post-title a:hover {
  color: #0554f2
}

.rt_widget_recent_entries_with_image .topic-box .post-date1 {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px
}

.rt_widget_recent_entries_with_image .topic-box .posted-date {
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  padding: 0;
  display: inline-block;
  line-height: 1.4;
  border: none;
  position: relative;
  font-family: "Barlow", sans-serif
}

.rt_widget_recent_entries_with_image .topic-box .posted-date i {
  color: #7e7e7e;
  padding-right: 7px
}

.rt_widget_recent_entries_with_image .topic-box .post-date1 span a {
  color: #fff
}

.rt-news-box .topic-box .post-date1 span a:hover,
.rt_widget_recent_entries_with_image .topic-box .post-date1 span a:hover {
  color: #14133b
}

.rt_widget_recent_entries_with_image .topic-box .post-date1 span {
  text-transform: uppercase;
  z-index: 2;
  display: inline-block;
  background: #0554f2;
  border-radius: 4px;
  padding: 6px 10px;
  position: relative;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4
}

.post-box-style {
  display: inline-block
}

.post-box-style .topic-box {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 10px
}

.post-box-style .rt-news-box-widget {
  position: relative;
  background: #fff;
  border-bottom: none;
  margin-bottom: 12px;
  padding-bottom: 12px;
  display: inline-block
}

.post-box-style .rt-news-box-widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.post-box-style .media a.post-img-holder {
  float: left;
  width: 96px;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 5px
}

.post-box-style .media a.post-img-holder img {
  border-radius: 5px;
  transform: scale(1);
  transition: all .14s ease-in-out
}

.post-box-style .media:hover a.post-img-holder img {
  transform: scale(1.1)
}

.post-box-style .topic-box .rt-wid-post-img {
  margin-bottom: 12px;
  display: block;
  overflow: hidden
}

.post-box-style .media-body h3 {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.4;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.post-box-style .media-body h3 a {
  color: #14133b
}

.post-box-style .media-body h3 a:hover {
  color: #0554f2
}

.post-box-style .post-box-date {
  margin-bottom: 8px
}

.post-box-style .post-box-date ul {
  list-style: none;
  line-height: 1;
  margin-bottom: 5px;
  margin-left: 0;
  padding: 0
}

.post-box-style .post-box-date ul li {
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
  padding: 0;
  display: inline-block;
  line-height: 1.4;
  border: none;
  position: relative
}

.post-box-style .post-box-date ul li a:before {
  display: none
}

.post-box-style .post-box-date ul li:last-child {
  margin-right: 0
}

.post-box-style .post-box-date ul li a {
  color: #0554f2;
  font-size: 14px;
  font-weight: 500
}

.post-box-style .post-box-date ul li i {
  color: #7e7e7e;
  padding-right: 7px
}

.rt-product-box .widget-product-price {
  font-size: 14px;
  margin-top: 3px;
  color: #535151
}

.post-tab-layout .position-relative {
  background: #fff;
  border-bottom: none;
  margin-bottom: 10px;
  padding-bottom: 10px
}

.post-tab-layout .position-relative:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.post-tab-layout .media {
  display: inline-flex
}

.post-tab-layout .media .media-body {
  flex: 1
}

.post-tab-layout .media .tab-img-holder {
  width: 35%;
  float: left;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 4px
}

.post-tab-layout .media .tab-img-holder img {
  transform: scale(1);
  transition: all .3s ease-in-out
}

.post-tab-layout .media .tab-img-holder:hover img {
  transform: scale(1.1)
}

.post-tab-layout ul.btn-tab {
  border-bottom: none;
  margin-bottom: 30px;
  margin-left: 0
}

.post-tab-layout ul.btn-tab li {
  margin-bottom: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: none
}

.post-tab-layout ul.item-inline2 li {
  width: 33.33%
}

.post-tab-layout ul.item-inline2 li,
ul.item2-inline li {
  display: inline-block;
  margin-right: 0
}

.post-tab-layout ul.item-inline li,
ul.item-inline2 li {
  margin-right: 3px;
  margin-bottom: 3px;
  float: left
}

.post-tab-layout ul.item-inline2 li:last-child {
  margin-right: 0;
  margin-bottom: 5px
}

.post-tab-layout ul.btn-tab li .active {
  border: 1px solid transparent;
  background-color: #0554f2;
  color: #fff !important
}

.post-tab-layout ul.btn-tab li a:before {
  display: none
}

.post-tab-layout ul.btn-tab li a {
  background-color: #f8f8f8;
  border: 1px solid #dcdcdc;
  padding: 10px 0;
  display: block;
  color: #14133b;
  transition: all .5s ease-out;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center
}

.sidebar-widget-area .post-tab-layout ul.btn-tab li a:hover {
  transform: inherit
}

.post-tab-layout .entry-title {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 10px;
  line-height: 1.4;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.post-tab-layout .entry-title a {
  color: #14133b
}

.post-tab-layout .entry-title a:hover {
  color: #0554f2
}

.post-tab-layout .post-box-date {
  line-height: 1
}

.post-tab-layout .post-box-date ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.post-tab-layout .post-box-date ul li {
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 1.4;
  border: none;
  position: relative;
  font-family: "Barlow", sans-serif
}

.post-tab-layout .post-box-date ul li:first-child {
  color: #0554f2
}

.post-tab-layout .post-box-date ul li:last-child {
  margin-right: 0
}

.post-tab-layout .post-box-date ul li a {
  color: #444;
  font-size: 14px
}

.post-tab-layout .post-box-date ul li a:before {
  display: none
}

.post-tab-layout .post-box-date ul li a:hover {
  color: #14133b
}

.post-tab-layout .post-box-date ul li i {
  color: #7e7e7e;
  margin-right: 7px
}

.feature-post-layout .rt-feature-widget .entry-title {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.4
}

.feature-post-layout .entry-title a {
  color: #000
}

.feature-post-layout .entry-title a:hover {
  color: #0554f2
}

.feature-post-layout .post-box-date ul {
  list-style: none;
  margin: 0 0 5px;
  padding: 0
}

.feature-post-layout .post-box-date ul li {
  font-size: 14px;
  color: #646464;
  font-weight: 600;
  margin: 0;
  padding: 0;
  border: none;
  display: inline-block;
  position: relative
}

.feature-post-layout .post-box-date ul li:after {
  content: ".";
  color: #646464;
  font-weight: 700;
  padding: 0 5px 0 8px
}

.feature-post-layout .post-box-date ul li:last-child:after {
  display: none
}

.feature-post-layout .post-box-date ul li:last-child {
  margin-right: 0
}

.feature-post-layout .post-box-date ul li a {
  color: #646464;
  font-size: 14px
}

.feature-post-layout .post-box-date ul li a:before {
  display: none
}

.feature-post-layout .post-box-date ul li a:hover {
  color: #14133b
}

.feature-post-layout .post-box-date ul li.feature-date {
  color: #0554f2;
  font-weight: 700
}

.feature-post-layout .media {
  margin-bottom: 18px;
  overflow: hidden
}

.feature-post-layout .media-body p {
  margin-top: 12px
}

.feature-post-layout .media .post-img-holder {
  overflow: hidden;
  border-radius: 4px
}

.feature-post-layout .media .post-img-holder img {
  transform: scale(1);
  transition: all .3s ease-in-out
}

.feature-post-layout .media .post-img-holder:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1)
}

.feature-post-layout .list-item {
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 10px;
  padding-bottom: 15px
}

.feature-post-layout .list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.feature-post-layout .list-item .entry-title {
  font-size: 16px
}

.sidebar-widget-area .widget .corporate-address li {
  display: inline-block;
  width: 100%;
  vertical-align: top
}

.sidebar-widget-area .widget .corporate-address li i {
  color: #0554f2;
  font-size: 19px;
  padding: 0 15px 10px 0
}

.sidebar-widget-area .widget .corporate-address li i.fa-map-marker {
  color: #0554f2;
  font-size: 19px;
  padding: 0 24px 10px 0
}

.sidebar-widget-area .widget .corporate-address li a {
  color: #14133b;
  line-height: 34px;
  font-size: 15px;
  transition: all .3s ease-out;
  font-weight: 400
}

.sidebar-widget-area .widget .corporate-address li a:before {
  content: "";
  margin-right: 0
}

.sidebar-widget-area .widget_categories ul li,
.sidebar-widget-area .widget_archive ul li {
  width: 100%;
  float: left;
  background: #fff;
  line-height: 1.6;
  text-align: right
}

.sidebar-widget-area .widget_categories ul li:last-child,
.sidebar-widget-area .widget_archive ul li:last-child {
  padding-bottom: 0
}

.sidebar-widget-area .widget_categories ul li a,
.sidebar-widget-area .widget_archive ul li a {
  float: left
}

.sidebar-widget-area .widget ul li ul.children,
.sidebar-widget-area .widget ul li ul.sub-menu {
  padding-left: 17px;
  float: left;
  width: 100%
}

.sidebar-widget-area .widget.widget_pages ul li ul.children,
.sidebar-widget-area .widget.widget_nav_menu ul li ul.sub-menu {
  float: inherit;
  width: inherit
}

@media(max-width:1199px) {

  .sidebar-widget-area .widget ul li ul.children,
  .sidebar-widget-area .widget ul li ul.sub-menu {
    padding-left: 5px
  }
}

.sidebar-widget-area .widget_calendar caption {
  caption-side: initial;
  text-align: center;
  font-weight: 500;
  border-radius: 6px 6px 0 0;
  background: #0554f2;
  color: #fff;
  padding: 10px 7px;
  margin-top: 0
}

.sidebar-widget-area .widget_calendar table th,
.sidebar-widget-area .widget_calendar table td {
  border: none;
  color: #444
}

.sidebar-widget-area .widget_calendar table th {
  font-weight: 500
}

.sidebar-widget-area .widget_calendar table td#today {
  background: #0554f2;
  color: #fff;
  border-radius: 3px
}

.sidebar-widget-area .widget_calendar table td#today a {
  color: #fff
}

.sidebar-widget-area .widget_calendar a {
  color: #444;
  font-weight: 500
}

.sidebar-widget-area .widget_calendar td a {
  color: #0554f2
}

.sidebar-widget-area .widget_calendar a:hover {
  color: #0554f2
}

.gallery .gallery-item {
  margin: 0;
  text-align: center
}

.gallery .gallery-item .gallery-icon {
  margin: 5px
}

.gallery .gallery-item .gallery-icon img {
  border-radius: 4px
}

.gallery .gallery-item .gallery-caption {
  font-size: 13px
}

.sidebar-widget-area .widget.widget_media_image {
  padding: 0
}

.sidebar-widget-area .rt-about-widget ul.footer-social {
  list-style: none;
  margin: 20px 0 0;
  padding: 0
}

.sidebar-widget-area .rt-about-widget ul.footer-social li {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 0;
  line-height: 1
}

.sidebar-widget-area .rt-about-widget ul.footer-social li a {
  font-size: 16px;
  transition: all .3s ease-out;
  font-weight: 400;
  background: #fff;
  padding: 14px 15px;
  display: flex;
  width: 60px;
  height: 60px;
  text-align: center;
  align-items: center;
  justify-content: space-around
}

.sidebar-widget-area .rt-about-widget ul.footer-social li a:before {
  display: none
}

.sidebar-widget-area .widget.widget_techkit_about_author {
  padding: 0
}

.widget_techkit_about_author .author-widget {
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  padding: 50px 40px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat
}

.widget_techkit_about_author .author-widget span {
  display: block;
  color: #fff
}

.widget_techkit_about_author .author-widget span.phone {
  font-size: 18px
}

.widget_techkit_about_author .author-widget span a {
  color: #fff
}

.widget_techkit_about_author .author-widget:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .85);
  z-index: -1
}

.widget_techkit_about_author .author-widget img {
  border-radius: 50%;
  margin-bottom: 18px;
  width: 120px
}

.widget_techkit_about_author .author-widget h3 {
  color: #fff;
  margin-bottom: 12px
}

.widget_techkit_about_author .author-widget .about-social {
  list-style: none;
  margin: 15px 0 0;
  padding: 0
}

.widget_techkit_about_author .author-widget .about-social li {
  display: inline-block;
  border: none;
  margin: 0;
  padding: 0
}

.widget_techkit_about_author .author-widget .about-social li a {
  display: block;
  background: #eff4ff;
  color: #0554f2;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 14px;
  margin: 0 4px
}

.widget_techkit_about_author .author-widget .about-social li a:hover {
  color: #fff;
  background: #0554f2
}

.widget_techkit_download .download-list .item {
  display: flex;
  align-items: center
}

.widget_techkit_download .download-list .item:first-child {
  margin-bottom: 30px
}

.widget_techkit_download .download-list .item-icon {
  margin-right: 15px;
  line-height: 1
}

.widget_techkit_download .download-list .item-icon i {
  font-size: 47px;
  color: #0554f2
}

.widget_techkit_download .download-list .item-text h5 {
  margin-bottom: 0
}

.widget_techkit_download .download-list .item-text .link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Roboto", sans-serif;
  transition: all .4s ease;
  display: block
}

.widget_techkit_download .download-list .item-text .link:hover {
  letter-spacing: 1.4px
}

.widget-open-hour ul.opening-schedule {
  margin-right: 15px
}

.widget-open-hour ul.opening-schedule li>span {
  color: #fff;
  font-weight: 400;
  padding-left: 10px
}

.widget-open-hour ul.opening-schedule li .os-close {
  color: #14133b;
  font-weight: 500
}

.widget-open-hour ul.opening-schedule li:last-child {
  margin-bottom: 0
}

.widget_apsc_widget .apsc-theme-4 {
  text-align: center
}

.widget_apsc_widget .apsc-theme-4 .apsc-each-profile {
  display: inline-block;
  float: inherit;
  width: inherit;
  margin-right: 10px;
  margin-bottom: 0
}

.widget_apsc_widget .apsc-theme-4 .apsc-each-profile .apsc-inner-block {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 13px
}

.widget_apsc_widget .apsc-theme-4 .apsc-each-profile:hover .apsc-inner-block {
  background-color: transparent
}

.widget_apsc_widget .apsc-theme-4 .apsc-each-profile:last-child {
  margin-right: 0
}

.widget_apsc_widget .apsc-theme-4 span.media-name {
  display: none
}

.widget_apsc_widget .apsc-theme-4 span.apsc-count {
  padding-right: 5px
}

.widget_apsc_widget .apsc-theme-4 .social-icon i {
  font-size: 16px;
  padding-right: 7px
}

.sidebar-widget-area .widget.widget_media_gallery {
  background: 0 0;
  box-shadow: none;
  padding: 0
}

.sidebar-widget-area .widget.widget_media_gallery .gallery-size-thumbnail {
  margin-bottom: 0
}

.sidebar-widget-area .widget.widget_instagram-feed-widget {
  background: 0 0;
  box-shadow: none;
  padding: 0
}

.sidebar-widget-area .widget.widget_instagram-feed-widget .sbi_small {
  padding-bottom: 0 !important
}

#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap:before {
  background: rgba(5, 84, 242, .6);
  height: 0;
  width: 0
}

#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap:before,
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all .3s ease-out;
  z-index: 1;
  opacity: 0
}

#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap:after {
  content: "\f16d";
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Brands";
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
  top: 100%
}

#sb_instagram #sbi_images .sbi_item:hover .sbi_photo_wrap:after {
  opacity: 1;
  transition-delay: .1s;
  top: 50%
}

#sb_instagram #sbi_images .sbi_item:hover .sbi_photo_wrap:before {
  width: 100%;
  height: 100%;
  opacity: 1
}

#sb_instagram .sbi_photo_wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden
}

#sb_instagram.sbi_col_3 #sbi_images .sbi_item {
  padding: 5px !important
}

.entry-banner {
  background: #14133b;
  position: relative;
  z-index: 3
}

.entry-banner:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(20, 19, 59, .75);
  z-index: 1
}

.entry-banner .entry-banner-content {
  padding: 140px 0 150px;
  text-align: center;
  position: relative;
  z-index: 2
}

.entry-banner .entry-banner-content h1 {
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
  font-size: 46px
}

.entry-banner .entry-banner-content h1 a {
  color: #14133b
}

.entry-banner .entry-banner-content h1 a:hover {
  color: #646464
}

.breadcrumb-area .entry-breadcrumb span a {
  color: #fff
}

.breadcrumb-area .entry-breadcrumb span a:hover {
  color: #0554f2
}

.breadcrumb-area .entry-breadcrumb .current-item,
.breadcrumb-area .entry-breadcrumb>span:last-child {
  color: #c7c7c7
}

.entry-banner .entry-breadcrumb .delimiter {
  color: #fff;
  padding: 0 7px
}

.entry-banner .entry-breadcrumb .dvdr {
  color: #9e9586;
  padding: 0 7px
}

.trheader .entry-banner .entry-banner-content {
  padding-top: 205px
}

@media (max-width:991px) {
  .entry-banner .entry-banner-content {
    padding: 80px 0 85px !important
  }

  .entry-banner .entry-banner-content h1 {
    font-size: 38px;
    line-height: 1.2
  }
}

.breadcrumb-trail ul.trail-items {
  margin: 10px 0 0;
  padding: 0;
  list-style: none
}

.breadcrumb-trail ul.trail-items li {
  display: inline-block;
  font-size: 16px;
  position: relative;
  padding-right: 16px;
  margin-right: 12px;
  color: #0554f2
}

.breadcrumb-trail ul.trail-items li:after {
  position: absolute;
  content: "-";
  right: 0;
  top: 0
}

.breadcrumb-trail ul.trail-items li:last-child:after {
  display: none
}

.breadcrumb-trail ul.trail-items li a {
  color: #0554f2
}

.breadcrumb-trail ul.trail-items li a:hover {
  color: #646464
}

.breadcrumb-trail ul.trail-items li>span {
  color: #646464
}

.banner-text {
  line-height: 1.4
}

.site-main .entry-breadcrumb .current {
  color: #0554f2
}

.button-style-1 {
  font-size: 16px;
  color: #0554f2;
  font-weight: 500;
  padding: 0;
  transition: all .4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  letter-spacing: .16px;
  font-family: "Barlow", sans-serif
}

a.button-style-1:hover {
  color: #0554f2
}

.button-style-2 {
  background: #0554f2;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 11px 16px 11px 25px;
  transition: all .4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  letter-spacing: .16px;
  font-family: "Barlow", sans-serif
}

a.button-style-2:hover {
  color: #fff
}

.button-style-2.btn-common path.rt-button-cap {
  stroke: #fff
}

.button-style-3 {
  background: 0 0;
  border: 1px solid #4d506e;
  border-radius: 5px;
  font-size: 16px;
  color: #0554f2;
  font-weight: 500;
  padding: 11px 12px 11px 25px;
  transition: all .4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  letter-spacing: .16px;
  font-family: "Barlow", sans-serif
}

a.button-style-3:hover {
  border: 1px solid #0554f2;
  color: #0554f2
}

.button-style-3.btn-common path.rt-button-cap {
  stroke: #0554f2
}

.btn-common svg {
  fill: currentColor;
  vertical-align: middle;
  margin-left: 15px;
  width: 26px
}

.btn-common .rt-button-cap,
.btn-common .rt-button-line {
  transform: translateX(-13px);
  transform-origin: right;
  transition: .5s
}

.btn-common rect.rt-button-line {
  height: 1.5px
}

.btn-common .rt-button-line {
  stroke: currentColor;
  stroke-width: .5
}

.btn-common path.rt-button-cap {
  stroke-width: 1;
  stroke: #0554f2
}

.btn-common:hover .rt-button-line {
  animation: qode-button-line .4s ease forwards
}

.btn-common:hover .rt-button-cap {
  animation: qode-button-cap .4s ease forwards
}

.rt-animation-out .rt-button-cap-fake {
  animation: qode-button-cap-fake-out .35s linear
}

.rt-animation-out .rt-button-cap {
  animation: qode-button-cap-out .35s ease-in-out
}

.rt-button-line {
  transform: translateX(9px);
  stroke-width: .1;
  stroke: currentColor
}

.rt-button-cap,
.rt-button-line {
  transform-origin: right;
  transition: .33s cubic-bezier(.14, -.07, .23, .9)
}

@-webkit-keyframes qode-button-cap-out {

  0%,
  50% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1)
  }

  100%,
  51% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1)
  }
}

@keyframes qode-button-cap-out {

  0%,
  50% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1)
  }

  100%,
  51% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1)
  }
}

@-webkit-keyframes qode-button-cap-fake-out {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }

  49%,
  51% {
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0)
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }
}

@keyframes qode-button-cap-fake-out {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }

  49%,
  51% {
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0)
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }
}

@-webkit-keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }

  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0)
  }

  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0)
  }

  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }
}

@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }

  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0)
  }

  55% {
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0)
  }

  100% {
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
  }
}

@-webkit-keyframes qode-button-line {

  0%,
  100% {
    transform: translateX(-13px) scaleX(1)
  }

  10% {
    transform: translateX(-13px) scaleX(1)
  }

  46%,
  55% {
    transform: translateX(0) scaleX(.5)
  }

  99% {
    transform: translateX(-13px) scaleX(.6)
  }
}

@keyframes qode-button-line {

  0%,
  100% {
    transform: translateX(-13px) scaleX(1)
  }

  10% {
    transform: translateX(-13px) scaleX(1)
  }

  46%,
  55% {
    transform: translateX(0) scaleX(.5)
  }

  99% {
    transform: translateX(-13px) scaleX(.6)
  }
}

form.post-password-form label>input {
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 10px 8px
}

form.post-password-form input[type=submit] {
  border-radius: 4px;
  background: #0554f2;
  color: #fff;
  font-weight: 500;
  outline: none;
  transition: all .3s ease-out
}

form.post-password-form input[type=submit]:hover {
  background: #14133b;
  color: #fff
}

.single-post .rt-single-content .single-img {
  margin-bottom: 30px
}

.single-post .rt-single-content {
  word-wrap: normal
}

.content-area {
  padding-top: 120px;
  padding-bottom: 120px
}

#primary.content-area {
  background-repeat: no-repeat
}

.entry-header .post-title {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.3
}

.entry-header .entry-thumbnail-area {
  margin-bottom: 30px
}

.entry-header .entry-thumbnail-area img {
  border-radius: 10px
}

.entry-header .entry-meta ul {
  padding-left: 0;
  margin: 0 0 15px
}

.entry-header .entry-meta ul li {
  display: inline;
  margin-right: 15px;
  position: relative;
  font-size: 15px;
  color: #7a7a7a;
  margin-bottom: 0
}

.entry-header .entry-meta ul li:last-child {
  margin-right: 0
}

.entry-header .entry-meta ul li i {
  color: #0554f2;
  margin-right: 8px
}

.entry-header .entry-meta ul.response-area {
  margin-bottom: 30px
}

.entry-header .entry-meta ul li a {
  color: #7a7a7a
}

.entry-header .entry-meta ul li a:hover {
  color: #0554f2
}

.entry-header .entry-meta ul li img {
  border-radius: 50%;
  margin-right: 15px
}

.entry-header .share-links {
  padding-bottom: 20px
}

.share-links .fa {
  font-size: 15px
}

.entry-header .share-links .share-title {
  padding-right: 5px;
  display: inline-block;
  float: left;
  line-height: 40px;
  font-size: 12px;
  margin: 2px 0
}

.entry-header .share-links .share-title .fa {
  margin-right: 5px;
  font-size: 14px
}

.entry-header .share-links.icons-text .share-title {
  line-height: 30px
}

.entry-header .share-links a {
  display: inline-block;
  margin: 2px;
  height: 40px;
  overflow: hidden;
  color: #fff !important;
  background: #646464;
  position: relative;
  transition: .3s;
  border-radius: 4px;
  width: 42.7px
}

.entry-header .share-links a:hover {
  color: #fff !important
}

.entry-header .share-links a.large-share-button {
  width: auto
}

.entry-header .share-links a .fa {
  width: 40px;
  height: 40px;
  float: left;
  display: block;
  text-align: center;
  line-height: 40px
}

.entry-header .share-links a .social-text {
  border: 0 solid rgba(255, 255, 255, .3);
  border-left-width: 1px;
  padding-left: 15px;
  height: 20px;
  float: left;
  margin-top: 10px;
  padding-right: 25px;
  font-size: 12px;
  line-height: 20px;
  font-family: 'Playfair Display', serif
}

.entry-header .share-links a:hover {
  opacity: .8;
  color: #fff
}

.entry-header .share-links.icons-text .large-share-button {
  height: 30px
}

.entry-header .share-links.icons-text .large-share-button .social-text {
  padding-left: 6px;
  padding-right: 8px;
  height: 20px;
  margin-top: 5px;
  line-height: 20px;
  font-size: 10px
}

.entry-header .share-links.icons-text .large-share-button .fa {
  width: 30px;
  height: 30px;
  line-height: 30px
}

@media (max-width:767px) {
  .entry-header .share-links .social-text {
    display: none
  }
}

@media (max-width:479px) {
  .entry-header .share-links .share-title {
    display: none
  }
}

.entry-header .share-links a.facebook-share-button {
  background: #5d82d1
}

.entry-header .share-links a.twitter-share-button {
  background: #40bff5
}

.entry-header .share-links a.google-share-button {
  background: #eb5e4c
}

.entry-header .share-links a.linkedin-share-button {
  background: #238cc8
}

.entry-header .share-links a.pinterest-share-button {
  background: #e13138
}

.entry-header .share-links a.reddit-share-button {
  background: #ff4500
}

.entry-header .share-links a.stumbleupon-share-button {
  background: #eb4924
}

.entry-header .share-links a.tumblr-share-button {
  background: #35465c
}

.entry-header .share-links a.vk-share-button {
  background: #45668e
}

.entry-header .share-links a.odnoklassniki-share-button {
  background: #ee8208
}

.entry-header .share-links a.pocket-share-button {
  background: #ef4056
}

.entry-header .share-links a.whatsapp-share-button {
  background: #43d854
}

.entry-header .share-links a.telegram-share-button {
  background: #08c
}

.entry-header .share-links a.viber-share-button {
  background: #773ead
}

.entry-header .share-links a.viber-share-button .fa {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.entry-header .share-links a.email-share-button {
  background: #333
}

.rns-plugin {
  margin: 20px 0 20px
}

.rns-plugin .rns-header {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0554f2
}

.rns-plugin .rns-footer {
  display: none
}

.post-detail-style1 .entry-thumbnail-area {
  position: relative;
  margin-bottom: 40px
}

.post-detail-style1 .entry-thumbnail-area img {
  border-radius: 10px
}

.post-detail-style2 .entry-thumbnail-area {
  margin-bottom: 40px;
  text-align: center
}

.post-detail-style2 .entry-thumbnail-area img {
  width: 100%;
  border-radius: 10px
}

.post-detail-style2 .main-wrap {
  width: 70%;
  margin: 0 auto
}

.post-detail-style2 .entry-header {
  text-align: center
}

@media(max-width:767px) {
  .post-detail-style2 .main-wrap {
    width: 100%
  }
}

.post-footer-share .share-links a.large-share-button {
  width: 42.7px
}

.post-footer-share .share-links {
  padding-bottom: 0
}

.blog-post-slider .prev-article {
  transition: all .5s ease-out;
  display: block
}

.page .entry-content {
  padding-top: 0;
  border-top: none
}

.entry-footer .entry-footer-meta {
  overflow: hidden;
  margin-top: 30px;
  display: flex;
  justify-content: space-between
}

.entry-footer .share-links .social-text {
  display: none
}

@media(max-width:767px) {
  .entry-footer .entry-footer-meta {
    display: inherit
  }

  .entry-footer .item-tags {
    margin-bottom: 20px
  }
}

.entry-footer .item-tags ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0
}

.entry-footer .item-tags ul li {
  font-size: 17px;
  margin-right: 12px;
  margin-bottom: 1px;
  margin-top: 1px;
  display: inline-block
}

.entry-footer .item-tags span {
  font-size: 18px;
  font-weight: 700;
  color: #14133b;
  margin-bottom: 8px;
  line-height: 1.3;
  display: block
}

.entry-footer .item-tags a {
  color: #14133b;
  background: #f2f2f2;
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  margin-right: 7px;
  margin-bottom: 5px;
  padding: 10px 16px;
  transition: all .3s ease-out;
  font-family: "Barlow", sans-serif
}

.entry-footer .item-tags a:last-child {
  margin-right: 0
}

.entry-footer .item-tags a:hover {
  background: #0554f2;
  color: #fff
}

.entry-footer .post-share>span {
  font-size: 18px;
  font-weight: 700;
  color: #14133b;
  margin-bottom: 8px;
  line-height: 1.3;
  display: block
}

.entry-footer .post-share .share-links {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.entry-footer .post-share>ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.entry-footer .post-share>ul>li {
  position: relative;
  display: flex;
  align-items: center
}

.entry-footer .post-share>ul>li .tag-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  background: #f2f2f2;
  padding: 10px 16px;
  border-radius: 5px;
  color: #0554f2
}

.entry-footer .post-share>ul>li .tag-link:hover {
  background: #0554f2;
  color: #fff
}

.entry-footer .post-share>ul>li:hover .share-links {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
  margin-right: 20px
}

.entry-footer .post-share .share-links a {
  font-size: 15px;
  color: #646464;
  margin-right: 7px;
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  border-radius: 5px;
  display: inline-block;
  line-height: 36px;
  text-align: center
}

.entry-footer .post-share .share-links a:hover {
  color: #0554f2
}

.entry-footer .post-share .share-links a:last-child {
  margin-right: 0
}

.entry-footer .post-share .share-links a.facebook-f-share-button {
  color: #4064ac;
  background: #edf3ff
}

.entry-footer .post-share .share-links a.x-twitter-share-button {
  color: #1c9cea;
  background: #dff3ff
}

.entry-footer .post-share .share-links a.linkedin-in-share-button {
  color: #016196;
  background: #ecf8ff
}

.entry-footer .post-share .share-links a.pinterest-share-button {
  color: #df0022;
  background: #fff1f3
}

.entry-footer .post-share .share-links a.whatsapp-share-button {
  color: #57f16d;
  background: #f0fff2
}

@media(max-width:767px) {
  .entry-footer .post-share>ul>li:hover .share-links {
    margin-right: 0;
    margin-left: 20px
  }

  .entry-footer .post-share>ul>li {
    flex-direction: row-reverse;
    justify-content: flex-end
  }
}

.rt-drop {
  color: #0554f2;
  float: left;
  font-family: Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px
}

.about-author {
  background: #fff;
  padding: 28px 30px;
  margin-bottom: 50px;
  margin-top: 40px;
  border-radius: 5px;
  border: 1px solid #e1e1e2
}

.author-content .author-section-title {
  display: inline-block;
  position: relative;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  z-index: 2
}

.about-author .pull-left {
  float: left;
  padding-right: 30px
}

@media(max-width:480px) {
  .about-author {
    display: inherit;
    padding: 30px
  }

  .about-author .pull-left {
    width: 100px
  }
}

.about-author .pull-left img {
  border-radius: 50%
}

.about-author .media-body .author-title {
  font-size: 22px;
  margin-bottom: 7px;
  line-height: 1.4;
  text-transform: capitalize
}

.about-author .media-body .author-title a {
  color: #14133b
}

.about-author .media-body .author-designation {
  margin-bottom: 10px;
  font-size: 15px;
  color: #a5a5a5;
  line-height: 1.2
}

.about-author ul.author-box-social {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  text-align: left
}

.about-author ul.author-box-social li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px
}

.about-author ul.author-box-social li a {
  font-size: 15px;
  color: #646464;
  display: block;
  text-align: center;
  transition: all .3s ease-out
}

.about-author ul.author-box-social li a:hover {
  color: #0554f2
}

.about-author ul.author-box-social li:last-child {
  margin-right: 0
}

.post-navigation {
  margin-top: 50px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between
}

.post-navigation .text-left {
  padding-right: 15px
}

.post-navigation .text-left .pad-lr-15 {
  padding-right: 20px
}

.post-navigation .text-right {
  padding-left: 15px
}

.post-navigation .text-right .pad-lr-15 {
  padding-left: 20px
}

@media(max-width:425px) {
  .post-navigation .text-left .pad-lr-15 {
    padding-right: 0
  }

  .post-navigation .text-right .pad-lr-15 {
    padding-left: 0
  }
}

.post-navigation .prev-article,
.post-navigation .next-article {
  display: block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #14133b;
  font-family: "Barlow", sans-serif
}

.post-navigation a {
  color: #14133b
}

.post-navigation a:hover {
  color: #0554f2
}

.post-navigation .prev-article i {
  margin-left: 10px;
  display: inline-flex
}

.post-navigation .prev-article:hover {
  color: #0554f2
}

.post-navigation .next-article i {
  margin-right: 10px;
  display: inline-flex
}

.post-navigation .next-article:hover {
  color: #0554f2
}

.navigation-archive {
  font-size: 20px
}

.page-links {
  padding-top: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #14133b;
  margin-right: 10px;
  line-height: 1.3
}

.page-links .page-number {
  text-align: center;
  display: inline-block;
  font-size: 18px;
  color: #14133b;
  background: #e6eff4;
  border-radius: 6px;
  padding: 0;
  height: 45px;
  width: 50px;
  line-height: 45px;
  font-weight: 500
}

.page-links span.current .page-number,
.page-links a.post-page-numbers:hover .page-number {
  background-color: #0554f2;
  color: #fff
}

.page-links a .page-number {
  transition: all .3s ease-out
}

.rt-swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.single-post-slider {
  margin: 40px 0 40px
}

.rt-swiper-slider .swiper-slide img {
  border-radius: 10px
}

.rt-swiper-slider .rt-swiper-container .swiper-button>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-image: none;
  height: 60px;
  width: 60px;
  margin: 0 auto;
  outline: none;
  transform: translateY(-50%);
  color: #14133b;
  font-size: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: all .3s ease-out
}

.rt-swiper-slider .rt-swiper-container .swiper-button>div:hover {
  background: #0554f2;
  color: #fff
}

.rt-swiper-slider .rt-swiper-container .swiper-button-prev {
  left: 40px;
  background: 0 0;
  width: inherit;
  height: inherit
}

.rt-swiper-slider .rt-swiper-container .swiper-button-next {
  right: 40px;
  background: 0 0;
  width: inherit;
  height: inherit
}

@media(max-width:767px) {
  .rt-swiper-slider .rt-swiper-container .swiper-button>div {
    width: 50px;
    height: 50px
  }
}

.cat-holder {
  position: absolute;
  top: 20px;
  left: 20px
}

.cat-holder-text {
  position: relative;
  color: #fff;
  height: 26px;
  padding: 0 15px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  z-index: 2;
  background-color: #0554f2
}

.cat-holder:before {
  border-right: 8px solid transparent;
  border-top: 8px solid #0554f2
}

.cat-holder:before {
  z-index: 1;
  content: "";
  top: 0;
  right: -8px;
  position: absolute;
  width: 0;
  height: 0
}

.cat-holder:after {
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.rt-related-post .owl-custom-nav {
  float: right
}

@media(max-width:475px) {
  .rt-related-post .owl-custom-nav {
    margin-top: 0
  }
}

.rt-related-post .owl-custom-nav .owl-prev,
.rt-related-post .owl-custom-nav .owl-next {
  background-color: #e2e2e2;
  border-radius: 3px;
  color: #14133b;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  opacity: 1;
  text-align: center;
  transition: all .5s ease-in-out 0s
}

.rt-related-post .owl-custom-nav .owl-next {
  margin-left: 8px
}

.rt-related-post .owl-custom-nav .owl-prev:hover,
.rt-related-post .owl-custom-nav .owl-next:hover {
  background-color: #0554f2;
  color: #fff
}

.title-section {
  margin-bottom: 30px
}

.rt-related-post .title-section h3 {
  display: inline-block;
  position: relative;
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.4;
  z-index: 2
}

.rt-related-post .blog-box {
  box-shadow: none;
  margin-bottom: 0
}

.rt-related-post .blog-box .blog-img-holder {
  display: block;
  overflow: hidden
}

.rt-related-post .blog-box .entry-content {
  padding: 30px 30px 25px;
  background: #fff;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e1e1e2;
  box-shadow: none;
  transition: all ease .5s
}

.rtrs-review-wrap .rtrs-review-box {
  margin-top: 50px
}

.rtrs-review-box .rtrs-each-review {
  background: #f8faff;
  border-radius: 10px
}

.comment-respond {
  background: #f8faff;
  border-radius: 10px;
  margin-top: 30px
}

.comment-respond>h4 {
  display: block;
  position: relative;
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.4
}

.comments-area ul {
  list-style-type: none;
  padding: 0
}

.comments-area>ul.comment-list {
  background: #fff;
  margin-bottom: 30px
}

.comments-area h3.comment-num {
  color: #14133b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative
}

.comments-area h3.comment-num:after {
  background: #0554f2;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  margin: 5px 0 0;
  top: 0;
  width: 80px
}

.comments-area .comment-form {
  margin-top: 0
}

.comments-area .main-comments .imgholder {
  float: left
}

.comments-area .main-comments .imgholder img {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  margin-bottom: 0;
  max-width: 90px
}

.comments-area .main-comments .comment-meta {
  font-size: 15px
}

@media(max-width:767px) {
  .comments-area .main-comments .comment-meta {
    display: flow-root
  }
}

.comments-area .main-comments .comment-meta .comment-author-name {
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px
}

.comments-area .main-comments .comment-meta .comment-author-name a,
.comments-area .main-comments .comment-meta .comment-author-name span {
  color: #14133b;
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  display: block;
  text-transform: capitalize
}

.comments-area .main-comments .replay-area {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px
}

.comments-area .main-comments .replay-area a {
  background: #fff;
  color: #14133b;
  font-size: 14px;
  transition: all .3s ease-in-out;
  padding: 0;
  border-radius: 0;
  font-weight: 500
}

.comments-area .main-comments .replay-area a:hover {
  color: #0554f2
}

.main-comments .each-comment {
  margin-bottom: 60px
}

.comments-area .main-comments .comments-body {
  display: flow-root
}

@media(max-width:425px) {
  .comments-area .main-comments .imgholder {
    float: inherit
  }
}

.comments-area .main-comments .comment-text {
  font-size: 15px
}

.comments-area .main-comments .comments-body p {
  margin-bottom: 5px
}

.comments-area .main-comments .comment-respond {
  margin-top: 0;
  margin-bottom: 70px
}

.comments-area .reply-separator {
  margin-top: 40px;
  padding-top: 50px
}

.main-comments ul.children {
  margin-left: 50px;
  padding: 0
}

.comments-area .main-comments .comment-text li {
  border-top: none
}

@media(max-width:1200px) {
  .main-comments ul.children {
    margin-left: 30px
  }

  .comments-area .main-comments .imgholder img {
    max-width: 80px
  }
}

@media(max-width:767px) {
  .main-comments ul.children {
    margin-left: 10px
  }

  .comments-area .main-comments .imgholder img {
    max-width: 60px;
    margin-right: 10px
  }
}

.avatar-disabled .main-comments ul.children {
  margin-left: 50px;
  padding: 0
}

.no-comments {
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  padding-top: 20px
}

.comment-awaiting-moderation {
  font-size: 16px;
  font-style: italic;
  font-weight: 700
}

.comment-navigation ul {
  margin-top: 30px
}

.comment-navigation ul li {
  margin-right: 5px;
  margin-top: 0
}

.comment-navigation ul li a {
  display: inline;
  font-size: 12px;
  height: 49px;
  line-height: inherit;
  padding: 10px;
  width: inherit
}

.comment-list pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word
}

.comments-area {
  margin-top: 40px
}

.comments-area>h4 {
  display: block;
  position: relative;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.4
}

#respond .comment-notes {
  margin-bottom: 30px
}

#respond .logged-in-as {
  margin-bottom: 30px;
  font-size: 15px
}

#respond .logged-in-as a {
  color: #646464
}

#respond .form-group {
  margin-bottom: 25px
}

#respond .form-group.form-submit {
  margin-bottom: 0
}

#respond form .form-control {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  color: #14133b;
  font-size: 15px;
  font-weight: 400;
  margin-right: 20px;
  box-shadow: none
}

#respond form input.form-control {
  height: 50px
}

#respond form input:focus,
#respond form textarea:focus {
  box-shadow: none
}

#respond form .form-control {
  padding: 10px 20px
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #a9a9a9
}

#respond input.form-control::placeholder,
#respond input.form-control::-webkit-input-placeholder,
#respond input.form-control::-moz-placeholder,
#respond input.form-control:-moz-placeholder,
#respond input.form-control:-ms-input-placeholder {
  color: #a9a9a9
}

#respond textarea.form-control::placeholder,
#respond textarea.form-control::-webkit-input-placeholder,
#respond textarea.form-control::-moz-placeholder,
#respond textarea.form-control:-moz-placeholder,
#respond textarea.form-control:-ms-input-placeholder {
  color: #a9a9a9
}

#respond form .btn-send {
  position: relative;
  display: inline-block;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  background: #0554f2;
  color: #fff;
  padding: 15px 30px;
  text-transform: uppercase;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all .3s ease-in-out
}

#respond form .btn-send:hover {
  background: #14133b;
  color: #fff
}

#respond #cancel-comment-reply-link {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 5px
}

#respond form .comment-form-cookies-consent {
  position: relative;
  display: inline-flex
}

#respond form .comment-form-cookies-consent input {
  background: 0 0;
  border: none;
  margin-right: 10px;
  height: inherit;
  box-shadow: none;
  position: absolute;
  top: 5px
}

#respond form .comment-form-cookies-consent label {
  padding-left: 25px;
  line-height: 1.5
}

.comment-list>li:first-child {
  border-top: none
}

.comment-list .comment-text ul {
  padding: 0 15px;
  margin-bottom: 20px;
  list-style: disc
}

.comment-list .comment-text ul li {
  padding-top: 0
}

.comment-list .comment-text ul li .children li {
  padding-top: 0
}

.comment-list .comment-text ul ul {
  margin-bottom: 0
}

.comment-list .comment-text ol {
  margin-bottom: 20px
}

.comment-list .comment-text ol li {
  padding-top: 0
}

.comment-list .comment-text ol li .children li {
  padding-top: 0
}

.comment-list .comment-text ol ol {
  margin-bottom: 0
}

.item-comments {
  margin-top: 50px
}

.item-comments h2 {
  font-size: 24px
}

.item-comments .item-comments-list {
  margin-top: 50px
}

.item-comments .item-comments-list ul.comments-list {
  padding-top: 20px
}

.item-comments .item-comments-list ul.comments-list li {
  margin-bottom: 50px;
  overflow: hidden
}

.item-comments .item-comments-list ul.comments-list li .comment-image {
  float: left;
  padding-right: 20px
}

.item-comments .item-comments-list ul.comments-list li .comment-name {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px
}

.item-comments .item-comments-list ul.comments-list li .comment-date {
  color: #646464
}

.item-comments .item-comments-list ul.comments-list li .comment-reply {
  background: #0554f2;
  padding: 2px 10px 3px;
  float: right;
  font-size: 14px
}

.item-comments .item-comments-list ul.comments-list li .comment-reply a {
  color: #fff
}

.item-comments .item-comments-list ul.comments-list li .comment-reply:hover {
  background: #a51c2d
}

.item-comments .item-comments-list ul.comments-list li p {
  padding-top: 20px
}

.item-comments .item-comments-list ul.comments-list li:last-child {
  margin-bottom: 0
}

.item-comments .item-comments-list ul.comments-list li.odd {
  margin-left: 50px
}

.item-comments .item-comments-form {
  border-top: 1px solid #d7d7d7;
  margin-top: 50px;
  padding-top: 50px
}

.item-comments .item-comments-form .comments-form {
  padding-top: 20px
}

.item-comments .item-comments-form .comments-form .form-group {
  margin-bottom: 20px
}

.item-comments .item-comments-form .comments-form .form-group .form-control {
  background: #14133b;
  border: none;
  border-radius: 0;
  box-shadow: none
}

.item-comments .item-comments-form .comments-form .form-group input {
  height: 40px
}

.entry-title {
  font-size: 28px;
  margin: 0 0 6px;
  line-height: 1.4
}

.entry-title a {
  color: #fff
}

.entry-title a:hover {
  color: #0554f2
}

.custom-search-input>.input-group {
  display: flex
}

.author .about-author {
  background: #f8f8f8;
  border: none;
  margin-top: 0;
  box-shadow: 0 1px 0 0 rgba(211, 211, 211, .75)
}

.search .entry-header .entry-meta ul li span {
  padding-right: 5px
}

@media(max-width:991px) {

  .tax-techkit_service_category .content-area,
  .post-type-archive-techkit_service .content-area {
    padding-bottom: 90px
  }

  .tax-techkit_service_category.right-sidebar .sidebar-widget-area,
  .post-type-archive-techkit_service.right-sidebar .sidebar-widget-area {
    margin-top: 80px
  }
}

@media(max-width:767px) {

  .tax-techkit_service_category .content-area,
  .post-type-archive-techkit_service .content-area {
    padding-top: 80px;
    padding-bottom: 50px
  }

  .tax-techkit_service_category.right-sidebar .sidebar-widget-area,
  .post-type-archive-techkit_service.right-sidebar .sidebar-widget-area {
    margin-top: 60px
  }

  .tax-techkit_team_category .content-area,
  .post-type-archive-techkit_team .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }
}

@media(max-width:767px) {
  body.blog .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }

  body.single-post .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }
}

.rt-blog-layout {
  margin: 30px 0 0
}

.rt-blog-layout .entry-thumbnail-area ul {
  list-style: none;
  padding: 0
}

.rt-blog-layout .entry-thumbnail-area ul li {
  float: left;
  padding: 12px
}

.rt-blog-layout .entry-thumbnail-area ul li i {
  color: #0554f2
}

.rt-blog-layout .entry-thumbnail-area ul li a {
  text-decoration: none;
  text-align: center;
  color: #666;
  transition: all .3s ease-out 0s
}

.rt-blog-layout .entry-thumbnail-area ul li a:hover {
  color: #0554f2
}

.rt-blog-layout .entry-thumbnail-area ul li:last-child {
  float: right
}

.rt-blog-layout .entry-thumbnail-area ul .active {
  background: #0554f2;
  color: #fff
}

.rt-blog-layout .entry-thumbnail-area ul .rt-post-author {
  display: -webkit-box
}

.rt-blog-layout .entry-thumbnail-area ul .rt-post-author a {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  width: 10.5em;
  white-space: nowrap;
  display: block;
  float: initial;
  text-align: left;
  padding-left: 5px
}

.rt-blog-layout .entry-thumbnail-area ul.side_bar {
  padding: 0 15px 0 0
}

.rt-blog-layout .entry-content h3 {
  margin: 0 0 10px;
  line-height: inherit;
  font-size: 22px;
  font-weight: 700
}

.rt-blog-layout .entry-content h3 a {
  color: #14133b;
  display: block;
  padding: 17px 0 0;
  text-decoration: none;
  transition: all .3s ease-out 0s;
  line-height: 33px
}

.rt-blog-layout .entry-content h3 a:hover {
  color: #0554f2
}

.rt-blog-layout .entry-content p {
  font-size: 14px;
  color: #666
}

a.blog-button {
  background-color: transparent;
  border: 1px solid #0554f2;
  border-radius: 4px;
  padding: 10px 20px;
  color: #0554f2 !important;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: inline-block
}

a.blog-button i:before {
  font-size: 16px;
  margin-left: 12px;
  position: relative;
  top: 1px
}

a.blog-button:hover {
  background-color: #0554f2;
  color: #fff !important;
  border: 1px solid transparent
}

.entry-content .item-btn,
.rtin-content .item-btn {
  display: inline-block;
  color: #646464;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all .3s ease-in-out
}

.entry-content .item-btn:hover,
.rtin-content .item-btn:hover {
  color: #646464
}

.entry-content .item-btn i,
.rtin-content .item-btn i {
  color: #ccc;
  font-size: 12px;
  margin-left: 8px
}

.entry-content .item-btn:hover i,
.rtin-content .item-btn:hover i {
  animation: headShake .5s
}

.blog-box * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.blog-box {
  margin-bottom: 30px;
  transform: translateY(0);
  transition: all .4s ease;
  box-shadow: 0px 7px 70px 0px rgb(0 0 0/5%)
}

.blog-box:hover {
  transform: translateY(-10px)
}

.blog-box .entry-content h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px
}

.blog-box .entry-content h3 a {
  color: #14133b
}

.blog-box .entry-content h3 a:hover {
  color: #0554f2
}

.blog-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 20px;
  left: 25px;
  z-index: 2
}

.blog-box ul li {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  margin-right: 15px;
  position: relative
}

.blog-box ul li i {
  padding-right: 10px
}

.blog-box ul li:last-child {
  margin-right: 0
}

.blog-box ul li a {
  color: #fff
}

.blog-box ul.post-categories li {
  padding-bottom: 0
}

.blog-box.show_image .entry-content {
  z-index: 2;
  position: relative;
  border-radius: 0 0 15px 15px
}

.blog-box .entry-content {
  padding: 26px 30px 25px;
  background: #fff;
  border-radius: 10px;
  transition: all ease .5s
}

.blog-box.show_image .entry-content {
  border-radius: 0 0 10px 10px
}

.blog-box .entry-content .blog-cat a {
  font-size: 14px;
  letter-spacing: 1.4px;
  color: #0554f2;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .4s ease
}

.blog-box .entry-content .blog-cat a:hover {
  color: #14133b
}

.blog-box .blog-img-holder {
  position: relative;
  border-radius: 10px 10px 0 0;
  display: inline-block
}

.blog-box .blog-img-holder:before {
  position: absolute;
  content: "";
  height: 160px;
  width: 100%;
  bottom: -60px;
  left: 0;
  text-align: center;
  transition: all .4s ease;
  background-image: linear-gradient(transparent, #000), linear-gradient(transparent, #000)
}

.blog-box .blog-img-holder:after {
  position: absolute;
  content: "";
  height: 160px;
  width: 100%;
  bottom: -60px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all .4s ease;
  background-image: linear-gradient(transparent, #0554f2), linear-gradient(transparent, #0554f2)
}

.blog-box:hover .blog-img-holder:before {
  opacity: 0;
  visibility: hidden
}

.blog-box:hover .blog-img-holder:after {
  opacity: 1;
  visibility: visible
}

.blog-box .blog-img-holder img {
  border-radius: 10px 10px 0 0
}

.blog-layout-1 .blog-text p {
  margin-bottom: 15px
}

.blog-layout-2 .blog-box .entry-content h2 {
  font-size: 36px;
  line-height: 1.3
}

.blog-layout-2 .blog-box .entry-content h2 a {
  color: #14133b
}

.blog-layout-2 .blog-box .entry-content h2 a:hover {
  color: #0554f2
}

.blog-layout-2 .blog-box .entry-content {
  padding: 40px 50px
}

.blog-layout-2 .blog-box ul {
  left: 50px
}

@media(max-width:767px) {
  .blog-layout-2 .blog-box .entry-content {
    padding: 30px
  }

  .blog-layout-2 .blog-box ul {
    left: 30px
  }

  .blog-layout-2 .blog-box .entry-content h2 {
    font-size: 28px
  }
}

.rt-grid-item {
  display: block;
  float: left;
  clear: both
}

.left-sidebar .sidebar-widget-area {
  margin-right: 20px
}

.right-sidebar .sidebar-widget-area {
  margin-left: 20px
}

@media(max-width:991px) {
  .right-sidebar .sidebar-widget-area {
    margin-top: 80px;
    margin-left: 0;
    display: inherit
  }

  .left-sidebar .sidebar-widget-area {
    margin-bottom: 80px;
    margin-right: 0;
    display: inherit
  }
}

@media(max-width:767px) {
  .right-sidebar .sidebar-widget-area {
    margin-top: 60px;
    display: inherit
  }

  .left-sidebar .sidebar-widget-area {
    margin-bottom: 60px;
    display: inherit
  }
}

.sticky .blog-box .entry-content {
  background-color: #f5faff
}

.pagination-area ul {
  text-align: center;
  font-size: 0;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center
}

.pagination-area ul li {
  display: inline-flex;
  border: none;
  margin-right: 6px;
  position: relative
}

.pagination-area ul li:last-child {
  margin-right: 0
}

.pagination-area ul li a {
  text-align: center;
  display: inline-block;
  font-size: 18px;
  color: #14133b;
  background: #e6eff4;
  border-radius: 6px;
  padding: 0;
  height: 45px;
  width: 50px;
  line-height: 45px;
  font-weight: 500
}

.pagination-area ul li span {
  text-align: center;
  display: inline-block;
  font-size: 18px;
  color: #14133b;
  background: #e6eff4;
  border-radius: 6px;
  padding: 0;
  height: 45px;
  width: 50px;
  line-height: 45px;
  font-weight: 500
}

.pagination-area ul li a:hover {
  background-color: #0554f2;
  color: #fff
}

.pagination-area ul li span.current {
  background-color: #0554f2;
  color: #fff
}

.pagination-area ul li.active a {
  background-color: #0554f2;
  color: #fff
}

.site-content .pagination-area {
  clear: both;
  padding-top: 15px;
  width: 100%
}

.no-results h2.page-title {
  color: #14133b
}

@media(max-width:767px) {
  .pagination-area ul {
    margin-top: 0
  }

  .pagination-area ul li {
    margin-top: 8px;
    margin-right: 8px
  }

  .pagination-area ul li span,
  .pagination-area ul li a {
    height: 40px;
    width: 40px;
    line-height: 38px
  }
}

@media(max-width:767px) {
  body.error404 .content-area {
    padding-bottom: 80px;
    padding-top: 80px
  }

  body.error404 .site .content-area {
    background: 0 0 !important
  }
}

.error-page-area {
  position: relative;
  background-position: center
}

.error-page-content {
  position: relative;
  text-align: center;
  padding: 30px 0
}

.error-page-content .text-1 {
  font-size: 50px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px
}

.error-page-content .text-2 {
  font-size: 16px;
  margin: 8px auto 20px;
  color: #5b6674;
  line-height: 1.2
}

.error-page-area .error-page-content .go-home {
  margin-top: 30px
}

.error-page-area .item-img {
  margin-bottom: 60px;
  position: relative;
  display: inline-flex;
  justify-content: center
}

.error-page-area .item-img .left-img {
  position: relative;
  left: 85px;
  top: 100px;
  z-index: 1
}

.error-page-area .item-img .right-img {
  position: relative;
  right: 85px;
  bottom: 0
}

@media(max-width:991px) {
  .error-page-content .text-1 {
    font-size: 40px
  }
}

@media(max-width:767px) {
  .error-page-content .text-1 {
    font-size: 36px
  }
}

.fluentform .contact-form.ff-el-group,
.fluentform .contact-form .ff-el-group {
  margin-bottom: 10px
}

.fluentform .contact-form.ff_submit_btn_wrapper {
  margin-top: 32px
}

.fluentform .contact-form .ff-el-form-control {
  background-color: #fff;
  box-shadow: none;
  color: #14133b;
  border: 1px solid #ededed;
  border-radius: 4px;
  font-size: 15px;
  padding: 17px 20px
}

.fluentform .contact-form .ff-el-form-control:focus {
  border-color: #0554f2
}

.fluentform .contact-form .ff-btn {
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #fff;
  background: #0554f2;
  padding: 15px 30px;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 1px;
  overflow: hidden;
  width: 100%;
  transition: all .3s ease-in-out
}

.fluentform .contact-form .ff-btn:hover,
.fluentform .contact-form .ff-btn:focus {
  background: #14133b;
  opacity: 1
}

.fluentform .contact-form .ff-el-form-control::-webkit-input-placeholder {
  color: #7a7a7a
}

.fluentform .contact-form .ff-el-form-control:-ms-input-placeholder {
  color: #7a7a7a
}

.fluentform .contact-form .ff-el-form-control:-moz-placeholder {
  color: #7a7a7a
}

.fluentform .contact-form .text-danger {
  color: #0554f2 !important;
  font-size: 13px
}

.fluentform .contact-form .ff-el-is-error .ff-el-form-control,
.fluentform .contact-form.ff-el-is-error .ff-el-form-control {
  border-color: #0554f2
}

.fluentform .get-form.ff-el-group,
.fluentform .get-form .ff-el-group {
  margin-bottom: 15px
}

.fluentform .get-form.ff-el-group.ff_submit_btn_wrapper {
  margin-top: 25px;
  margin-bottom: 0
}

.fluentform .get-form .ff-el-form-control {
  background-color: transparent;
  box-shadow: none;
  color: #14133b;
  border: 1px solid #ededed;
  border-radius: 4px;
  font-size: 15px;
  padding: 17px 20px;
  height: inherit !important
}

.fluentform .get-form .ff-el-form-control:focus {
  border-color: #0554f2;
  background-color: transparent
}

.fluentform .get-form .ff-btn {
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #fff;
  background: #0554f2;
  padding: 15px 30px;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 1px;
  overflow: hidden;
  width: 100%;
  transition: all .3s ease-in-out
}

.fluentform .get-form .ff-btn:hover,
.fluentform .get-form .ff-btn:focus {
  background: #14133b;
  opacity: 1
}

.fluentform .get-form .ff-el-form-control::-webkit-input-placeholder {
  color: #14133b
}

.fluentform .get-form .ff-el-form-control:-ms-input-placeholder {
  color: #14133b
}

.fluentform .get-form .ff-el-form-control:-moz-placeholder {
  color: #14133b
}

.fluentform .get-form .text-danger {
  color: #0554f2 !important;
  font-size: 13px
}

.fluentform .get-form .ff-el-is-error .ff-el-form-control,
.fluentform .get-form.ff-el-is-error .ff-el-form-control {
  border-color: #0554f2
}

@media (min-width:768px) {
  .frm-fluent-form .ff-t-cell:first-of-type {
    padding-right: 10px
  }

  .frm-fluent-form .ff-t-cell:last-of-type {
    padding-left: 10px
  }
}

.fluentform .newsletter-form.ff-el-group,
.fluentform .newsletter-form .ff-el-group {
  margin-bottom: 15px;
  font-family: "Barlow", sans-serif
}

.fluentform .newsletter-form.ff-el-group.ff_submit_btn_wrapper {
  margin-bottom: 0
}

.fluentform .newsletter-form .ff-el-form-control {
  background-color: #fff;
  box-shadow: none;
  color: #14133b;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 15px;
  padding: 17px 20px;
  height: inherit !important;
  max-width: 330px
}

.fluentform .newsletter-form .ff-el-form-control:focus {
  border-color: #0554f2
}

.fluentform .newsletter-form .ff-el-form-check-label .ff-el-form-check-input {
  top: -1px;
  margin-right: 3px
}

.fluentform .newsletter-form .ff-btn {
  position: relative;
  display: inline-block;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  color: #fff;
  background: #0554f2;
  padding: 12px 30px;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all .3s ease-in-out
}

.fluentform .newsletter-form .ff-btn:hover,
.fluentform .newsletter-form .ff-btn:focus {
  background: #14133b;
  opacity: 1
}

.fluentform .newsletter-form .ff-el-form-control::-webkit-input-placeholder {
  color: #646464
}

.fluentform .newsletter-form .ff-el-form-control:-ms-input-placeholder {
  color: #646464
}

.fluentform .newsletter-form .ff-el-form-control:-moz-placeholder {
  color: #646464
}

.fluentform .newsletter-form .text-danger {
  color: #0554f2 !important;
  font-size: 13px
}

.fluentform .newsletter-form .ff-el-is-error .ff-el-form-control,
.fluentform .newsletter-form.ff-el-is-error .ff-el-form-control {
  border-color: #0554f2
}

@media only screen and (max-width:479px) {
  .entry-content .pricetable-btn {
    height: 40px;
    width: 130px;
    font-size: 14px;
    padding: 8px 0
  }
}

@media only screen and (max-width:991px) {
  .btn-send-message {
    padding: 11px 0
  }
}

@media only screen and (max-width:1199px) {
  .btn-send-message {
    padding: 9px 0
  }
}

@media (max-width:767px) {
  .comments-area .main-comments .replay-area {
    display: block;
    float: inherit;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0
  }

  .rt-blog-layout .entry-thumbnail-area ul li:last-child {
    display: block
  }
}

@media (max-width:426px) {
  .comments-area .main-comments .replay-area {
    margin-top: 15px
  }

  .rt-blog-layout .entry-thumbnail-area ul li:last-child {
    display: block
  }
}

@media (max-width:992px) {
  .rt-blog-layout .entry-thumbnail-area ul li:last-child {
    display: none
  }
}

@media (min-width:479px) and (max-width:991px) {
  .blog-box .blog-social {
    top: 8%
  }
}

.align-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw)
}

@media screen and (min-width:900px) {
  .align-wrap {
    width: auto;
    margin-left: calc(50%/.62 - 50vw)
  }
}

.align-wrap .alignfull {
  width: 100%;
  margin: 0 0 0 auto
}

@media(max-width:480px) {
  img.alignleft {
    float: none;
    margin-bottom: 13px;
    margin-right: 0;
    padding-top: 5px;
    display: block
  }

  img.alignright {
    float: none;
    margin-left: 0;
    margin-bottom: 15px;
    padding-top: 15px
  }
}

.has-sidebar .wp-block-cover.alignwide,
.has-sidebar .wp-block-cover.alignfull,
.has-sidebar .wp-block-image.alignfull,
.has-sidebar .wp-block-columns.alignfull,
.has-sidebar .wp-block-media-text.alignfull,
.has-sidebar .wp-block-gallery.alignfull,
.has-sidebar .wp-block-gallery.alignwide,
.has-sidebar .wp-block-columns.alignwide,
.has-sidebar .wp-block-image.alignwide,
.has-sidebar .wp-block-media-text.alignwide,
.has-sidebar .is-type-video.alignfull,
.has-sidebar .wp-block-embed-vimeo.alignwide.wp-block-embed,
.has-sidebar .alignwide.wp-block-embed {
  margin-left: 0;
  margin-right: 0
}

.has-strong-magenta-background-color {
  background-color: #a156b4
}

.has-strong-magenta-color {
  color: #a156b4
}

.has-light-grayish-magenta-background-color {
  background-color: #d0a5db
}

.has-light-grayish-magenta-color {
  color: #d0a5db
}

.has-very-light-gray-background-color {
  background-color: #eee
}

.has-very-light-gray-color {
  color: #eee
}

.has-very-dark-gray-background-color {
  background-color: #444
}

.has-very-dark-gray-color {
  color: #444
}

.has-small-font-size {
  font-size: 12px
}

.has-large-font-size {
  font-size: 36px;
  line-height: 1.2
}

.has-huge-font-size {
  font-size: 48px;
  line-height: 1.2
}

.has-regular-font-size {
  font-size: 16px
}

.wp-block-image.alignleft.is-resized {
  margin-left: 0;
  margin-right: 30px
}

.wp-block-image.alignright.is-resized {
  margin-left: 30px;
  margin-right: 0
}

.wp-block-separator {
  border: none;
  border-bottom: 2px solid #ccc;
  margin: 50px 0;
  text-align: left;
  background: 0 0
}

.wp-block-pullquote {
  border-top: 2px solid #0554f2;
  border-bottom: 2px solid #0554f2;
  margin-bottom: 20px;
  padding: 0;
  text-align: left
}

blockquote.wp-block-pullquote {
  background: #f9f9f9;
  border-radius: 6px;
  border-left: 1px solid #e1e1e2;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  padding: 28px 40px;
  margin: 35px 0 35px !important;
  color: #444
}

.wp-block-pullquote p {
  font-size: 22px
}

.wp-block-pullquote cite {
  font-weight: 500;
  font-size: 14px;
  color: #646464;
  padding-left: 80px;
  z-index: 1
}

.wp-block-pullquote blockquote,
.wp-block-pullquote p {
  color: #14133b
}

.wp-block-quote {
  border-left: 1px solid #e1e1e2;
  padding-left: 40px
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  border: 1px solid #e1e1e2;
  padding: 35px 40px
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite {
  text-align: left;
  font-size: 14px
}

.wp-block-quote.is-style-large cite em {
  font-style: normal
}

.wp-block-quote.has-text-align-right {
  border-left: 1px solid #e1e1e2;
  border-right: 1px solid #e1e1e2;
  text-align: right;
  padding: 35px 40px
}

.wp-block-quote.has-text-align-right cite {
  text-align: right
}

.wp-block-quote.has-text-align-left {
  text-align: left
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
  font-size: 26px;
  line-height: 1.3
}

.wp-block-quote.is-style-large cite br {
  display: none
}

:root .has-cyan-bluish-gray-background-color {
  background-color: transparent
}

.wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  background: #acb9c3;
  padding-top: 20px;
  padding-bottom: 25px
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  font-size: 32px
}

.has-techkit-primary-background-color.is-style-solid-color blockquote {
  background: #0554f2
}

.has-techkit-secondary-background-color.is-style-solid-color blockquote {
  background: #14133b
}

.has-techkit-button-dark-gray-background-color.is-style-solid-color blockquote {
  background: #14133b
}

.has-techkit-button-light-gray-background-color.is-style-solid-color blockquote {
  background: #a5a5a5
}

.has-techkit-button-white-background-color.is-style-solid-color blockquote {
  background: #fff
}

.wp-block {
  max-width: 720px
}

.wp-block[data-align=wide] {
  max-width: 1080px
}

.wp-block[data-align=full] {
  max-width: none
}

pre {
  background: #fff;
  color: #646464
}

code,
a code {
  color: #0554f2
}

pre code {
  font-size: 15px;
  color: #646464;
  word-break: normal;
  line-height: 30px
}

pre cite {
  font-weight: 400
}

kbd {
  color: #646464;
  padding: 3px 5px 2px;
  margin: 0 1px;
  background: #eaeaea;
  background: rgba(0, 0, 0, .07)
}

code,
kbd,
pre,
samp,
tt,
var {
  font-family: Menlo, Consolas, monaco, monospace
}

.wp-block-code {
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: 15px;
  color: #646464;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 5px
}

.wp-block-button {
  margin-bottom: 25px
}

.wp-block-button.aligncenter {
  text-align: center
}

.wp-block-button.is-style-outline a.wp-block-button__link:not([href]):not([tabindex]) {
  color: #0554f2
}

.wp-block-button.is-style-outline a.wp-block-button__link:not([href]):not([tabindex]):hover {
  color: #14133b
}

.wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-block;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  background: #0554f2;
  color: #fff;
  padding: 15px 30px;
  text-transform: uppercase;
  z-index: 1;
  line-height: 1.6;
  letter-spacing: 1px;
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.wp-block-button .wp-block-button__link:hover {
  background: #14133b;
  color: #fff
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: 0 0;
  border: 2px solid #0554f2;
  color: #0554f2
}

.wp-block-button.is-style-outline .wp-block-button__link:before {
  display: none
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: #14133b;
  color: #14133b
}

.wp-block-button .wp-block-button__link.no-border-radius,
.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button.is-style-squared .wp-block-button__link:before {
  border-radius: 0
}

.wp-block-button .wp-block-button__link.no-border-radius:before {
  border-radius: 0
}

.has-techkit-primary-color {
  color: #0554f2
}

.has-techkit-secondary-color {
  color: #14133b
}

.has-techkit-button-dark-gray-color {
  color: #333
}

.has-techkit-button-light-gray-color {
  color: #a5a5a5
}

.has-techkit-button-white-color {
  color: #fff
}

.has-techkit-primary-background-color {
  background-color: #0554f2
}

.has-techkit-secondary-background-color {
  background-color: #14133b
}

.has-techkit-button-dark-gray-background-color {
  background-color: #333
}

.has-techkit-button-light-gray-background-color {
  background-color: #a5a5a5
}

.has-techkit-button-white-background-color {
  background-color: #fff
}

.wp-block-button a.has-techkit-primary-color {
  color: #0554f2
}

.wp-block-button a.has-techkit-secondary-color {
  color: #14133b
}

.wp-block-button a.has-techkit-button-dark-gray-color {
  color: #333
}

.wp-block-button a.has-techkit-button-light-gray-color {
  color: #a5a5a5
}

.wp-block-button a.has-techkit-button-white-color {
  color: #fff
}

.wp-block-button .has-techkit-primary-background-color {
  background-color: #0554f2
}

.wp-block-button .has-techkit-secondary-background-color {
  background-color: #14133b
}

.wp-block-button .has-techkit-button-dark-gray-background-color {
  background-color: #333
}

.wp-block-button .has-techkit-button-light-gray-background-color {
  background-color: #a5a5a5
}

.wp-block-button .has-techkit-button-white-background-color {
  background-color: #fff
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid #dedede;
  padding: 5px
}

.wp-block-image .alignleft.is-resized {
  margin-top: 0
}

.wp-block-image {
  margin-top: 23px;
  margin-bottom: 23px
}

.wp-block-latest-posts.is-grid {
  margin-left: 20px
}

.wp-block-latest-posts.is-grid li {
  margin: 0 0 10px
}

.wp-block-columns.has-2-columns .wp-block-column {
  margin-bottom: 0
}

@media only screen and (min-width:600px) {
  .entry-content .wp-block-columns {
    flex-wrap: nowrap
  }
}

.wp-block-columns.alignwide .wp-block-column:last-child .wp-block-quote {
  margin-top: 0 !important;
  padding-left: 25px;
  padding-right: 25px
}

.wp-block-columns.alignwide .wp-block-column:last-child .wp-block-quote p {
  margin-left: 30px
}

.wp-block-columns.alignwide .wp-block-column:last-child .wp-block-quote p:before {
  font-size: 30px;
  left: -38px
}

.wp-block-columns.alignwide .wp-block-column:last-child .wp-block-quote cite {
  padding-left: 30px
}

.wp-block-image .alignleft {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 25px
}

.wp-block-image .alignright {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 25px
}

.wp-block-cover {
  margin-top: 20px;
  margin-bottom: 20px
}

.wp-block-cover a,
.wp-block-cover .wp-block-cover-text a,
.wp-block-cover .has-text-color a,
.wp-block-cover .has-text-align-center a {
  color: #fff
}

.wp-block-cover a:hover,
.wp-block-cover .wp-block-cover-text a:hover,
.wp-block-cover .has-text-color a:hover,
.wp-block-cover .has-text-align-center a:hover {
  text-decoration: underline
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright,
[data-align=left]>.wp-block-cover,
[data-align=right]>.wp-block-cover {
  max-width: 340px;
  width: 100%
}

.entry-content .wp-block-cover {
  background-color: #000;
  margin-top: 0;
  padding: 15px 50px
}

.wp-block-cover p:not(.has-text-color) {
  color: #fff
}

.wp-block-cover.alignleft {
  margin-top: 8px
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
section.wp-block-cover-image>h2 {
  font-size: 36px;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  max-width: 100%;
  padding: .44em;
  text-align: center
}

:root .has-pale-pink-background-color {
  background-color: #000
}

.wp-block-gallery {
  margin-top: 25px;
  margin-bottom: 50px
}

.wp-block-gallery.alignleft {
  display: flex;
  margin-top: 10px
}

.wp-block-gallery .blocks-gallery-item {
  border-radius: 5px;
  overflow: hidden
}

.wp-block-gallery .blocks-gallery-item img {
  border-radius: 5px
}

.wp-block-gallery.alignleft .blocks-gallery-item {
  display: inline-block
}

.wp-block-embed-vimeo.alignfull .wp-block-embed__wrapper {
  margin: 23px 0
}

.wp-block-coblocks-social .wp-block-button__link {
  border: none
}

.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  max-width: 420px;
  width: 100%
}

p:last-child img.size-full.alignright {
  clear: both;
  padding-top: 0
}

.wp-block-spacer {
  clear: both
}

.gallery .gallery-item {
  text-align: center
}

.site-content nav.comment-navigation {
  padding-top: 0
}

.site-content nav.comment-navigation ul {
  margin-top: 0;
  margin-bottom: 40px
}

.site-content nav.comment-navigation ul li {
  margin-right: 0
}

.site-content nav.comment-navigation ul li a {
  border-radius: 30px;
  height: inherit;
  width: inherit;
  padding: 12px 27px;
  line-height: 1.6
}

figure.wp-caption.alignnone {
  margin: 15px auto 15px
}

.wp-block-file .wp-block-file__button {
  background: #32373c;
  padding: 10px 20px
}

.has-media-on-the-right.is-stacked-on-mobile {
  margin-bottom: 20px
}

.blocks-gallery-item figcaption {
  line-height: 1.4
}

ul.wp-block-rss li.wp-block-rss__item .wp-block-rss__item-title {
  display: inline-block
}

.wp-block-group.has-background {
  margin-bottom: 20px
}

@media(max-width:475px) {
  .site-header .mobile-menu {
    display: none !important
  }
}

.mean-container.mobile-sticky .mobile-mene-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 7px 65px 0px rgb(0 0 0/5%);
  transition: background .2s ease, padding .8s linear
}

.mean-container .mean-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid rgba(181, 181, 181, .3);
  float: none;
  position: relative;
  padding: 10px 15px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all .3s linear
}

.mn-top .mean-container .mean-bar {
  position: fixed
}

.mean-container .mean-bar:after {
  content: "";
  clear: both;
  display: block
}

.mean-container .mean-bar img {
  max-width: 110px
}

.admin-bar.mean-container .mean-bar {
  top: 32px
}

@media only screen and (max-width:782px) {
  .admin-bar.mean-container .mean-bar {
    top: 46px
  }
}

@media only screen and (max-width:600px) {
  .admin-bar.mean-container.mn-top .mean-bar {
    top: 0
  }
}

.rt-slide-nav .offscreen-navigation .sub-menu {
  display: none
}

.rt-slide-nav .offscreen-navigation ul li {
  border-bottom: 1px solid #e9e9e9
}

.rt-slide-nav .offscreen-navigation ul li:last-child {
  border-bottom: none
}

.rt-slide-nav .offscreen-navigation nav>ul>li ul.sub-menu {
  border-top: 1px solid #e9e9e9
}

.rt-slide-nav .offscreen-navigation li>a {
  display: block;
  position: relative;
  color: #14133b;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  padding-bottom: 7px;
  padding-top: 7px;
  font-family: 'Barlow', sans-serif
}

.rt-slide-nav .offscreen-navigation ul>li>a {
  padding-left: 25px
}

.rt-slide-nav .offscreen-navigation ul ul>li>a {
  padding-left: 40px
}

.rt-slide-nav .offscreen-navigation ul ul ul>li>a {
  padding-left: 55px
}

.rt-slide-nav .offscreen-navigation .sub-menu li>a {
  font-size: 15px;
  padding-bottom: 10px
}

.rt-slide-nav .offscreen-navigation nav>ul>li.mega-menu>ul.sub-menu>li ul li a {
  padding: 10px 15px 10px 45px
}

.rt-slide-nav .offscreen-navigation li.current-menu-item>a,
.rt-slide-nav .offscreen-navigation li.current-menu-parent>a {
  color: #0554f2
}

.rt-slide-nav .offscreen-navigation li.menu-item-has-children>a:after {
  content: '\f067';
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  transition: .1s;
  right: 15px;
  font-weight: 700;
  position: absolute;
  font-size: 13px
}

.rt-slide-nav .offscreen-navigation li.menu-item-has-children>a.opened:after {
  content: '\f068'
}

.rt-slide-nav .offscreen-navigation ul li>a:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 0;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  margin: 0;
  background: #6c6c6c;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease
}

.rt-slide-nav .offscreen-navigation ul li>a:hover:before {
  background: #0554f2;
  height: 11px;
  opacity: 1;
  visibility: visible;
  transition: all .4s ease
}

.rt-slide-nav .offscreen-navigation ul ul li>a:before {
  left: 30px
}

.rt-slide-nav .offscreen-navigation ul ul ul li>a:before {
  left: 45px
}

.mean-bar .header-btn-new.mobile-btn {
  position: absolute;
  right: 12%;
  top: 8px
}

.mean-bar .sidebarBtn {
  position: absolute;
  font-size: 20px;
  right: 15px;
  cursor: pointer;
  color: #000
}

body .sidebarBtn {
  display: block;
  cursor: pointer;
  transition: all .3s ease-in-out
}

body .sidebarBtn .bar {
  background: #000;
  height: 2px;
  width: 25px;
  display: block;
  margin-bottom: 5px;
  transition: all .3s ease-in-out
}

body .sidebarBtn .bar:nth-child(2),
body .sidebarBtn .bar:nth-child(3) {
  width: 20px;
  margin-left: 5px
}

body .sidebarBtn .bar:last-child {
  margin-bottom: 0
}

body.slidemenuon .sidebarBtn .bar:nth-child(2),
body.slidemenuon .sidebarBtn .bar:nth-child(3) {
  opacity: 0
}

body.slidemenuon .sidebarBtn .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px)
}

body.slidemenuon .sidebarBtn .bar:nth-child(4) {
  transform: rotate(-45deg) translate(8px, -8px)
}

.rt-slide-nav {
  position: absolute;
  background: #fff;
  width: 100%;
  left: 0;
  z-index: 99;
  display: none;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  box-shadow: 0px 0px 10px 0px #0000001c
}

.rt-slide-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}

@media only screen and (min-width:992px) {
  #meanmenu {
    display: none
  }
}

@media only screen and (max-width:991px) {
  .header-area {
    display: none
  }
}

.rt-slide-nav nav,
.rt-slide-nav .menu-main-menu-container {
  display: block
}

.rt-slide-nav nav>ul>li.mega-menu,
.rt-slide-nav nav>ul>li ul.sub-menu li ul,
.rt-slide-nav nav>ul>li>ul.sub-menu {
  position: relative;
  width: 100%;
  transition: inherit;
  transform: inherit;
  background: 0 0;
  box-shadow: none;
  transform-origin: inherit;
  opacity: 1;
  visibility: visible;
  left: 0
}

.info-menu-bar {
  display: inline-flex;
  position: absolute;
  right: 73px
}

@media(max-width:425px) {
  .info-menu-bar {
    right: 55px
  }
}

.info-menu-bar a {
  color: #111;
  font-weight: 500
}

.info-menu-bar a:hover {
  color: #111
}

.info-menu-bar .header-search-box {
  width: 25px;
  margin-left: 14px
}

.header-style-4 .mobile-top-bar {
  display: none
}

.mobile-top-bar {
  border-bottom: 1px solid #e1e1e1
}

.mobile-top-bar .header-top {
  padding: 10px 15px 0;
  text-align: center
}

.mobile-top-bar .header-social {
  display: block;
  text-align: center;
  margin-bottom: 12px
}

.mobile-top-bar .header-top>div {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: none;
  line-height: 1
}

.mobile-top-bar .header-top .icon-left {
  float: left;
  margin-right: 15px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: #0554f2
}

.mobile-top-bar .header-top .info {
  float: left;
  line-height: 1.5;
  font-size: 16px;
  text-align: left;
  color: #14133b
}

.mobile-top-bar .header-top .info-label {
  display: block;
  color: #76767d;
  font-size: 13px
}

.mobile-top-bar .header-top .info-text {
  font-size: 15px;
  font-weight: 500;
  font-family: 'Barlow', sans-serif
}

.mobile-top-bar .header-top .info-text a {
  color: #14133b
}

.mobile-top-bar .header-top .info-text a:hover {
  color: #0554f2
}

.mobile-top-bar .header-right-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  column-gap: 15px
}

.mobile-top-bar .header-button .button-btn {
  margin-left: 20px;
  padding: 8px 18px
}

.mobile-top-bar .cart-icon-area {
  position: relative;
  margin-left: 15px;
  z-index: 999991
}

.mobile-top-bar .cart-icon-area .cart-icon-products {
  left: -170px
}

@media(max-width:575px) {
  .mobile-top-bar .cart-icon-area .cart-icon-products {
    left: -75px
  }
}

.mobile-top-bar .cart-icon-area .cart-icon-num {
  display: inline-block;
  font-size: 12px;
  position: relative;
  top: -8px;
  right: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  background: 0 0;
  line-height: 0;
  color: #14133b
}

.mobile-top-bar .cart-icon-area a,
.header-style-3.trheader .mobile-top-bar .header-right-wrap .search-icon a,
.header-style-5.trheader .mobile-top-bar .header-right-wrap .search-icon a {
  color: #14133b
}

.header-style-5.trheader .mobile-top-bar .header-right-wrap .search-icon a {
  width: inherit;
  height: inherit
}

.wow {
  visibility: hidden
}

@media (max-width:767px) {
  .wow {
    visibility: visible !important;
    animation: none !important
  }
}

.shop-page-top {
  width: 100%;
  margin-bottom: 40px;
  display: inline-block;
  border: 1px solid #e1e1e1;
  border-radius: 7px;
  padding: 20px 20px 0;
  color: #393738
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0
}

.woocommerce .rt-product-block {
  text-align: center
}

.woocommerce .rt-product-block ins {
  background-color: transparent
}

.woocommerce .rt-product-block .rtin-thumb-wrapper {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  padding: 40px 15px;
  background-color: #f8faff;
  transition: all .3s ease-in-out
}

.woocommerce .rt-product-block:hover .rtin-thumb-wrapper {
  box-shadow: 0px 7px 70px 0px rgb(0 0 0/9%)
}

.woocommerce .rt-product-block .rtin-thumb img {
  transform: scale(1);
  transition: transform .25s, filter 15s ease-in-out
}

.woocommerce .rt-product-block .rtin-buttons-area .btn-title .added_to_cart {
  margin-left: 4px
}

.woocommerce .rt-product-block .rtin-buttons-area .btn-icons {
  position: absolute;
  top: 0;
  right: 12px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .3s ease-in-out
}

.woocommerce .rt-product-block:hover .rtin-buttons-area .btn-icons {
  top: 50%;
  transform: translateY(-50%);
  visibility: visible;
  opacity: 1
}

.woocommerce .rt-product-block .rtin-buttons-area .btn-icons .tipsy {
  font-size: 14px
}

.woocommerce .rt-product-block .rtin-buttons-area .btn-icons .yith-wcqv-button,
.woocommerce .rt-product-block .rtin-buttons-area .btn-icons .rdtheme-wishlist-icon {
  display: inline-block;
  line-height: 1
}

.woocommerce .rt-product-block .rtin-buttons-area a {
  background-color: #0554f2;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  line-height: 1
}

.woocommerce .rt-product-block .rtin-buttons-area a:hover {
  background-color: #14133b;
  color: #fff
}

.woocommerce .rt-product-block:hover .rtin-thumb-wrapper .rtin-thumb img {
  transform: scale(1.05)
}

.woocommerce .rt-product-block .price-title-box {
  margin-top: 22px;
  text-align: left
}

.woocommerce .rt-product-block .price-title-box .rtin-title {
  margin-bottom: 5px
}

.woocommerce .rt-product-block .price-title-box .rtin-title a {
  color: #14133b
}

.woocommerce .rt-product-block .price-title-box .rtin-title a:hover {
  color: #0554f2
}

.woocommerce .rt-product-block .price-title-box .rtin-price {
  color: #0554f2;
  font-size: 18px;
  font-weight: 600
}

.woocommerce .rt-product-block .price-title-box .rtin-price del {
  color: #a6a6a6;
  font-size: 16px
}

.product-not-cart .add_to_cart_button.added {
  display: none
}

.product-in-cart .added_to_cart.wc-forward {
  display: block
}

.woocommerce ul.products li.product .onsale {
  top: 0;
  right: 0;
  left: auto;
  margin: 0;
  border-radius: 0;
  min-height: 15px;
  line-height: 30px;
  padding: 0 15px
}

.woocommerce ul.products li.product a img.ajax-loading {
  margin: 0;
  width: 15px;
  height: auto;
  display: none
}

a.rdtheme-wishlist-icon img.ajax-loading {
  display: none;
  width: 20px
}

.btn-addto-cart i {
  display: none
}

a.added_to_cart.wc-forward {
  padding: 0;
  margin-left: 10px;
  background: 0 0;
  color: #666
}

a.added_to_cart.wc-forward:hover {
  background: 0 0 !important;
  color: #0554f2
}

.roofix-products-page .pagination {
  margin-top: 20px
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: left;
  width: 100%
}

@media only screen and (max-width:376px) {

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%
  }
}

.btn-addto-cart a {
  background: #0554f2;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-top: 13px;
  padding: 12px 20px 14px;
  transition: all .4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  letter-spacing: .16px;
  font-family: "Barlow", sans-serif;
  line-height: 1
}

.btn-addto-cart a:hover {
  color: #fff;
  background-color: #14133b
}

.woocommerce .product-details-page {
  width: 100%;
  display: -ms-flexbox;
  display: flex
}

@media only screen and (max-width:991px) {
  .woocommerce .product-details-page {
    display: block
  }
}

.woocommerce div.product .rtin-left {
  width: 45%;
  float: left;
  padding-right: 50px
}

@media only screen and (max-width:991px) {
  .woocommerce div.product .rtin-left {
    width: 100%;
    padding-right: 0
  }
}

.woocommerce div.product .rtin-left span.onsale {
  display: none
}

.woocommerce div.product .rtin-right {
  overflow: hidden;
  padding-left: 15px;
  -ms-flex: 1;
  flex: 1
}

.woocommerce div.product .rtin-right .woocommerce-product-rating {
  margin-bottom: 15px
}

.woocommerce div.product .rtin-right .entry-title {
  margin-bottom: 7px
}

.woocommerce div.product .rtin-right span.price,
.woocommerce div.product .rtin-right p.price {
  color: #0554f2;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px
}

.woocommerce div.product .rtin-right span.price del,
.woocommerce div.product .rtin-right p.price del {
  opacity: 1;
  color: #a6a6a6;
  font-size: 16px
}

.woocommerce div.product .rtin-right form.cart {
  margin-top: 35px
}

.woocommerce div.product .rtin-right .quantity {
  margin-right: 10px
}

@media only screen and (max-width:480px) {
  .woocommerce div.product .rtin-right .quantity {
    margin-bottom: 5px !important
  }
}

.woocommerce div.product .rtin-right .quantity input.input-text {
  margin: 0 5px
}

.woocommerce div.product .rtin-right .quantity .quantity-btn {
  line-height: 1;
  cursor: pointer
}

.woocommerce div.product .rtin-right .button.alt {
  margin-left: 3px
}

@media only screen and (max-width:480px) {
  .woocommerce div.product .rtin-right .button.alt {
    margin-left: 0;
    margin-bottom: 5px
  }
}

.woocommerce div.product .rtin-right .variations_form {
  margin-bottom: 20px
}

.woocommerce div.product .rtin-right .variations_form .variations {
  width: 80%;
  margin-top: 0;
  margin-bottom: 5px
}

.woocommerce div.product .rtin-right .variations_form .variations tbody td {
  text-align: left
}

.woocommerce div.product .rtin-right .variations_form .variations tbody td.label {
  width: 80px
}

.woocommerce div.product .rtin-right .variations_form .variations tbody select {
  padding: 5px;
  padding-left: 15px
}

.woocommerce div.product .rtin-right .variations_form .variations tbody select {
  background-position: calc(81%) calc(20px), calc(88%) calc(20px), calc(68%) 8px
}

.woocommerce div.product .rtin-right .variations_form .variations tbody select:focus {
  background-position: calc(87%) 18px, calc(80%) 18px, calc(68%) 8px
}

.woocommerce div.product .rtin-right .variations_form .variations tbody select:-webkit-focusring,
.woocommerce div.product .rtin-right .variations_form .variations tbody select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000
}

.woocommerce div.product .rtin-right .variations_form .single_variation_wrap {
  width: 100%;
  margin-top: 10px;
  display: inline-block
}

.woocommerce div.product .rtin-right .variations_form .single_variation_wrap span.price {
  margin-bottom: 10px;
  display: inline-block
}

.woocommerce div.product .rtin-right .wistlist-compare-box {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 15px;
  font-size: 15px;
  font-weight: 500
}

.woocommerce div.product .rtin-right .wistlist-compare-box .tipsy {
  font-size: 13px
}

.woocommerce div.product .rtin-right .wistlist-compare-box a {
  color: #646464
}

.woocommerce div.product .rtin-right .wistlist-compare-box a:hover {
  color: #0554f2
}

.woocommerce div.product .rtin-right .post-share-btn {
  border-bottom: 1px solid #ebebeb;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 20px;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.woocommerce div.product .rtin-right .post-share-btn .item-label {
  width: 70px;
  float: left;
  padding-top: 5px;
  margin-bottom: 0;
  font-weight: 500
}

.woocommerce div.product .rtin-right .post-share-btn .post-social-sharing {
  overflow: hidden
}

.woocommerce div.product .rtin-right .post-share-btn .post-social-sharing ul.item-social {
  margin: 0;
  padding: 0;
  list-style: none
}

.woocommerce div.product .post-social-sharing ul.item-social li {
  float: left
}

.woocommerce div.product .post-social-sharing ul.item-social li a {
  background: 0 0;
  color: #646464;
  padding: 5px 10px;
  display: inline-block
}

.woocommerce div.product .post-social-sharing ul.item-social li a:hover {
  color: #0554f2
}

.woocommerce div.product .slick-slider .slick-slide {
  margin-left: 0
}

.woocommerce div.product .yith-wcwl-wishlistexistsbrowse,
.woocommerce div.product .yith-wcwl-add-button,
.woocommerce div.product a.compare.button {
  display: none
}

.woocommerce div.product a.compare.added {
  padding-left: 20px;
  position: relative !important
}

.woocommerce div.product a.compare.added:before {
  top: 0;
  left: 0;
  content: "\f00c";
  position: absolute;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900
}

.woocommerce div.product div.images .flex-viewport,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  background-color: #f8faff;
  text-align: center;
  border-radius: 10px
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: inherit;
  display: inline-block;
  padding: 50px 15px
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 10px
}

.woocommerce div.product div.images .flex-control-thumbs li {
  background-color: #f8faff;
  border: none;
  text-align: center;
  border-radius: 10px;
  margin-right: 9px;
  width: 23.5%
}

.woocommerce div.product div.images .flex-control-thumbs li:last-child {
  margin-right: 0
}

@media (max-width:1199px) {
  .woocommerce div.product div.images .flex-control-thumbs li {
    margin-right: 7px
  }
}

@media (max-width:991px) {
  .woocommerce div.product div.images .flex-control-thumbs li {
    margin-right: 13px
  }
}

@media (max-width:767px) {
  .woocommerce div.product div.images .flex-control-thumbs li {
    margin-right: 7px
  }
}

@media (max-width:425px) {
  .woocommerce div.product div.images .flex-control-thumbs li {
    margin-right: 6px
  }
}

@media (max-width:375px) {
  .woocommerce div.product div.images .flex-control-thumbs li {
    margin-right: 5px
  }
}

.quantity {
  margin: 0 auto;
  max-width: 160px;
  position: relative
}

.quantity input.input-text,
.quantity .input-group-btn {
  width: 44px;
  height: 48px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.quantity .input-group-btn {
  position: absolute
}

.quantity .input-group-btn span.quantity-btn i {
  font-size: 12px
}

.quantity .input-group-btn.minus {
  left: 0
}

.quantity .input-group-btn.plus {
  right: 0
}

.quantity input.input-text {
  height: 48px;
  font-weight: 600
}

.quantity input.input-text:focus {
  outline: none
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  display: none
}

.woocommerce .quantity .qty {
  width: 60px;
  text-align: center;
  margin-left: 50px !important;
  margin-right: 50px !important
}

section.related.products {
  margin-top: 50px
}

section.related.products h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px
}

section.related.products ul.products li.product {
  margin-bottom: 0
}

@media(max-width:768px) {
  section.related.products ul.products li.product {
    margin-bottom: 45px
  }
}

.woocommerce #respond input#submit.alt,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce button.button,
.woocommerce a.button.alt,
.woocommerce input.button,
.woocommerce a.button,
.cart-btn a.button {
  background: #0554f2;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 15px 20px 16px;
  transition: all .4s ease;
  display: inline-flex;
  align-items: center;
  letter-spacing: .16px;
  font-family: "Barlow", sans-serif;
  line-height: 1
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.cart-btn a.button:hover {
  color: #fff;
  background-color: #14133b
}

.woocommerce #respond input#submit.alt:focus,
.woocommerce #respond input#submit:focus,
.woocommerce button.button.alt:focus,
.woocommerce input.button.alt:focus,
.woocommerce button.button:focus,
.woocommerce a.button.alt:focus,
.woocommerce input.button:focus,
.woocommerce a.button:focus {
  outline: none;
  border-radius: 4px
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  color: #fff;
  opacity: 1;
  padding: 15px 20px 16px
}

.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover {
  color: #fff;
  background-color: #14133b
}

@media only screen and (max-width:575px) {

  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count {
    width: 100%;
    padding-top: 0;
    text-align: center
  }
}

@media only screen and (max-width:575px) {

  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    width: 100%;
    text-align: center
  }
}

.woocommerce .woocommerce-ordering select {
  padding: 0;
  border: none;
  background-color: transparent;
  width: initial
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  margin: 0;
  padding: 0;
  font-size: 20px
}

.woocommerce .star-rating span:before {
  color: #ffba0a
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 50px
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  text-align: left
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none !important
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background-color: transparent;
  margin: 0 25px 0 0;
  padding: 0
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
  display: none
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #111
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #0554f2
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 3px;
  width: 0;
  background-color: #0554f2;
  transition: all .24s ease-in-out
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #0554f2
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
  width: 100%
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin-bottom: 0
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  display: none
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0
}

.woocommerce #reviews #comments ol.commentlist li .comment_container {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 12px 25px
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  text-transform: capitalize
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
  font-size: 16px;
  color: #14133b
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 80px;
  border: none;
  margin-right: 25px;
  padding: 0;
  position: inherit
}

.woocommerce p.stars a {
  color: #ffba0a
}

.woocommerce #review_form #respond textarea {
  height: 150px;
  padding: 20px;
  border-color: #e4e1e3
}

.woocommerce #review_form #respond textarea:focus {
  outline: none
}

.woocommerce span.onsale {
  padding: 0;
  text-align: center;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  height: 48px;
  width: 110px !important;
  line-height: 40px
}

.cart-collaterals {
  margin-top: 50px
}

.cart-collaterals h2 {
  font-size: 30px
}

.woocommerce-cart table.woocommerce-cart-form__contents {
  border-top: 0;
  border-left: 0
}

.woocommerce-cart table.woocommerce-cart-form__contents tr th {
  color: #14133b;
  font-weight: 600
}

.woocommerce-cart table.woocommerce-cart-form__contents tr td,
.woocommerce-cart table.woocommerce-cart-form__contents tr th {
  border: 0;
  border-top: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb
}

.woocommerce-cart table.woocommerce-cart-form__contents .product-name a {
  color: #14133b;
  font-weight: 500
}

.woocommerce-cart table.woocommerce-cart-form__contents .product-name a:hover {
  color: #0554f2
}

.woocommerce-cart table.woocommerce-cart-form__contents .quantity .quantity-btn {
  line-height: 1;
  cursor: pointer
}

.woocommerce .woocommerce-checkout .select2-container--default .select2-selection--single {
  border: 1px solid #ebebeb
}

.woocommerce .woocommerce-checkout .form-row {
  padding: 4px;
  margin: 0 0 20px
}

.woocommerce .woocommerce-checkout .form-row label {
  color: #393738;
  font-weight: 500
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  font-size: 18px
}

p.return-to-shop {
  margin-bottom: 70px
}

.woocommerce-billing-fields span.woocommerce-input-wrapper {
  width: 100%;
  height: 40px
}

.woocommerce-billing-fields span.woocommerce-input-wrapper:focus {
  outline: none
}

.woocommerce-billing-fields span.woocommerce-input-wrapper input {
  height: 48px;
  padding: 10px 18px;
  border-radius: 4px
}

.woocommerce-billing-fields .select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-billing-fields .select2-container .select2-selection--single {
  height: 48px;
  border-radius: 4px;
  line-height: 48px;
  padding-left: 9px;
  padding-right: 9px
}

.woocommerce-billing-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 7px
}

.woocommerce-additional-fields span.woocommerce-input-wrapper {
  width: 100%
}

.woocommerce-additional-fields span.woocommerce-input-wrapper textarea {
  padding: 10px;
  border-radius: 4px
}

.wc-order-review-wrapper {
  margin-top: 50px
}

.woocommerce-order-received .section.content-area {
  padding-top: 110px;
  padding-bottom: 85px
}

.woocommerce-order-received .section.content-area .woocommerce-order h2 {
  font-size: 30px
}

.woocommerce .woocommerce-customer-details address {
  padding: 20px 30px
}

#yith-quick-view-content div.images {
  width: 100%
}

#yith-quick-view-modal.open .yith-wcqv-main {
  height: auto
}

.yith-wcqv-main {
  padding: 30px
}

.yith-wcqv-main h1.product_title.entry-title {
  font-size: 30px;
  margin-bottom: 7px
}

.yith-wcqv-main .rtin-right p.price {
  color: #0554f2;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px
}

.yith-wcqv-main .rtin-right .product_meta {
  margin-bottom: 20px
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #000
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  font-size: 16px
}

.woocommerce table.shop_table th {
  color: #14133b
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot th {
  color: #14133b;
  font-weight: 600
}

.woocommerce table.shop_table tbody td {
  font-weight: 500;
  padding: 12px 15px
}

.woocommerce .wishlist-title {
  margin-bottom: 30px
}

.woocommerce .hidden-title-form {
  display: none
}

.woocommerce .wishlist-title h2 {
  padding: 0;
  margin-right: 15px
}

.woocommerce .wishlist-title h2:hover {
  background-color: transparent
}

.wishlist-title a.show-title-form i {
  display: none
}

.yith-wcwl-share {
  display: none
}

.wishlist_table .product-add-to-cart a.button {
  padding: 0
}

.wishlist_table .product-add-to-cart a.button {
  padding: 10px 30px !important
}

.wishlist_table td a {
  font-size: 16px;
  margin-right: 10px;
  color: #444
}

.wishlist_table td a:hover {
  color: #0554f2
}

.wishlist_table td.product-name a.button.yith-wcqv-button {
  font-size: 14px
}

.wishlist_table td.product-price {
  font-size: 18px
}

.wishlist_table td.product-price del {
  color: #a6a6a6;
  font-size: 14px
}

.wishlist_table td.product-price ins {
  background-color: transparent
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: #000
}

.woocommerce-message:before,
.woocommerce-info:before {
  color: #000
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message #add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: #f8f8f8;
  border-radius: 5px
}

.rating-custom .woocommerce-product-rating:after,
.rating-custom .woocommerce-product-rating:before {
  content: ' ';
  display: table
}

.rating-custom .star-rating {
  margin-top: 5px;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 14px;
  width: 5.4em;
  font-family: star
}

.rating-custom .star-rating:before {
  content: '\73\73\73\73\73';
  color: #d3ced2;
  float: left;
  top: 0;
  left: 0;
  position: absolute
}

.rating-custom .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em
}

.rating-custom .star-rating span:before {
  content: '\53\53\53\53\53';
  top: 0;
  position: absolute;
  left: 0;
  color: #fcb302
}

.shop-layout-style1 .rating-custom .woocommerce-product-rating {
  display: inline-block
}

.rtrs-rating-item {
  margin-bottom: 6px
}

.rtrs-rating-item .rating-icon i {
  color: #ffc700;
  font-size: 16px
}

.rtrs-rating-item .rating-icon span {
  color: #14133b;
  font-size: 16px;
  font-weight: 500
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 6px
}

.woocommerce-MyAccount-navigation ul li a {
  color: #14133b;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600
}

.woocommerce-MyAccount-navigation ul li a:hover {
  color: #0554f2
}

.woocommerce .rating-custom .woocommerce-product-rating {
  line-height: 1
}

.woocommerce ul.products li.product .rating-custom .star-rating {
  display: inline-block
}

.woocommerce .loader:before {
  display: none
}

@media(max-width:767px) {
  .woocommerce-page .content-area {
    padding-top: 80px;
    padding-bottom: 80px
  }
}

iframe table.compare-list .add-to-cart td a.add_to_cart_button,
iframe table.compare-list .add-to-cart td a:not(.unstyled_button) {
  background: #0554f2;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 15px 20px 16px;
  transition: all .4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  letter-spacing: .16px;
  font-family: "Barlow", sans-serif
}

.rtsb-ui-modal .rtsb-modal-wrapper.quick-view-modal .rtsb-modal-content .rtsb-modal-body .summary .product_title {
  color: #14133b;
  font-size: 28px;
  font-weight: 600
}

.rtsb-ui-modal .rtsb-modal-wrapper.quick-view-modal .rtsb-modal-content .rtsb-modal-body .summary .price .woocommerce-Price-amount {
  color: #0554f2;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px
}

.rtsb-ui-modal .rtsb-modal-wrapper.quick-view-modal .rtsb-modal-content .rtsb-modal-body .summary .quantity .qty {
  width: 60px
}

.rtsb-ui-modal .rtsb-modal-wrapper.quick-view-modal .rtsb-modal-content .rtsb-modal-body .summary .single_add_to_cart_button {
  padding: 15px 20px 16px
}

/*! elementor-icons - v5.35.0 - 09-12-2024 */
@font-face {
  font-display: swap;
  font-family: eicons;
  src: url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.35.0);
  src: url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.35.0#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.35.0) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.35.0) format("woff"), url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.35.0) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.35.0#eicon) format("svg");
  font-weight: 400;
  font-style: normal
}

[class*=" eicon-"],
[class^=eicon] {
  display: inline-block;
  font-family: eicons;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@keyframes a {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(359deg)
  }
}

.eicon-animation-spin {
  animation: a 2s infinite linear
}

.eicon-editor-link:before {
  content: "\e800"
}

.eicon-editor-unlink:before {
  content: "\e801"
}

.eicon-editor-external-link:before {
  content: "\e802"
}

.eicon-editor-close:before {
  content: "\e803"
}

.eicon-editor-list-ol:before {
  content: "\e804"
}

.eicon-editor-list-ul:before {
  content: "\e805"
}

.eicon-editor-bold:before {
  content: "\e806"
}

.eicon-editor-italic:before {
  content: "\e807"
}

.eicon-editor-underline:before {
  content: "\e808"
}

.eicon-editor-paragraph:before {
  content: "\e809"
}

.eicon-editor-h1:before {
  content: "\e80a"
}

.eicon-editor-h2:before {
  content: "\e80b"
}

.eicon-editor-h3:before {
  content: "\e80c"
}

.eicon-editor-h4:before {
  content: "\e80d"
}

.eicon-editor-h5:before {
  content: "\e80e"
}

.eicon-editor-h6:before {
  content: "\e80f"
}

.eicon-editor-quote:before {
  content: "\e810"
}

.eicon-editor-code:before {
  content: "\e811"
}

.eicon-elementor:before {
  content: "\e812"
}

.eicon-elementor-circle:before {
  content: "\e813"
}

.eicon-pojome:before {
  content: "\e814"
}

.eicon-plus:before {
  content: "\e815"
}

.eicon-menu-bar:before {
  content: "\e816"
}

.eicon-apps:before {
  content: "\e817"
}

.eicon-accordion:before {
  content: "\e818"
}

.eicon-alert:before {
  content: "\e819"
}

.eicon-animation-text:before {
  content: "\e81a"
}

.eicon-animation:before {
  content: "\e81b"
}

.eicon-banner:before {
  content: "\e81c"
}

.eicon-blockquote:before {
  content: "\e81d"
}

.eicon-button:before {
  content: "\e81e"
}

.eicon-call-to-action:before {
  content: "\e81f"
}

.eicon-captcha:before {
  content: "\e820"
}

.eicon-carousel:before {
  content: "\e821"
}

.eicon-checkbox:before {
  content: "\e822"
}

.eicon-columns:before {
  content: "\e823"
}

.eicon-countdown:before {
  content: "\e824"
}

.eicon-counter:before {
  content: "\e825"
}

.eicon-date:before {
  content: "\e826"
}

.eicon-divider-shape:before {
  content: "\e827"
}

.eicon-divider:before {
  content: "\e828"
}

.eicon-download-button:before {
  content: "\e829"
}

.eicon-dual-button:before {
  content: "\e82a"
}

.eicon-email-field:before {
  content: "\e82b"
}

.eicon-facebook-comments:before {
  content: "\e82c"
}

.eicon-facebook-like-box:before {
  content: "\e82d"
}

.eicon-form-horizontal:before {
  content: "\e82e"
}

.eicon-form-vertical:before {
  content: "\e82f"
}

.eicon-gallery-grid:before {
  content: "\e830"
}

.eicon-gallery-group:before {
  content: "\e831"
}

.eicon-gallery-justified:before {
  content: "\e832"
}

.eicon-gallery-masonry:before {
  content: "\e833"
}

.eicon-icon-box:before {
  content: "\e834"
}

.eicon-image-before-after:before {
  content: "\e835"
}

.eicon-image-box:before {
  content: "\e836"
}

.eicon-image-hotspot:before {
  content: "\e837"
}

.eicon-image-rollover:before {
  content: "\e838"
}

.eicon-info-box:before {
  content: "\e839"
}

.eicon-inner-section:before {
  content: "\e83a"
}

.eicon-mailchimp:before {
  content: "\e83b"
}

.eicon-menu-card:before {
  content: "\e83c"
}

.eicon-navigation-horizontal:before {
  content: "\e83d"
}

.eicon-nav-menu:before {
  content: "\e83e"
}

.eicon-navigation-vertical:before {
  content: "\e83f"
}

.eicon-number-field:before {
  content: "\e840"
}

.eicon-parallax:before {
  content: "\e841"
}

.eicon-php7:before {
  content: "\e842"
}

.eicon-post-list:before {
  content: "\e843"
}

.eicon-post-slider:before {
  content: "\e844"
}

.eicon-post:before {
  content: "\e845"
}

.eicon-posts-carousel:before {
  content: "\e846"
}

.eicon-posts-grid:before {
  content: "\e847"
}

.eicon-posts-group:before {
  content: "\e848"
}

.eicon-posts-justified:before {
  content: "\e849"
}

.eicon-posts-masonry:before {
  content: "\e84a"
}

.eicon-posts-ticker:before {
  content: "\e84b"
}

.eicon-price-list:before {
  content: "\e84c"
}

.eicon-price-table:before {
  content: "\e84d"
}

.eicon-radio:before {
  content: "\e84e"
}

.eicon-rtl:before {
  content: "\e84f"
}

.eicon-scroll:before {
  content: "\e850"
}

.eicon-search:before {
  content: "\e851"
}

.eicon-select:before {
  content: "\e852"
}

.eicon-share:before {
  content: "\e853"
}

.eicon-sidebar:before {
  content: "\e854"
}

.eicon-skill-bar:before {
  content: "\e855"
}

.eicon-slider-3d:before {
  content: "\e856"
}

.eicon-slider-album:before {
  content: "\e857"
}

.eicon-slider-device:before {
  content: "\e858"
}

.eicon-slider-full-screen:before {
  content: "\e859"
}

.eicon-slider-push:before {
  content: "\e85a"
}

.eicon-slider-vertical:before {
  content: "\e85b"
}

.eicon-slider-video:before {
  content: "\e85c"
}

.eicon-slides:before {
  content: "\e85d"
}

.eicon-social-icons:before {
  content: "\e85e"
}

.eicon-spacer:before {
  content: "\e85f"
}

.eicon-table:before {
  content: "\e860"
}

.eicon-tabs:before {
  content: "\e861"
}

.eicon-tel-field:before {
  content: "\e862"
}

.eicon-text-area:before {
  content: "\e863"
}

.eicon-text-field:before {
  content: "\e864"
}

.eicon-thumbnails-down:before {
  content: "\e865"
}

.eicon-thumbnails-half:before {
  content: "\e866"
}

.eicon-thumbnails-right:before {
  content: "\e867"
}

.eicon-time-line:before {
  content: "\e868"
}

.eicon-toggle:before {
  content: "\e869"
}

.eicon-url:before {
  content: "\e86a"
}

.eicon-t-letter:before {
  content: "\e86b"
}

.eicon-wordpress:before {
  content: "\e86c"
}

.eicon-text:before {
  content: "\e86d"
}

.eicon-anchor:before {
  content: "\e86e"
}

.eicon-bullet-list:before {
  content: "\e86f"
}

.eicon-code:before {
  content: "\e870"
}

.eicon-favorite:before {
  content: "\e871"
}

.eicon-google-maps:before {
  content: "\e872"
}

.eicon-image:before {
  content: "\e873"
}

.eicon-photo-library:before {
  content: "\e874"
}

.eicon-woocommerce:before {
  content: "\e875"
}

.eicon-youtube:before {
  content: "\e876"
}

.eicon-flip-box:before {
  content: "\e877"
}

.eicon-settings:before {
  content: "\e878"
}

.eicon-headphones:before {
  content: "\e879"
}

.eicon-testimonial:before {
  content: "\e87a"
}

.eicon-counter-circle:before {
  content: "\e87b"
}

.eicon-person:before {
  content: "\e87c"
}

.eicon-chevron-right:before {
  content: "\e87d"
}

.eicon-chevron-left:before {
  content: "\e87e"
}

.eicon-close:before {
  content: "\e87f"
}

.eicon-file-download:before {
  content: "\e880"
}

.eicon-save:before {
  content: "\e881"
}

.eicon-zoom-in:before {
  content: "\e882"
}

.eicon-shortcode:before {
  content: "\e883"
}

.eicon-nerd:before {
  content: "\e884"
}

.eicon-device-desktop:before {
  content: "\e885"
}

.eicon-device-tablet:before {
  content: "\e886"
}

.eicon-device-mobile:before {
  content: "\e887"
}

.eicon-document-file:before {
  content: "\e888"
}

.eicon-folder-o:before {
  content: "\e889"
}

.eicon-hypster:before {
  content: "\e88a"
}

.eicon-h-align-left:before {
  content: "\e88b"
}

.eicon-h-align-right:before {
  content: "\e88c"
}

.eicon-h-align-center:before {
  content: "\e88d"
}

.eicon-h-align-stretch:before {
  content: "\e88e"
}

.eicon-v-align-top:before {
  content: "\e88f"
}

.eicon-v-align-bottom:before {
  content: "\e890"
}

.eicon-v-align-middle:before {
  content: "\e891"
}

.eicon-v-align-stretch:before {
  content: "\e892"
}

.eicon-pro-icon:before {
  content: "\e893"
}

.eicon-mail:before {
  content: "\e894"
}

.eicon-lock-user:before {
  content: "\e895"
}

.eicon-testimonial-carousel:before {
  content: "\e896"
}

.eicon-media-carousel:before {
  content: "\e897"
}

.eicon-section:before {
  content: "\e898"
}

.eicon-column:before {
  content: "\e899"
}

.eicon-edit:before {
  content: "\e89a"
}

.eicon-clone:before {
  content: "\e89b"
}

.eicon-trash:before {
  content: "\e89c"
}

.eicon-play:before {
  content: "\e89d"
}

.eicon-angle-right:before {
  content: "\e89e"
}

.eicon-angle-left:before {
  content: "\e89f"
}

.eicon-animated-headline:before {
  content: "\e8a0"
}

.eicon-menu-toggle:before {
  content: "\e8a1"
}

.eicon-fb-embed:before {
  content: "\e8a2"
}

.eicon-fb-feed:before {
  content: "\e8a3"
}

.eicon-twitter-embed:before {
  content: "\e8a4"
}

.eicon-twitter-feed:before {
  content: "\e8a5"
}

.eicon-sync:before {
  content: "\e8a6"
}

.eicon-import-export:before {
  content: "\e8a7"
}

.eicon-check-circle:before {
  content: "\e8a8"
}

.eicon-library-save:before {
  content: "\e8a9"
}

.eicon-library-download:before {
  content: "\e8aa"
}

.eicon-insert:before {
  content: "\e8ab"
}

.eicon-preview-medium:before {
  content: "\e8ac"
}

.eicon-sort-down:before {
  content: "\e8ad"
}

.eicon-sort-up:before {
  content: "\e8ae"
}

.eicon-heading:before {
  content: "\e8af"
}

.eicon-logo:before {
  content: "\e8b0"
}

.eicon-meta-data:before {
  content: "\e8b1"
}

.eicon-post-content:before {
  content: "\e8b2"
}

.eicon-post-excerpt:before {
  content: "\e8b3"
}

.eicon-post-navigation:before {
  content: "\e8b4"
}

.eicon-yoast:before {
  content: "\e8b5"
}

.eicon-nerd-chuckle:before {
  content: "\e8b6"
}

.eicon-nerd-wink:before {
  content: "\e8b7"
}

.eicon-comments:before {
  content: "\e8b8"
}

.eicon-download-circle-o:before {
  content: "\e8b9"
}

.eicon-library-upload:before {
  content: "\e8ba"
}

.eicon-save-o:before {
  content: "\e8bb"
}

.eicon-upload-circle-o:before {
  content: "\e8bc"
}

.eicon-ellipsis-h:before {
  content: "\e8bd"
}

.eicon-ellipsis-v:before {
  content: "\e8be"
}

.eicon-arrow-left:before {
  content: "\e8bf"
}

.eicon-arrow-right:before {
  content: "\e8c0"
}

.eicon-arrow-up:before {
  content: "\e8c1"
}

.eicon-arrow-down:before {
  content: "\e8c2"
}

.eicon-play-o:before {
  content: "\e8c3"
}

.eicon-archive-posts:before {
  content: "\e8c4"
}

.eicon-archive-title:before {
  content: "\e8c5"
}

.eicon-featured-image:before {
  content: "\e8c6"
}

.eicon-post-info:before {
  content: "\e8c7"
}

.eicon-post-title:before {
  content: "\e8c8"
}

.eicon-site-logo:before {
  content: "\e8c9"
}

.eicon-site-search:before {
  content: "\e8ca"
}

.eicon-site-title:before {
  content: "\e8cb"
}

.eicon-plus-square:before {
  content: "\e8cc"
}

.eicon-minus-square:before {
  content: "\e8cd"
}

.eicon-cloud-check:before {
  content: "\e8ce"
}

.eicon-drag-n-drop:before {
  content: "\e8cf"
}

.eicon-welcome:before {
  content: "\e8d0"
}

.eicon-handle:before {
  content: "\e8d1"
}

.eicon-cart:before {
  content: "\e8d2"
}

.eicon-product-add-to-cart:before {
  content: "\e8d3"
}

.eicon-product-breadcrumbs:before {
  content: "\e8d4"
}

.eicon-product-categories:before {
  content: "\e8d5"
}

.eicon-product-description:before {
  content: "\e8d6"
}

.eicon-product-images:before {
  content: "\e8d7"
}

.eicon-product-info:before {
  content: "\e8d8"
}

.eicon-product-meta:before {
  content: "\e8d9"
}

.eicon-product-pages:before {
  content: "\e8da"
}

.eicon-product-price:before {
  content: "\e8db"
}

.eicon-product-rating:before {
  content: "\e8dc"
}

.eicon-product-related:before {
  content: "\e8dd"
}

.eicon-product-stock:before {
  content: "\e8de"
}

.eicon-product-tabs:before {
  content: "\e8df"
}

.eicon-product-title:before {
  content: "\e8e0"
}

.eicon-product-upsell:before {
  content: "\e8e1"
}

.eicon-products:before {
  content: "\e8e2"
}

.eicon-bag-light:before {
  content: "\e8e3"
}

.eicon-bag-medium:before {
  content: "\e8e4"
}

.eicon-bag-solid:before {
  content: "\e8e5"
}

.eicon-basket-light:before {
  content: "\e8e6"
}

.eicon-basket-medium:before {
  content: "\e8e7"
}

.eicon-basket-solid:before {
  content: "\e8e8"
}

.eicon-cart-light:before {
  content: "\e8e9"
}

.eicon-cart-medium:before {
  content: "\e8ea"
}

.eicon-cart-solid:before {
  content: "\e8eb"
}

.eicon-exchange:before {
  content: "\e8ec"
}

.eicon-preview-thin:before {
  content: "\e8ed"
}

.eicon-device-laptop:before {
  content: "\e8ee"
}

.eicon-collapse:before {
  content: "\e8ef"
}

.eicon-expand:before {
  content: "\e8f0"
}

.eicon-navigator:before {
  content: "\e8f1"
}

.eicon-plug:before {
  content: "\e8f2"
}

.eicon-dashboard:before {
  content: "\e8f3"
}

.eicon-typography:before {
  content: "\e8f4"
}

.eicon-info-circle-o:before {
  content: "\e8f5"
}

.eicon-integration:before {
  content: "\e8f6"
}

.eicon-plus-circle-o:before {
  content: "\e8f7"
}

.eicon-rating:before {
  content: "\e8f8"
}

.eicon-review:before {
  content: "\e8f9"
}

.eicon-tools:before {
  content: "\e8fa"
}

.eicon-loading:before {
  content: "\e8fb"
}

.eicon-sitemap:before {
  content: "\e8fc"
}

.eicon-click:before {
  content: "\e8fd"
}

.eicon-clock:before {
  content: "\e8fe"
}

.eicon-library-open:before {
  content: "\e8ff"
}

.eicon-warning:before {
  content: "\e900"
}

.eicon-flow:before {
  content: "\e901"
}

.eicon-cursor-move:before {
  content: "\e902"
}

.eicon-arrow-circle-left:before {
  content: "\e903"
}

.eicon-flash:before {
  content: "\e904"
}

.eicon-redo:before {
  content: "\e905"
}

.eicon-ban:before {
  content: "\e906"
}

.eicon-barcode:before {
  content: "\e907"
}

.eicon-calendar:before {
  content: "\e908"
}

.eicon-caret-left:before {
  content: "\e909"
}

.eicon-caret-right:before {
  content: "\e90a"
}

.eicon-caret-up:before {
  content: "\e90b"
}

.eicon-chain-broken:before {
  content: "\e90c"
}

.eicon-check-circle-o:before {
  content: "\e90d"
}

.eicon-check:before {
  content: "\e90e"
}

.eicon-chevron-double-left:before {
  content: "\e90f"
}

.eicon-chevron-double-right:before {
  content: "\e910"
}

.eicon-undo:before {
  content: "\e911"
}

.eicon-filter:before {
  content: "\e912"
}

.eicon-circle-o:before {
  content: "\e913"
}

.eicon-circle:before {
  content: "\e914"
}

.eicon-clock-o:before {
  content: "\e915"
}

.eicon-cog:before {
  content: "\e916"
}

.eicon-cogs:before {
  content: "\e917"
}

.eicon-commenting-o:before {
  content: "\e918"
}

.eicon-copy:before {
  content: "\e919"
}

.eicon-database:before {
  content: "\e91a"
}

.eicon-dot-circle-o:before {
  content: "\e91b"
}

.eicon-envelope:before {
  content: "\e91c"
}

.eicon-external-link-square:before {
  content: "\e91d"
}

.eicon-eyedropper:before {
  content: "\e91e"
}

.eicon-folder:before {
  content: "\e91f"
}

.eicon-font:before {
  content: "\e920"
}

.eicon-adjust:before {
  content: "\e921"
}

.eicon-lightbox:before {
  content: "\e922"
}

.eicon-heart-o:before {
  content: "\e923"
}

.eicon-history:before {
  content: "\e924"
}

.eicon-image-bold:before {
  content: "\e925"
}

.eicon-info-circle:before {
  content: "\e926"
}

.eicon-link:before {
  content: "\e927"
}

.eicon-long-arrow-left:before {
  content: "\e928"
}

.eicon-long-arrow-right:before {
  content: "\e929"
}

.eicon-caret-down:before {
  content: "\e92a"
}

.eicon-paint-brush:before {
  content: "\e92b"
}

.eicon-pencil:before {
  content: "\e92c"
}

.eicon-plus-circle:before {
  content: "\e92d"
}

.eicon-zoom-in-bold:before {
  content: "\e92e"
}

.eicon-sort-amount-desc:before {
  content: "\e92f"
}

.eicon-sign-out:before {
  content: "\e930"
}

.eicon-spinner:before {
  content: "\e931"
}

.eicon-square:before {
  content: "\e932"
}

.eicon-star-o:before {
  content: "\e933"
}

.eicon-star:before {
  content: "\e934"
}

.eicon-text-align-justify:before {
  content: "\e935"
}

.eicon-text-align-center:before {
  content: "\e936"
}

.eicon-tags:before {
  content: "\e937"
}

.eicon-text-align-left:before {
  content: "\e938"
}

.eicon-text-align-right:before {
  content: "\e939"
}

.eicon-close-circle:before {
  content: "\e93a"
}

.eicon-trash-o:before {
  content: "\e93b"
}

.eicon-font-awesome:before {
  content: "\e93c"
}

.eicon-user-circle-o:before {
  content: "\e93d"
}

.eicon-video-camera:before {
  content: "\e93e"
}

.eicon-heart:before {
  content: "\e93f"
}

.eicon-wrench:before {
  content: "\e940"
}

.eicon-help:before {
  content: "\e941"
}

.eicon-help-o:before {
  content: "\e942"
}

.eicon-zoom-out-bold:before {
  content: "\e943"
}

.eicon-plus-square-o:before {
  content: "\e944"
}

.eicon-minus-square-o:before {
  content: "\e945"
}

.eicon-minus-circle:before {
  content: "\e946"
}

.eicon-minus-circle-o:before {
  content: "\e947"
}

.eicon-code-bold:before {
  content: "\e948"
}

.eicon-cloud-upload:before {
  content: "\e949"
}

.eicon-search-bold:before {
  content: "\e94a"
}

.eicon-map-pin:before {
  content: "\e94b"
}

.eicon-meetup:before {
  content: "\e94c"
}

.eicon-slideshow:before {
  content: "\e94d"
}

.eicon-t-letter-bold:before {
  content: "\e94e"
}

.eicon-preferences:before {
  content: "\e94f"
}

.eicon-table-of-contents:before {
  content: "\e950"
}

.eicon-tv:before {
  content: "\e951"
}

.eicon-upload:before {
  content: "\e952"
}

.eicon-instagram-comments:before {
  content: "\e953"
}

.eicon-instagram-nested-gallery:before {
  content: "\e954"
}

.eicon-instagram-post:before {
  content: "\e955"
}

.eicon-instagram-video:before {
  content: "\e956"
}

.eicon-instagram-gallery:before {
  content: "\e957"
}

.eicon-instagram-likes:before {
  content: "\e958"
}

.eicon-facebook:before {
  content: "\e959"
}

.eicon-twitter:before {
  content: "\e95a"
}

.eicon-pinterest:before {
  content: "\e95b"
}

.eicon-frame-expand:before {
  content: "\e95c"
}

.eicon-frame-minimize:before {
  content: "\e95d"
}

.eicon-archive:before {
  content: "\e95e"
}

.eicon-colors-typography:before {
  content: "\e95f"
}

.eicon-custom:before {
  content: "\e960"
}

.eicon-footer:before {
  content: "\e961"
}

.eicon-header:before {
  content: "\e962"
}

.eicon-layout-settings:before {
  content: "\e963"
}

.eicon-lightbox-expand:before {
  content: "\e964"
}

.eicon-error-404:before {
  content: "\e965"
}

.eicon-theme-style:before {
  content: "\e966"
}

.eicon-search-results:before {
  content: "\e967"
}

.eicon-single-post:before {
  content: "\e968"
}

.eicon-site-identity:before {
  content: "\e969"
}

.eicon-theme-builder:before {
  content: "\e96a"
}

.eicon-download-bold:before {
  content: "\e96b"
}

.eicon-share-arrow:before {
  content: "\e96c"
}

.eicon-global-settings:before {
  content: "\e96d"
}

.eicon-user-preferences:before {
  content: "\e96e"
}

.eicon-lock:before {
  content: "\e96f"
}

.eicon-export-kit:before {
  content: "\e970"
}

.eicon-import-kit:before {
  content: "\e971"
}

.eicon-lottie:before {
  content: "\e972"
}

.eicon-products-archive:before {
  content: "\e973"
}

.eicon-single-product:before {
  content: "\e974"
}

.eicon-disable-trash-o:before {
  content: "\e975"
}

.eicon-single-page:before {
  content: "\e976"
}

.eicon-wordpress-light:before {
  content: "\e977"
}

.eicon-cogs-check:before {
  content: "\e978"
}

.eicon-custom-css:before {
  content: "\e979"
}

.eicon-global-colors:before {
  content: "\e97a"
}

.eicon-globe:before {
  content: "\e97b"
}

.eicon-typography-1:before {
  content: "\e97c"
}

.eicon-background:before {
  content: "\e97d"
}

.eicon-device-responsive:before {
  content: "\e97e"
}

.eicon-device-wide:before {
  content: "\e97f"
}

.eicon-code-highlight:before {
  content: "\e980"
}

.eicon-video-playlist:before {
  content: "\e981"
}

.eicon-download-kit:before {
  content: "\e982"
}

.eicon-kit-details:before {
  content: "\e983"
}

.eicon-kit-parts:before {
  content: "\e984"
}

.eicon-kit-upload:before {
  content: "\e985"
}

.eicon-kit-plugins:before {
  content: "\e986"
}

.eicon-kit-upload-alt:before {
  content: "\e987"
}

.eicon-hotspot:before {
  content: "\e988"
}

.eicon-paypal-button:before {
  content: "\e989"
}

.eicon-shape:before {
  content: "\e98a"
}

.eicon-wordart:before {
  content: "\e98b"
}

.eicon-checkout:before {
  content: "\e98c"
}

.eicon-container:before {
  content: "\e98d"
}

.eicon-flip:before {
  content: "\e98e"
}

.eicon-info:before {
  content: "\e98f"
}

.eicon-my-account:before {
  content: "\e990"
}

.eicon-purchase-summary:before {
  content: "\e991"
}

.eicon-page-transition:before {
  content: "\e992"
}

.eicon-spotify:before {
  content: "\e993"
}

.eicon-stripe-button:before {
  content: "\e994"
}

.eicon-woo-settings:before {
  content: "\e995"
}

.eicon-woo-cart:before {
  content: "\e996"
}

.eicon-grow:before {
  content: "\e997"
}

.eicon-order-end:before {
  content: "\e998"
}

.eicon-nowrap:before {
  content: "\e999"
}

.eicon-order-start:before {
  content: "\e99a"
}

.eicon-progress-tracker:before {
  content: "\e99b"
}

.eicon-shrink:before {
  content: "\e99c"
}

.eicon-wrap:before {
  content: "\e99d"
}

.eicon-align-center-h:before {
  content: "\e99e"
}

.eicon-align-center-v:before {
  content: "\e99f"
}

.eicon-align-end-h:before {
  content: "\e9a0"
}

.eicon-align-end-v:before {
  content: "\e9a1"
}

.eicon-align-start-h:before {
  content: "\e9a2"
}

.eicon-align-start-v:before {
  content: "\e9a3"
}

.eicon-align-stretch-h:before {
  content: "\e9a4"
}

.eicon-align-stretch-v:before {
  content: "\e9a5"
}

.eicon-justify-center-h:before {
  content: "\e9a6"
}

.eicon-justify-center-v:before {
  content: "\e9a7"
}

.eicon-justify-end-h:before {
  content: "\e9a8"
}

.eicon-justify-end-v:before {
  content: "\e9a9"
}

.eicon-justify-space-around-h:before {
  content: "\e9aa"
}

.eicon-justify-space-around-v:before {
  content: "\e9ab"
}

.eicon-justify-space-between-h:before {
  content: "\e9ac"
}

.eicon-justify-space-between-v:before {
  content: "\e9ad"
}

.eicon-justify-space-evenly-h:before {
  content: "\e9ae"
}

.eicon-justify-space-evenly-v:before {
  content: "\e9af"
}

.eicon-justify-start-h:before {
  content: "\e9b0"
}

.eicon-justify-start-v:before {
  content: "\e9b1"
}

.eicon-woocommerce-cross-sells:before {
  content: "\e9b2"
}

.eicon-woocommerce-notices:before {
  content: "\e9b3"
}

.eicon-inner-container:before {
  content: "\e9b4"
}

.eicon-warning-full:before {
  content: "\e9b5"
}

.eicon-exit:before {
  content: "\e9b6"
}

.eicon-loop-builder:before {
  content: "\e9b7"
}

.eicon-notes:before {
  content: "\e9b8"
}

.eicon-read:before {
  content: "\e9b9"
}

.eicon-unread:before {
  content: "\e9ba"
}

.eicon-carousel-loop:before {
  content: "\e9bb"
}

.eicon-mega-menu:before {
  content: "\eb78"
}

.eicon-nested-carousel:before {
  content: "\e9bd"
}

.eicon-ai:before {
  content: "\e9be"
}

.eicon-taxonomy-filter:before {
  content: "\eb7d"
}

.eicon-container-grid:before {
  content: "\ef02"
}

.eicon-upgrade:before {
  content: "\e9c1"
}

.eicon-advanced:before {
  content: "\eb84"
}

.eicon-div-block:before {
  content: "\eb9b"
}

.eicon-notification:before {
  content: "\e9c3"
}

.eicon-light-mode:before {
  content: "\e9c4"
}

.eicon-dark-mode:before {
  content: "\e9c5"
}

.eicon-upgrade-crown:before {
  content: "\e9c6"
}

.eicon-off-canvas:before {
  content: "\e9c7"
}

.eicon-speakerphone:before {
  content: "\e9c9"
}

.eicon-ehp-cta:before {
  content: "\e9cb"
}

.eicon-ehp-forms:before {
  content: "\e9bc"
}

.eicon-ehp-hero:before {
  content: "\e9ca"
}

.eicon-ehp-zigzag:before {
  content: "\e9cc"
}

.eicon-eye:before {
  content: "\e8ac"
}

.eicon-elementor-square:before {
  content: "\e813"
}

/*! elementor - v3.27.0 - 03-02-2025 */
.elementor-hidden {
  display: none
}

.elementor-visibility-hidden {
  visibility: hidden
}

.elementor-screen-only,
.screen-reader-text,
.screen-reader-text span,
.ui-helper-hidden-accessible {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: -10000em;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.elementor-clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  width: 0
}

.e-logo-wrapper {
  background: var(--e-a-bg-logo);
  border-radius: 50%;
  display: inline-block;
  line-height: 1;
  padding: .75em
}

.e-logo-wrapper i {
  color: var(--e-a-color-logo);
  font-size: 1em
}

.elementor *,
.elementor :after,
.elementor :before {
  box-sizing: border-box
}

.elementor a {
  box-shadow: none;
  text-decoration: none
}

.elementor hr {
  background-color: transparent;
  margin: 0
}

.elementor img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%
}

.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure {
  margin: 0
}

.elementor embed,
.elementor iframe,
.elementor object,
.elementor video {
  border: none;
  line-height: 1;
  margin: 0;
  max-width: 100%;
  width: 100%
}

.elementor .elementor-background,
.elementor .elementor-background-holder,
.elementor .elementor-background-video-container {
  direction: ltr;
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0
}

.elementor .elementor-background-video-container {
  pointer-events: none;
  transition: opacity 1s
}

.elementor .elementor-background-video-container.elementor-loading {
  opacity: 0
}

.elementor .elementor-background-video-embed {
  max-width: none
}

.elementor .elementor-background-video,
.elementor .elementor-background-video-embed,
.elementor .elementor-background-video-hosted {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%)
}

.elementor .elementor-background-video {
  max-width: none
}

.elementor .elementor-background-video-hosted {
  -o-object-fit: cover;
  object-fit: cover
}

.elementor .elementor-background-overlay {
  inset: 0;
  position: absolute
}

.elementor .elementor-background-slideshow {
  inset: 0;
  position: absolute;
  z-index: 0
}

.elementor .elementor-background-slideshow__slide__image {
  background-position: 50%;
  background-size: cover;
  height: 100%;
  width: 100%
}

.e-con-inner>.elementor-element.elementor-absolute,
.e-con>.elementor-element.elementor-absolute,
.elementor-widget-wrap>.elementor-element.elementor-absolute {
  position: absolute
}

.e-con-inner>.elementor-element.elementor-fixed,
.e-con>.elementor-element.elementor-fixed,
.elementor-widget-wrap>.elementor-element.elementor-fixed {
  position: fixed
}

.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,
.elementor-widget-wrap .elementor-element.elementor-widget__width-initial {
  max-width: 100%
}

@media (max-width:1024px) {

  .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,
  .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial {
    max-width: 100%
  }
}

@media (max-width:767px) {

  .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,
  .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial {
    max-width: 100%
  }
}

.elementor-element {
  --flex-direction: initial;
  --flex-wrap: initial;
  --justify-content: initial;
  --align-items: initial;
  --align-content: initial;
  --gap: initial;
  --flex-basis: initial;
  --flex-grow: initial;
  --flex-shrink: initial;
  --order: initial;
  --align-self: initial;
  align-self: var(--align-self);
  flex-basis: var(--flex-basis);
  flex-grow: var(--flex-grow);
  flex-shrink: var(--flex-shrink);
  order: var(--order)
}

.elementor-element.elementor-absolute,
.elementor-element.elementor-fixed {
  z-index: 1
}

.elementor-element:where(.e-con-full, .elementor-widget) {
  align-content: var(--align-content);
  align-items: var(--align-items);
  flex-direction: var(--flex-direction);
  flex-wrap: var(--flex-wrap);
  gap: var(--row-gap) var(--column-gap);
  justify-content: var(--justify-content)
}

.elementor-invisible {
  visibility: hidden
}

.elementor-align-center {
  text-align: center
}

.elementor-align-right {
  text-align: right
}

.elementor-align-left {
  text-align: left
}

.elementor-align-center .elementor-button,
.elementor-align-left .elementor-button,
.elementor-align-right .elementor-button {
  width: auto
}

.elementor-align-justify .elementor-button {
  width: 100%
}

.elementor-custom-embed-play {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%)
}

.elementor-custom-embed-play i {
  color: #fff;
  font-size: 100px;
  text-shadow: 1px 0 6px rgba(0, 0, 0, .3)
}

.elementor-custom-embed-play svg {
  height: 100px;
  width: 100px;
  fill: #fff;
  filter: drop-shadow(1px 0 6px rgba(0, 0, 0, .3))
}

.elementor-custom-embed-play i,
.elementor-custom-embed-play svg {
  opacity: .8;
  transition: all .5s
}

.elementor-custom-embed-play.elementor-playing i {
  font-family: eicons
}

.elementor-custom-embed-play.elementor-playing i:before {
  content: "\e8fb"
}

.elementor-custom-embed-play.elementor-playing i,
.elementor-custom-embed-play.elementor-playing svg {
  animation: eicon-spin 2s linear infinite
}

.elementor-tag {
  display: inline-flex
}

.elementor-ken-burns {
  transition-duration: 10s;
  transition-property: transform;
  transition-timing-function: linear
}

.elementor-ken-burns--out {
  transform: scale(1.3)
}

.elementor-ken-burns--active {
  transition-duration: 20s
}

.elementor-ken-burns--active.elementor-ken-burns--out {
  transform: scale(1)
}

.elementor-ken-burns--active.elementor-ken-burns--in {
  transform: scale(1.3)
}

@media (min-width:-1) {
  .elementor-widescreen-align-center {
    text-align: center
  }

  .elementor-widescreen-align-right {
    text-align: right
  }

  .elementor-widescreen-align-left {
    text-align: left
  }

  .elementor-widescreen-align-center .elementor-button,
  .elementor-widescreen-align-left .elementor-button,
  .elementor-widescreen-align-right .elementor-button {
    width: auto
  }

  .elementor-widescreen-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:-1) {
  .elementor-laptop-align-center {
    text-align: center
  }

  .elementor-laptop-align-right {
    text-align: right
  }

  .elementor-laptop-align-left {
    text-align: left
  }

  .elementor-laptop-align-center .elementor-button,
  .elementor-laptop-align-left .elementor-button,
  .elementor-laptop-align-right .elementor-button {
    width: auto
  }

  .elementor-laptop-align-justify .elementor-button {
    width: 100%
  }

  .elementor-tablet_extra-align-center {
    text-align: center
  }

  .elementor-tablet_extra-align-right {
    text-align: right
  }

  .elementor-tablet_extra-align-left {
    text-align: left
  }

  .elementor-tablet_extra-align-center .elementor-button,
  .elementor-tablet_extra-align-left .elementor-button,
  .elementor-tablet_extra-align-right .elementor-button {
    width: auto
  }

  .elementor-tablet_extra-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:1024px) {
  .elementor-tablet-align-center {
    text-align: center
  }

  .elementor-tablet-align-right {
    text-align: right
  }

  .elementor-tablet-align-left {
    text-align: left
  }

  .elementor-tablet-align-center .elementor-button,
  .elementor-tablet-align-left .elementor-button,
  .elementor-tablet-align-right .elementor-button {
    width: auto
  }

  .elementor-tablet-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:-1) {
  .elementor-mobile_extra-align-center {
    text-align: center
  }

  .elementor-mobile_extra-align-right {
    text-align: right
  }

  .elementor-mobile_extra-align-left {
    text-align: left
  }

  .elementor-mobile_extra-align-center .elementor-button,
  .elementor-mobile_extra-align-left .elementor-button,
  .elementor-mobile_extra-align-right .elementor-button {
    width: auto
  }

  .elementor-mobile_extra-align-justify .elementor-button {
    width: 100%
  }
}

@media (max-width:767px) {
  .elementor-mobile-align-center {
    text-align: center
  }

  .elementor-mobile-align-right {
    text-align: right
  }

  .elementor-mobile-align-left {
    text-align: left
  }

  .elementor-mobile-align-center .elementor-button,
  .elementor-mobile-align-left .elementor-button,
  .elementor-mobile-align-right .elementor-button {
    width: auto
  }

  .elementor-mobile-align-justify .elementor-button {
    width: 100%
  }
}

:root {
  --page-title-display: block
}

.elementor-page-title,
h1.entry-title {
  display: var(--page-title-display)
}

@keyframes eicon-spin {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(359deg)
  }
}

.eicon-animation-spin {
  animation: eicon-spin 2s linear infinite
}

.elementor-section {
  position: relative
}

.elementor-section .elementor-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative
}

@media (max-width:1024px) {
  .elementor-section .elementor-container {
    flex-wrap: wrap
  }
}

.elementor-section.elementor-section-boxed>.elementor-container {
  max-width: 1140px
}

.elementor-section.elementor-section-stretched {
  position: relative;
  width: 100%
}

.elementor-section.elementor-section-items-top>.elementor-container {
  align-items: flex-start
}

.elementor-section.elementor-section-items-middle>.elementor-container {
  align-items: center
}

.elementor-section.elementor-section-items-bottom>.elementor-container {
  align-items: flex-end
}

@media (min-width:768px) {
  .elementor-section.elementor-section-height-full {
    height: 100vh
  }

  .elementor-section.elementor-section-height-full>.elementor-container {
    height: 100%
  }
}

.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap {
  align-items: flex-start
}

.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap {
  align-items: center
}

.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap {
  align-items: flex-end
}

.elementor-widget-wrap {
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%
}

.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
  display: flex
}

.elementor-widget-wrap>.elementor-element {
  width: 100%
}

.elementor-widget-wrap.e-swiper-container {
  width: calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))
}

.elementor-widget {
  position: relative
}

.elementor-widget:not(:last-child) {
  margin-bottom: var(--kit-widget-spacing, 20px)
}

.elementor-widget:not(:last-child).elementor-absolute,
.elementor-widget:not(:last-child).elementor-widget__width-auto,
.elementor-widget:not(:last-child).elementor-widget__width-initial {
  margin-bottom: 0
}

.elementor-column {
  display: flex;
  min-height: 1px;
  position: relative
}

.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated {
  padding: 5px
}

.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
  padding: 10px
}

.elementor-column-gap-extended>.elementor-column>.elementor-element-populated {
  padding: 15px
}

.elementor-column-gap-wide>.elementor-column>.elementor-element-populated {
  padding: 20px
}

.elementor-column-gap-wider>.elementor-column>.elementor-element-populated {
  padding: 30px
}

.elementor-inner-section .elementor-column-gap-no .elementor-element-populated {
  padding: 0
}

@media (min-width:768px) {

  .elementor-column.elementor-col-10,
  .elementor-column[data-col="10"] {
    width: 10%
  }

  .elementor-column.elementor-col-11,
  .elementor-column[data-col="11"] {
    width: 11.111%
  }

  .elementor-column.elementor-col-12,
  .elementor-column[data-col="12"] {
    width: 12.5%
  }

  .elementor-column.elementor-col-14,
  .elementor-column[data-col="14"] {
    width: 14.285%
  }

  .elementor-column.elementor-col-16,
  .elementor-column[data-col="16"] {
    width: 16.666%
  }

  .elementor-column.elementor-col-20,
  .elementor-column[data-col="20"] {
    width: 20%
  }

  .elementor-column.elementor-col-25,
  .elementor-column[data-col="25"] {
    width: 25%
  }

  .elementor-column.elementor-col-30,
  .elementor-column[data-col="30"] {
    width: 30%
  }

  .elementor-column.elementor-col-33,
  .elementor-column[data-col="33"] {
    width: 33.333%
  }

  .elementor-column.elementor-col-40,
  .elementor-column[data-col="40"] {
    width: 40%
  }

  .elementor-column.elementor-col-50,
  .elementor-column[data-col="50"] {
    width: 50%
  }

  .elementor-column.elementor-col-60,
  .elementor-column[data-col="60"] {
    width: 60%
  }

  .elementor-column.elementor-col-66,
  .elementor-column[data-col="66"] {
    width: 66.666%
  }

  .elementor-column.elementor-col-70,
  .elementor-column[data-col="70"] {
    width: 70%
  }

  .elementor-column.elementor-col-75,
  .elementor-column[data-col="75"] {
    width: 75%
  }

  .elementor-column.elementor-col-80,
  .elementor-column[data-col="80"] {
    width: 80%
  }

  .elementor-column.elementor-col-83,
  .elementor-column[data-col="83"] {
    width: 83.333%
  }

  .elementor-column.elementor-col-90,
  .elementor-column[data-col="90"] {
    width: 90%
  }

  .elementor-column.elementor-col-100,
  .elementor-column[data-col="100"] {
    width: 100%
  }
}

@media (max-width:479px) {
  .elementor-column.elementor-xs-10 {
    width: 10%
  }

  .elementor-column.elementor-xs-11 {
    width: 11.111%
  }

  .elementor-column.elementor-xs-12 {
    width: 12.5%
  }

  .elementor-column.elementor-xs-14 {
    width: 14.285%
  }

  .elementor-column.elementor-xs-16 {
    width: 16.666%
  }

  .elementor-column.elementor-xs-20 {
    width: 20%
  }

  .elementor-column.elementor-xs-25 {
    width: 25%
  }

  .elementor-column.elementor-xs-30 {
    width: 30%
  }

  .elementor-column.elementor-xs-33 {
    width: 33.333%
  }

  .elementor-column.elementor-xs-40 {
    width: 40%
  }

  .elementor-column.elementor-xs-50 {
    width: 50%
  }

  .elementor-column.elementor-xs-60 {
    width: 60%
  }

  .elementor-column.elementor-xs-66 {
    width: 66.666%
  }

  .elementor-column.elementor-xs-70 {
    width: 70%
  }

  .elementor-column.elementor-xs-75 {
    width: 75%
  }

  .elementor-column.elementor-xs-80 {
    width: 80%
  }

  .elementor-column.elementor-xs-83 {
    width: 83.333%
  }

  .elementor-column.elementor-xs-90 {
    width: 90%
  }

  .elementor-column.elementor-xs-100 {
    width: 100%
  }
}

@media (max-width:767px) {
  .elementor-column.elementor-sm-10 {
    width: 10%
  }

  .elementor-column.elementor-sm-11 {
    width: 11.111%
  }

  .elementor-column.elementor-sm-12 {
    width: 12.5%
  }

  .elementor-column.elementor-sm-14 {
    width: 14.285%
  }

  .elementor-column.elementor-sm-16 {
    width: 16.666%
  }

  .elementor-column.elementor-sm-20 {
    width: 20%
  }

  .elementor-column.elementor-sm-25 {
    width: 25%
  }

  .elementor-column.elementor-sm-30 {
    width: 30%
  }

  .elementor-column.elementor-sm-33 {
    width: 33.333%
  }

  .elementor-column.elementor-sm-40 {
    width: 40%
  }

  .elementor-column.elementor-sm-50 {
    width: 50%
  }

  .elementor-column.elementor-sm-60 {
    width: 60%
  }

  .elementor-column.elementor-sm-66 {
    width: 66.666%
  }

  .elementor-column.elementor-sm-70 {
    width: 70%
  }

  .elementor-column.elementor-sm-75 {
    width: 75%
  }

  .elementor-column.elementor-sm-80 {
    width: 80%
  }

  .elementor-column.elementor-sm-83 {
    width: 83.333%
  }

  .elementor-column.elementor-sm-90 {
    width: 90%
  }

  .elementor-column.elementor-sm-100 {
    width: 100%
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor-column.elementor-md-10 {
    width: 10%
  }

  .elementor-column.elementor-md-11 {
    width: 11.111%
  }

  .elementor-column.elementor-md-12 {
    width: 12.5%
  }

  .elementor-column.elementor-md-14 {
    width: 14.285%
  }

  .elementor-column.elementor-md-16 {
    width: 16.666%
  }

  .elementor-column.elementor-md-20 {
    width: 20%
  }

  .elementor-column.elementor-md-25 {
    width: 25%
  }

  .elementor-column.elementor-md-30 {
    width: 30%
  }

  .elementor-column.elementor-md-33 {
    width: 33.333%
  }

  .elementor-column.elementor-md-40 {
    width: 40%
  }

  .elementor-column.elementor-md-50 {
    width: 50%
  }

  .elementor-column.elementor-md-60 {
    width: 60%
  }

  .elementor-column.elementor-md-66 {
    width: 66.666%
  }

  .elementor-column.elementor-md-70 {
    width: 70%
  }

  .elementor-column.elementor-md-75 {
    width: 75%
  }

  .elementor-column.elementor-md-80 {
    width: 80%
  }

  .elementor-column.elementor-md-83 {
    width: 83.333%
  }

  .elementor-column.elementor-md-90 {
    width: 90%
  }

  .elementor-column.elementor-md-100 {
    width: 100%
  }
}

@media (min-width:-1) {
  .elementor-reverse-widescreen>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-widescreen>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:1025px) and (max-width:-1) {
  .elementor-reverse-laptop>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:-1) and (max-width:-1) {
  .elementor-reverse-laptop>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-laptop>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:1025px) and (max-width:-1) {

  .elementor-reverse-laptop>.elementor-container>:first-child,
  .elementor-reverse-laptop>.elementor-container>:nth-child(10),
  .elementor-reverse-laptop>.elementor-container>:nth-child(2),
  .elementor-reverse-laptop>.elementor-container>:nth-child(3),
  .elementor-reverse-laptop>.elementor-container>:nth-child(4),
  .elementor-reverse-laptop>.elementor-container>:nth-child(5),
  .elementor-reverse-laptop>.elementor-container>:nth-child(6),
  .elementor-reverse-laptop>.elementor-container>:nth-child(7),
  .elementor-reverse-laptop>.elementor-container>:nth-child(8),
  .elementor-reverse-laptop>.elementor-container>:nth-child(9) {
    order: 0
  }

  .elementor-reverse-tablet_extra>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-tablet_extra>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor-reverse-tablet>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:-1) and (max-width:1024px) {
  .elementor-reverse-tablet>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-tablet>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (min-width:768px) and (max-width:-1) {

  .elementor-reverse-tablet>.elementor-container>:first-child,
  .elementor-reverse-tablet>.elementor-container>:nth-child(10),
  .elementor-reverse-tablet>.elementor-container>:nth-child(2),
  .elementor-reverse-tablet>.elementor-container>:nth-child(3),
  .elementor-reverse-tablet>.elementor-container>:nth-child(4),
  .elementor-reverse-tablet>.elementor-container>:nth-child(5),
  .elementor-reverse-tablet>.elementor-container>:nth-child(6),
  .elementor-reverse-tablet>.elementor-container>:nth-child(7),
  .elementor-reverse-tablet>.elementor-container>:nth-child(8),
  .elementor-reverse-tablet>.elementor-container>:nth-child(9) {
    order: 0
  }

  .elementor-reverse-mobile_extra>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-mobile_extra>.elementor-container>:nth-child(10) {
    order: 1
  }
}

@media (max-width:767px) {
  .elementor-reverse-mobile>.elementor-container>:first-child {
    order: 10
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(2) {
    order: 9
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(3) {
    order: 8
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(4) {
    order: 7
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(5) {
    order: 6
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(6) {
    order: 5
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(7) {
    order: 4
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(8) {
    order: 3
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(9) {
    order: 2
  }

  .elementor-reverse-mobile>.elementor-container>:nth-child(10) {
    order: 1
  }

  .elementor-column {
    width: 100%
  }
}

.elementor-grid {
  display: grid;
  grid-column-gap: var(--grid-column-gap);
  grid-row-gap: var(--grid-row-gap)
}

.elementor-grid .elementor-grid-item {
  min-width: 0
}

.elementor-grid-0 .elementor-grid {
  display: inline-block;
  margin-bottom: calc(-1 * var(--grid-row-gap));
  width: 100%;
  word-spacing: var(--grid-column-gap)
}

.elementor-grid-0 .elementor-grid .elementor-grid-item {
  display: inline-block;
  margin-bottom: var(--grid-row-gap);
  word-break: break-word
}

.elementor-grid-1 .elementor-grid {
  grid-template-columns: repeat(1, 1fr)
}

.elementor-grid-2 .elementor-grid {
  grid-template-columns: repeat(2, 1fr)
}

.elementor-grid-3 .elementor-grid {
  grid-template-columns: repeat(3, 1fr)
}

.elementor-grid-4 .elementor-grid {
  grid-template-columns: repeat(4, 1fr)
}

.elementor-grid-5 .elementor-grid {
  grid-template-columns: repeat(5, 1fr)
}

.elementor-grid-6 .elementor-grid {
  grid-template-columns: repeat(6, 1fr)
}

.elementor-grid-7 .elementor-grid {
  grid-template-columns: repeat(7, 1fr)
}

.elementor-grid-8 .elementor-grid {
  grid-template-columns: repeat(8, 1fr)
}

.elementor-grid-9 .elementor-grid {
  grid-template-columns: repeat(9, 1fr)
}

.elementor-grid-10 .elementor-grid {
  grid-template-columns: repeat(10, 1fr)
}

.elementor-grid-11 .elementor-grid {
  grid-template-columns: repeat(11, 1fr)
}

.elementor-grid-12 .elementor-grid {
  grid-template-columns: repeat(12, 1fr)
}

@media (min-width:-1) {
  .elementor-grid-widescreen-0 .elementor-grid {
    display: inline-block;
    margin-bottom: calc(-1 * var(--grid-row-gap));
    width: 100%;
    word-spacing: var(--grid-column-gap)
  }

  .elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-widescreen-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-widescreen-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-widescreen-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-widescreen-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-widescreen-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-widescreen-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-widescreen-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-widescreen-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-widescreen-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-widescreen-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-widescreen-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-widescreen-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:-1) {
  .elementor-grid-laptop-0 .elementor-grid {
    display: inline-block;
    margin-bottom: calc(-1 * var(--grid-row-gap));
    width: 100%;
    word-spacing: var(--grid-column-gap)
  }

  .elementor-grid-laptop-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-laptop-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-laptop-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-laptop-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-laptop-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-laptop-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-laptop-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-laptop-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-laptop-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-laptop-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-laptop-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-laptop-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-laptop-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }

  .elementor-grid-tablet_extra-0 .elementor-grid {
    display: inline-block;
    margin-bottom: calc(-1 * var(--grid-row-gap));
    width: 100%;
    word-spacing: var(--grid-column-gap)
  }

  .elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-tablet_extra-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-tablet_extra-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-tablet_extra-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-tablet_extra-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-tablet_extra-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-tablet_extra-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-tablet_extra-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-tablet_extra-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-tablet_extra-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-tablet_extra-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-tablet_extra-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-tablet_extra-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:768px) {
  .elementor-grid-tablet-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }
}

@media (max-width:1024px) {
  .elementor-grid-tablet-0 .elementor-grid {
    display: inline-block;
    margin-bottom: calc(-1 * var(--grid-row-gap));
    width: 100%;
    word-spacing: var(--grid-column-gap)
  }

  .elementor-grid-tablet-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-tablet-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-tablet-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-tablet-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-tablet-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-tablet-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-tablet-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-tablet-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-tablet-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-tablet-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-tablet-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-tablet-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:-1) {
  .elementor-grid-mobile_extra-0 .elementor-grid {
    display: inline-block;
    margin-bottom: calc(-1 * var(--grid-row-gap));
    width: 100%;
    word-spacing: var(--grid-column-gap)
  }

  .elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-mobile_extra-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-mobile_extra-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-mobile_extra-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-mobile_extra-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-mobile_extra-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-mobile_extra-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-mobile_extra-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-mobile_extra-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-mobile_extra-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-mobile_extra-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-mobile_extra-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-mobile_extra-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (max-width:767px) {
  .elementor-grid-mobile-0 .elementor-grid {
    display: inline-block;
    margin-bottom: calc(-1 * var(--grid-row-gap));
    width: 100%;
    word-spacing: var(--grid-column-gap)
  }

  .elementor-grid-mobile-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }

  .elementor-grid-mobile-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .elementor-grid-mobile-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .elementor-grid-mobile-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .elementor-grid-mobile-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .elementor-grid-mobile-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }

  .elementor-grid-mobile-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }

  .elementor-grid-mobile-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  .elementor-grid-mobile-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }

  .elementor-grid-mobile-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }

  .elementor-grid-mobile-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }

  .elementor-grid-mobile-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }

  .elementor-grid-mobile-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}

@media (min-width:1025px) {
  #elementor-device-mode:after {
    content: "desktop"
  }
}

@media (min-width:-1) {
  #elementor-device-mode:after {
    content: "widescreen"
  }
}

@media (max-width:-1) {
  #elementor-device-mode:after {
    content: "laptop";
    content: "tablet_extra"
  }
}

@media (max-width:1024px) {
  #elementor-device-mode:after {
    content: "tablet"
  }
}

@media (max-width:-1) {
  #elementor-device-mode:after {
    content: "mobile_extra"
  }
}

@media (max-width:767px) {
  #elementor-device-mode:after {
    content: "mobile"
  }
}

@media (prefers-reduced-motion:no-preference) {
  html {
    scroll-behavior: smooth
  }
}

.e-con {
  --border-radius: 0;
  --border-top-width: 0px;
  --border-right-width: 0px;
  --border-bottom-width: 0px;
  --border-left-width: 0px;
  --border-style: initial;
  --border-color: initial;
  --container-widget-width: 100%;
  --container-widget-height: initial;
  --container-widget-flex-grow: 0;
  --container-widget-align-self: initial;
  --content-width: min(100%, var(--container-max-width, 1140px));
  --width: 100%;
  --min-height: initial;
  --height: auto;
  --text-align: initial;
  --margin-top: 0px;
  --margin-right: 0px;
  --margin-bottom: 0px;
  --margin-left: 0px;
  --padding-top: var(--container-default-padding-top, 10px);
  --padding-right: var(--container-default-padding-right, 10px);
  --padding-bottom: var(--container-default-padding-bottom, 10px);
  --padding-left: var(--container-default-padding-left, 10px);
  --position: relative;
  --z-index: revert;
  --overflow: visible;
  --gap: var(--widgets-spacing, 20px);
  --row-gap: var(--widgets-spacing-row, 20px);
  --column-gap: var(--widgets-spacing-column, 20px);
  --overlay-mix-blend-mode: initial;
  --overlay-opacity: 1;
  --overlay-transition: 0.3s;
  --e-con-grid-template-columns: repeat(3, 1fr);
  --e-con-grid-template-rows: repeat(2, 1fr);
  border-radius: var(--border-radius);
  height: var(--height);
  min-height: var(--min-height);
  min-width: 0;
  overflow: var(--overflow);
  position: var(--position);
  transition: background var(--background-transition, .3s), border var(--border-transition, .3s), box-shadow var(--border-transition, .3s), transform var(--e-con-transform-transition-duration, .4s);
  width: var(--width);
  z-index: var(--z-index);
  --flex-wrap-mobile: wrap;
  margin-block-end: var(--margin-block-end);
  margin-block-start: var(--margin-block-start);
  margin-inline-end: var(--margin-inline-end);
  margin-inline-start: var(--margin-inline-start);
  padding-inline-end: var(--padding-inline-end);
  padding-inline-start: var(--padding-inline-start);
  --margin-block-start: var(--margin-top);
  --margin-block-end: var(--margin-bottom);
  --margin-inline-start: var(--margin-left);
  --margin-inline-end: var(--margin-right);
  --padding-inline-start: var(--padding-left);
  --padding-inline-end: var(--padding-right);
  --padding-block-start: var(--padding-top);
  --padding-block-end: var(--padding-bottom);
  --border-block-start-width: var(--border-top-width);
  --border-block-end-width: var(--border-bottom-width);
  --border-inline-start-width: var(--border-left-width);
  --border-inline-end-width: var(--border-right-width)
}

body.rtl .e-con {
  --padding-inline-start: var(--padding-right);
  --padding-inline-end: var(--padding-left);
  --margin-inline-start: var(--margin-right);
  --margin-inline-end: var(--margin-left);
  --border-inline-start-width: var(--border-right-width);
  --border-inline-end-width: var(--border-left-width)
}

.e-con.e-flex {
  --flex-direction: column;
  --flex-basis: auto;
  --flex-grow: 0;
  --flex-shrink: 1;
  flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis)
}

.e-con-full,
.e-con>.e-con-inner {
  padding-block-end: var(--padding-block-end);
  padding-block-start: var(--padding-block-start);
  text-align: var(--text-align)
}

.e-con-full.e-flex,
.e-con.e-flex>.e-con-inner {
  flex-direction: var(--flex-direction)
}

.e-con,
.e-con>.e-con-inner {
  display: var(--display)
}

.e-con.e-grid {
  --grid-justify-content: start;
  --grid-align-content: start;
  --grid-auto-flow: row
}

.e-con.e-grid,
.e-con.e-grid>.e-con-inner {
  align-content: var(--grid-align-content);
  align-items: var(--align-items);
  grid-auto-flow: var(--grid-auto-flow);
  grid-template-columns: var(--e-con-grid-template-columns);
  grid-template-rows: var(--e-con-grid-template-rows);
  justify-content: var(--grid-justify-content);
  justify-items: var(--justify-items)
}

.e-con-boxed.e-flex {
  align-content: normal;
  align-items: normal;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: normal
}

.e-con-boxed.e-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: legacy
}

.e-con-boxed {
  gap: initial;
  text-align: initial
}

.e-con.e-flex>.e-con-inner {
  align-content: var(--align-content);
  align-items: var(--align-items);
  align-self: auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: var(--flex-wrap);
  justify-content: var(--justify-content)
}

.e-con.e-grid>.e-con-inner {
  align-items: var(--align-items);
  justify-items: var(--justify-items)
}

.e-con>.e-con-inner {
  gap: var(--row-gap) var(--column-gap);
  height: 100%;
  margin: 0 auto;
  max-width: var(--content-width);
  padding-inline-end: 0;
  padding-inline-start: 0;
  width: 100%
}

:is(.elementor-section-wrap, [data-elementor-id])>.e-con {
  --margin-left: auto;
  --margin-right: auto;
  max-width: min(100%, var(--width))
}

.e-con .elementor-widget.elementor-widget {
  margin-block-end: 0
}

.e-con:before,
.e-con>.elementor-background-slideshow:before,
.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,
:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container:before {
  border-block-end-width: var(--border-block-end-width);
  border-block-start-width: var(--border-block-start-width);
  border-color: var(--border-color);
  border-inline-end-width: var(--border-inline-end-width);
  border-inline-start-width: var(--border-inline-start-width);
  border-radius: var(--border-radius);
  border-style: var(--border-style);
  content: var(--background-overlay);
  display: block;
  height: max(100% + var(--border-top-width) + var(--border-bottom-width), 100%);
  left: calc(0px - var(--border-left-width));
  mix-blend-mode: var(--overlay-mix-blend-mode);
  opacity: var(--overlay-opacity);
  position: absolute;
  top: calc(0px - var(--border-top-width));
  transition: var(--overlay-transition, .3s);
  width: max(100% + var(--border-left-width) + var(--border-right-width), 100%)
}

.e-con:before {
  transition: background var(--overlay-transition, .3s), border-radius var(--border-transition, .3s), opacity var(--overlay-transition, .3s)
}

.e-con>.elementor-background-slideshow,
:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container {
  border-block-end-width: var(--border-block-end-width);
  border-block-start-width: var(--border-block-start-width);
  border-color: var(--border-color);
  border-inline-end-width: var(--border-inline-end-width);
  border-inline-start-width: var(--border-inline-start-width);
  border-radius: var(--border-radius);
  border-style: var(--border-style);
  height: max(100% + var(--border-top-width) + var(--border-bottom-width), 100%);
  left: calc(0px - var(--border-left-width));
  top: calc(0px - var(--border-top-width));
  width: max(100% + var(--border-left-width) + var(--border-right-width), 100%)
}

@media (max-width:767px) {
  :is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile {
    display: none
  }
}

:is(.e-con, .e-con>.e-con-inner)>.elementor-background-video-container:before {
  z-index: 1
}

:is(.e-con, .e-con>.e-con-inner)>.elementor-background-slideshow:before {
  z-index: 2
}

.e-con .elementor-widget {
  min-width: 0
}

.e-con .elementor-widget-empty,
.e-con .elementor-widget-google_maps,
.e-con .elementor-widget-video,
.e-con .elementor-widget.e-widget-swiper {
  width: 100%
}

.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,
.e-con>.elementor-widget>.elementor-widget-container {
  height: 100%
}

.e-con.e-con>.e-con-inner>.elementor-widget,
.elementor.elementor .e-con>.elementor-widget {
  max-width: 100%
}

.e-con .elementor-widget:not(:last-child) {
  --kit-widget-spacing: 0px
}

@media (max-width:767px) {
  .e-con.e-flex {
    --width: 100%;
    --flex-wrap: var(--flex-wrap-mobile)
  }

  .e-con.e-flex .elementor-widget-archive-posts {
    width: 100%
  }
}

.elementor-form-fields-wrapper {
  display: flex;
  flex-wrap: wrap
}

.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea {
  flex-basis: 100%;
  max-width: 100%
}

.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,
.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input {
  flex-grow: 1
}

.elementor-field-group {
  align-items: center;
  flex-wrap: wrap
}

.elementor-field-group.elementor-field-type-submit {
  align-items: flex-end
}

.elementor-field-group .elementor-field-textual {
  background-color: transparent;
  border: 1px solid #69727d;
  color: #1f2124;
  flex-grow: 1;
  max-width: 100%;
  vertical-align: middle;
  width: 100%
}

.elementor-field-group .elementor-field-textual:focus {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  outline: 0
}

.elementor-field-group .elementor-field-textual::-moz-placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}

.elementor-field-group .elementor-field-textual::placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}

.elementor-field-group .elementor-select-wrapper {
  display: flex;
  position: relative;
  width: 100%
}

.elementor-field-group .elementor-select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  flex-basis: 100%;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding-inline-end: 20px;
  text-transform: inherit
}

.elementor-field-group .elementor-select-wrapper:before {
  content: "\e92a";
  font-family: eicons;
  font-size: 15px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  text-shadow: 0 0 3px rgba(0, 0, 0, .3);
  top: 50%;
  transform: translateY(-50%)
}

.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before {
  content: ""
}

.elementor-field-subgroup {
  display: flex;
  flex-wrap: wrap
}

.elementor-field-subgroup .elementor-field-option label {
  display: inline-block
}

.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option {
  padding-inline-end: 10px
}

.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option {
  flex-basis: 100%
}

.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,
.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,
.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,
.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,
.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,
.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label {
  display: inline
}

.elementor-field-label {
  cursor: pointer
}

.elementor-mark-required .elementor-field-label:after {
  color: red;
  content: "*";
  padding-inline-start: .2em
}

.elementor-field-textual {
  border-radius: 3px;
  font-size: 15px;
  line-height: 1.4;
  min-height: 40px;
  padding: 5px 14px
}

.elementor-field-textual.elementor-size-xs {
  border-radius: 2px;
  font-size: 13px;
  min-height: 33px;
  padding: 4px 12px
}

.elementor-field-textual.elementor-size-md {
  border-radius: 4px;
  font-size: 16px;
  min-height: 47px;
  padding: 6px 16px
}

.elementor-field-textual.elementor-size-lg {
  border-radius: 5px;
  font-size: 18px;
  min-height: 59px;
  padding: 7px 20px
}

.elementor-field-textual.elementor-size-xl {
  border-radius: 6px;
  font-size: 20px;
  min-height: 72px;
  padding: 8px 24px
}

.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
  flex-basis: 100%
}

.elementor-button-align-stretch .e-form__buttons__wrapper {
  flex-basis: 50%;
  flex-grow: 1
}

.elementor-button-align-stretch .e-form__buttons__wrapper__button {
  flex-basis: 100%
}

.elementor-button-align-center .e-form__buttons,
.elementor-button-align-center .elementor-field-type-submit {
  justify-content: center
}

.elementor-button-align-start .e-form__buttons,
.elementor-button-align-start .elementor-field-type-submit {
  justify-content: flex-start
}

.elementor-button-align-end .e-form__buttons,
.elementor-button-align-end .elementor-field-type-submit {
  justify-content: flex-end
}

.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
  flex-basis: auto
}

.elementor-button-align-center .e-form__buttons__wrapper,
.elementor-button-align-end .e-form__buttons__wrapper,
.elementor-button-align-start .e-form__buttons__wrapper {
  flex-grow: 0
}

.elementor-button-align-center .e-form__buttons__wrapper,
.elementor-button-align-center .e-form__buttons__wrapper__button,
.elementor-button-align-end .e-form__buttons__wrapper,
.elementor-button-align-end .e-form__buttons__wrapper__button,
.elementor-button-align-start .e-form__buttons__wrapper,
.elementor-button-align-start .e-form__buttons__wrapper__button {
  flex-basis: auto
}

@media screen and (max-width:1024px) {
  .elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: 100%
  }

  .elementor-tablet-button-align-stretch .e-form__buttons__wrapper {
    flex-basis: 50%;
    flex-grow: 1
  }

  .elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button {
    flex-basis: 100%
  }

  .elementor-tablet-button-align-center .e-form__buttons,
  .elementor-tablet-button-align-center .elementor-field-type-submit {
    justify-content: center
  }

  .elementor-tablet-button-align-start .e-form__buttons,
  .elementor-tablet-button-align-start .elementor-field-type-submit {
    justify-content: flex-start
  }

  .elementor-tablet-button-align-end .e-form__buttons,
  .elementor-tablet-button-align-end .elementor-field-type-submit {
    justify-content: flex-end
  }

  .elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: auto
  }

  .elementor-tablet-button-align-center .e-form__buttons__wrapper,
  .elementor-tablet-button-align-end .e-form__buttons__wrapper,
  .elementor-tablet-button-align-start .e-form__buttons__wrapper {
    flex-grow: 0
  }

  .elementor-tablet-button-align-center .e-form__buttons__wrapper,
  .elementor-tablet-button-align-center .e-form__buttons__wrapper__button,
  .elementor-tablet-button-align-end .e-form__buttons__wrapper,
  .elementor-tablet-button-align-end .e-form__buttons__wrapper__button,
  .elementor-tablet-button-align-start .e-form__buttons__wrapper,
  .elementor-tablet-button-align-start .e-form__buttons__wrapper__button {
    flex-basis: auto
  }
}

@media screen and (max-width:767px) {
  .elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: 100%
  }

  .elementor-mobile-button-align-stretch .e-form__buttons__wrapper {
    flex-basis: 50%;
    flex-grow: 1
  }

  .elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button {
    flex-basis: 100%
  }

  .elementor-mobile-button-align-center .e-form__buttons,
  .elementor-mobile-button-align-center .elementor-field-type-submit {
    justify-content: center
  }

  .elementor-mobile-button-align-start .e-form__buttons,
  .elementor-mobile-button-align-start .elementor-field-type-submit {
    justify-content: flex-start
  }

  .elementor-mobile-button-align-end .e-form__buttons,
  .elementor-mobile-button-align-end .elementor-field-type-submit {
    justify-content: flex-end
  }

  .elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,
  .elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    flex-basis: auto
  }

  .elementor-mobile-button-align-center .e-form__buttons__wrapper,
  .elementor-mobile-button-align-end .e-form__buttons__wrapper,
  .elementor-mobile-button-align-start .e-form__buttons__wrapper {
    flex-grow: 0
  }

  .elementor-mobile-button-align-center .e-form__buttons__wrapper,
  .elementor-mobile-button-align-center .e-form__buttons__wrapper__button,
  .elementor-mobile-button-align-end .e-form__buttons__wrapper,
  .elementor-mobile-button-align-end .e-form__buttons__wrapper__button,
  .elementor-mobile-button-align-start .e-form__buttons__wrapper,
  .elementor-mobile-button-align-start .e-form__buttons__wrapper__button {
    flex-basis: auto
  }
}

.elementor-error .elementor-field {
  border-color: #d9534f
}

.elementor-error .help-inline {
  color: #d9534f;
  font-size: .9em
}

.elementor-message {
  font-size: 1em;
  line-height: 1;
  margin: 10px 0
}

.elementor-message:before {
  content: "\e90e";
  display: inline-block;
  font-family: eicons;
  font-style: normal;
  font-weight: 400;
  margin-inline-end: 5px;
  vertical-align: middle
}

.elementor-message.elementor-message-danger {
  color: #d9534f
}

.elementor-message.elementor-message-danger:before {
  content: "\e87f"
}

.elementor-message.form-message-success {
  color: #5cb85c
}

.elementor-form .elementor-button {
  border: none;
  padding-block-end: 0;
  padding-block-start: 0
}

.elementor-form .elementor-button-content-wrapper,
.elementor-form .elementor-button>span {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center
}

.elementor-form .elementor-button.elementor-size-xs {
  min-height: 33px
}

.elementor-form .elementor-button.elementor-size-sm {
  min-height: 40px
}

.elementor-form .elementor-button.elementor-size-md {
  min-height: 47px
}

.elementor-form .elementor-button.elementor-size-lg {
  min-height: 59px
}

.elementor-form .elementor-button.elementor-size-xl {
  min-height: 72px
}

.elementor-element .elementor-widget-container,
.elementor-element:not(:has(.elementor-widget-container)) {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s)
}

.elementor-heading-title {
  line-height: 1;
  margin: 0;
  padding: 0
}

.elementor-button {
  background-color: #69727d;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding: 12px 24px;
  fill: #fff;
  text-align: center;
  transition: all .3s
}

.elementor-button:focus,
.elementor-button:hover,
.elementor-button:visited {
  color: #fff
}

.elementor-button-content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center
}

.elementor-button-icon svg {
  height: auto;
  width: 1em
}

.elementor-button-icon .e-font-icon-svg {
  height: 1em
}

.elementor-button-text {
  display: inline-block
}

.elementor-button.elementor-size-xs {
  border-radius: 2px;
  font-size: 13px;
  padding: 10px 20px
}

.elementor-button.elementor-size-md {
  border-radius: 4px;
  font-size: 16px;
  padding: 15px 30px
}

.elementor-button.elementor-size-lg {
  border-radius: 5px;
  font-size: 18px;
  padding: 20px 40px
}

.elementor-button.elementor-size-xl {
  border-radius: 6px;
  font-size: 20px;
  padding: 25px 50px
}

.elementor-button span {
  text-decoration: inherit
}

.elementor-element.elementor-button-info .elementor-button {
  background-color: #5bc0de
}

.elementor-element.elementor-button-success .elementor-button {
  background-color: #5cb85c
}

.elementor-element.elementor-button-warning .elementor-button {
  background-color: #f0ad4e
}

.elementor-element.elementor-button-danger .elementor-button {
  background-color: #d9534f
}

.elementor-widget-button .elementor-button .elementor-button-info {
  background-color: #5bc0de
}

.elementor-widget-button .elementor-button .elementor-button-success {
  background-color: #5cb85c
}

.elementor-widget-button .elementor-button .elementor-button-warning {
  background-color: #f0ad4e
}

.elementor-widget-button .elementor-button .elementor-button-danger {
  background-color: #d9534f
}

.elementor-view-stacked .elementor-icon {
  background-color: #69727d;
  color: #fff;
  padding: .5em;
  fill: #fff
}

.elementor-view-framed .elementor-icon {
  background-color: transparent;
  border: 3px solid #69727d;
  color: #69727d;
  padding: .5em
}

.elementor-icon {
  color: #69727d;
  display: inline-block;
  font-size: 50px;
  line-height: 1;
  text-align: center;
  transition: all .3s
}

.elementor-icon:hover {
  color: #69727d
}

.elementor-icon i,
.elementor-icon svg {
  display: block;
  height: 1em;
  position: relative;
  width: 1em
}

.elementor-icon i:before,
.elementor-icon svg:before {
  left: 50%;
  position: absolute;
  transform: translateX(-50%)
}

.elementor-icon i.fad {
  width: auto
}

.elementor-shape-square .elementor-icon {
  border-radius: 0
}

.elementor-shape-rounded .elementor-icon {
  border-radius: 10%
}

.elementor-shape-circle .elementor-icon {
  border-radius: 50%
}

.e-transform .elementor-widget-container,
.e-transform:not(:has(.elementor-widget-container)) {
  transform: perspective(var(--e-transform-perspective, 0)) rotate(var(--e-transform-rotateZ, 0)) rotateX(var(--e-transform-rotateX, 0)) rotateY(var(--e-transform-rotateY, 0)) translate(var(--e-transform-translate, 0)) translateX(var(--e-transform-translateX, 0)) translateY(var(--e-transform-translateY, 0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX, 0)) skewY(var(--e-transform-skewY, 0));
  transform-origin: var(--e-transform-origin-y) var(--e-transform-origin-x)
}

.e-con.e-transform {
  transform: perspective(var(--e-con-transform-perspective, 0)) rotate(var(--e-con-transform-rotateZ, 0)) rotateX(var(--e-con-transform-rotateX, 0)) rotateY(var(--e-con-transform-rotateY, 0)) translate(var(--e-con-transform-translate, 0)) translateX(var(--e-con-transform-translateX, 0)) translateY(var(--e-con-transform-translateY, 0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX, 0)) skewY(var(--e-con-transform-skewY, 0));
  transform-origin: var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)
}

.animated {
  animation-duration: 1.25s
}

.animated.animated-slow {
  animation-duration: 2s
}

.animated.animated-fast {
  animation-duration: .75s
}

.animated.infinite {
  animation-iteration-count: infinite
}

.animated.reverse {
  animation-direction: reverse;
  animation-fill-mode: forwards
}

@media (prefers-reduced-motion:reduce) {
  .animated {
    animation: none
  }
}

.elementor-post__thumbnail__link {
  transition: none
}

@media (max-width:767px) {

  .elementor .elementor-hidden-mobile,
  .elementor .elementor-hidden-phone {
    display: none
  }
}

@media (min-width:-1) and (max-width:-1) {
  .elementor .elementor-hidden-mobile_extra {
    display: none
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .elementor .elementor-hidden-tablet {
    display: none
  }
}

@media (min-width:-1) and (max-width:-1) {

  .elementor .elementor-hidden-laptop,
  .elementor .elementor-hidden-tablet_extra {
    display: none
  }
}

@media (min-width:1025px) and (max-width:99999px) {
  .elementor .elementor-hidden-desktop {
    display: none
  }
}

@media (min-width:-1) {
  .elementor .elementor-hidden-widescreen {
    display: none
  }
}

.elementor-kit-427 {
  --e-global-color-primary: #6ec1e4;
  --e-global-color-secondary: #54595f;
  --e-global-color-text: #7a7a7a;
  --e-global-color-accent: #61ce70;
  --e-global-color-255e0ed: #0554f2;
  --e-global-color-4268f8e: #2b2a4e;
  --e-global-color-3407b9a: #f5faff;
  --e-global-color-855deac: #444;
  --e-global-typography-primary-font-family: "Roboto";
  --e-global-typography-primary-font-weight: 600;
  --e-global-typography-secondary-font-family: "Roboto Slab";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Roboto";
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: "Roboto";
  --e-global-typography-accent-font-weight: 500;
  --e-global-typography-c3c33c5-font-family: "Rubik";
  --e-global-typography-c3c33c5-font-size: 40px;
  --e-global-typography-c3c33c5-text-transform: capitalize;
  --e-global-typography-c3c33c5-line-height: 48px;
  --e-global-typography-fa93f47-font-family: "Rubik";
  --e-global-typography-fa93f47-font-size: 20px;
  --e-global-typography-fa93f47-text-transform: uppercase;
  --e-global-typography-fa93f47-line-height: 25px;
  --e-global-typography-fa93f47-letter-spacing: 1px;
  --e-global-typography-06ccb68-font-family: "Rubik";
  --e-global-typography-06ccb68-font-size: 16px;
  --e-global-typography-06ccb68-line-height: 30px;
  --e-global-typography-6ab027e-font-family: "Rubik";
  --e-global-typography-6ab027e-font-size: 16px;
  --e-global-typography-6ab027e-text-transform: capitalize;
  --e-global-typography-302ff0d-font-family: "Rubik";
  --e-global-typography-302ff0d-font-size: 45px;
  --e-global-typography-302ff0d-text-transform: capitalize;
  --e-global-typography-302ff0d-line-height: 55px;
  --e-global-typography-7a4965c-font-family: "Rubik";
  --e-global-typography-7a4965c-font-size: 25px;
  --e-global-typography-7a4965c-text-transform: capitalize;
  --e-global-typography-7a4965c-line-height: 35px;
  --e-global-typography-27b5570-font-family: "Rubik";
  --e-global-typography-27b5570-font-size: 25px;
  --e-global-typography-27b5570-font-weight: 400;
  --e-global-typography-27b5570-line-height: 32px;
  --e-global-typography-ae0d987-font-family: "Rubik";
  --e-global-typography-ae0d987-font-size: 30px;
  --e-global-typography-ae0d987-font-weight: 500;
  --e-global-typography-ae0d987-line-height: 38px
}

.elementor-kit-427 e-page-transition {
  background-color: #ffbc7d
}

.elementor-section.elementor-section-boxed>.elementor-container {
  max-width: 1200px
}

.e-con {
  --container-max-width: 1200px
}

.elementor-widget:not(:last-child) {
  margin-block-end: 20px
}

.elementor-element {
  --widgets-spacing: 20px 20px;
  --widgets-spacing-row: 20px;
  --widgets-spacing-column: 20px
}

  {}

h1.entry-title {
  display: var(--page-title-display)
}

@media(max-width:1024px) {
  .elementor-kit-427 {
    --e-global-typography-c3c33c5-font-size: 40px;
    --e-global-typography-c3c33c5-line-height: 48px;
    --e-global-typography-fa93f47-font-size: 20px;
    --e-global-typography-fa93f47-line-height: 25px;
    --e-global-typography-fa93f47-letter-spacing: 0px;
    --e-global-typography-06ccb68-font-size: 16px;
    --e-global-typography-06ccb68-line-height: 30px;
    --e-global-typography-6ab027e-font-size: 16px;
    --e-global-typography-302ff0d-font-size: 45px;
    --e-global-typography-302ff0d-line-height: 55px;
    --e-global-typography-7a4965c-font-size: 25px;
    --e-global-typography-7a4965c-line-height: 35px;
    --e-global-typography-27b5570-font-size: 25px;
    --e-global-typography-27b5570-line-height: 32px;
    --e-global-typography-ae0d987-font-size: 30px;
    --e-global-typography-ae0d987-line-height: 38px
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1024px
  }

  .e-con {
    --container-max-width: 1024px
  }
}

@media(max-width:767px) {
  .elementor-kit-427 {
    --e-global-typography-c3c33c5-font-size: 30px;
    --e-global-typography-c3c33c5-line-height: 38px;
    --e-global-typography-fa93f47-font-size: 15px;
    --e-global-typography-fa93f47-line-height: 25px;
    --e-global-typography-06ccb68-font-size: 16px;
    --e-global-typography-06ccb68-line-height: 30px;
    --e-global-typography-6ab027e-font-size: 16px;
    --e-global-typography-302ff0d-font-size: 35px;
    --e-global-typography-302ff0d-line-height: 42px;
    --e-global-typography-7a4965c-font-size: 20px;
    --e-global-typography-7a4965c-line-height: 35px;
    --e-global-typography-27b5570-font-size: 22px;
    --e-global-typography-27b5570-line-height: 28px;
    --e-global-typography-ae0d987-font-size: 25px;
    --e-global-typography-ae0d987-line-height: 32px
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 767px
  }

  .e-con {
    --container-max-width: 767px
  }
}

[data-elementor-type=popup] .elementor-section-wrap:not(:empty)+#elementor-add-new-section,
[data-elementor-type=popup]:not(.elementor-edit-area) {
  display: none
}

.elementor-popup-modal {
  background-color: transparent;
  display: flex;
  pointer-events: none;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto
}

.elementor-popup-modal .dialog-buttons-wrapper,
.elementor-popup-modal .dialog-header {
  display: none
}

.elementor-popup-modal .dialog-close-button {
  display: none;
  inset-inline-end: 20px;
  margin-top: 0;
  opacity: 1;
  pointer-events: all;
  top: 20px;
  z-index: 9999
}

.elementor-popup-modal .dialog-close-button svg {
  fill: #1f2124;
  height: 1em;
  width: 1em
}

.elementor-popup-modal .dialog-widget-content {
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  max-height: 100%;
  max-width: 100%;
  overflow: visible;
  pointer-events: all;
  width: auto
}

.elementor-popup-modal .dialog-message {
  display: flex;
  max-height: 100vh;
  max-width: 100vw;
  overflow: auto;
  padding: 0;
  width: 640px
}

.elementor-popup-modal .elementor {
  width: 100%
}


.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -.0667em
}

.fa-xs {
  font-size: .75em
}

.fa-sm {
  font-size: .875em
}

.fa-1x {
  font-size: 1em
}

.fa-2x {
  font-size: 2em
}

.fa-3x {
  font-size: 3em
}

.fa-4x {
  font-size: 4em
}

.fa-5x {
  font-size: 5em
}

.fa-6x {
  font-size: 6em
}

.fa-7x {
  font-size: 7em
}

.fa-8x {
  font-size: 8em
}

.fa-9x {
  font-size: 9em
}

.fa-10x {
  font-size: 10em
}

.fa-fw {
  text-align: center;
  width: 1.25em
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0
}

.fa-ul>li {
  position: relative
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit
}

.fa-border {
  border: .08em solid #eee;
  border-radius: .1em;
  padding: .2em .25em .15em
}

.fa-pull-left {
  float: left
}

.fa-pull-right {
  float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: .3em
}

.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite
}

.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg)
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%
}

.fa-stack-1x {
  line-height: inherit
}

.fa-stack-2x {
  font-size: 2em
}

.fa-inverse {
  color: #fff
}

.fa-500px:before {
  content: "\f26e"
}

.fa-accessible-icon:before {
  content: "\f368"
}

.fa-accusoft:before {
  content: "\f369"
}

.fa-acquisitions-incorporated:before {
  content: "\f6af"
}

.fa-ad:before {
  content: "\f641"
}

.fa-address-book:before {
  content: "\f2b9"
}

.fa-address-card:before {
  content: "\f2bb"
}

.fa-adjust:before {
  content: "\f042"
}

.fa-adn:before {
  content: "\f170"
}

.fa-adversal:before {
  content: "\f36a"
}

.fa-affiliatetheme:before {
  content: "\f36b"
}

.fa-air-freshener:before {
  content: "\f5d0"
}

.fa-airbnb:before {
  content: "\f834"
}

.fa-algolia:before {
  content: "\f36c"
}

.fa-align-center:before {
  content: "\f037"
}

.fa-align-justify:before {
  content: "\f039"
}

.fa-align-left:before {
  content: "\f036"
}

.fa-align-right:before {
  content: "\f038"
}

.fa-alipay:before {
  content: "\f642"
}

.fa-allergies:before {
  content: "\f461"
}

.fa-amazon:before {
  content: "\f270"
}

.fa-amazon-pay:before {
  content: "\f42c"
}

.fa-ambulance:before {
  content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"
}

.fa-amilia:before {
  content: "\f36d"
}

.fa-anchor:before {
  content: "\f13d"
}

.fa-android:before {
  content: "\f17b"
}

.fa-angellist:before {
  content: "\f209"
}

.fa-angle-double-down:before {
  content: "\f103"
}

.fa-angle-double-left:before {
  content: "\f100"
}

.fa-angle-double-right:before {
  content: "\f101"
}

.fa-angle-double-up:before {
  content: "\f102"
}

.fa-angle-down:before {
  content: "\f107"
}

.fa-angle-left:before {
  content: "\f104"
}

.fa-angle-right:before {
  content: "\f105"
}

.fa-angle-up:before {
  content: "\f106"
}

.fa-angry:before {
  content: "\f556"
}

.fa-angrycreative:before {
  content: "\f36e"
}

.fa-angular:before {
  content: "\f420"
}

.fa-ankh:before {
  content: "\f644"
}

.fa-app-store:before {
  content: "\f36f"
}

.fa-app-store-ios:before {
  content: "\f370"
}

.fa-apper:before {
  content: "\f371"
}

.fa-apple:before {
  content: "\f179"
}

.fa-apple-alt:before {
  content: "\f5d1"
}

.fa-apple-pay:before {
  content: "\f415"
}

.fa-archive:before {
  content: "\f187"
}

.fa-archway:before {
  content: "\f557"
}

.fa-arrow-alt-circle-down:before {
  content: "\f358"
}

.fa-arrow-alt-circle-left:before {
  content: "\f359"
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b"
}

.fa-arrow-circle-down:before {
  content: "\f0ab"
}

.fa-arrow-circle-left:before {
  content: "\f0a8"
}

.fa-arrow-circle-right:before {
  content: "\f0a9"
}

.fa-arrow-circle-up:before {
  content: "\f0aa"
}

.fa-arrow-down:before {
  content: "\f063"
}

.fa-arrow-left:before {
  content: "\f060"
}

.fa-arrow-right:before {
  content: "\f061"
}

.fa-arrow-up:before {
  content: "\f062"
}

.fa-arrows-alt:before {
  content: "\f0b2"
}

.fa-arrows-alt-h:before {
  content: "\f337"
}

.fa-arrows-alt-v:before {
  content: "\f338"
}

.fa-artstation:before {
  content: "\f77a"
}

.fa-assistive-listening-systems:before {
  content: "\f2a2"
}

.fa-asterisk:before {
  content: "\f069"
}

.fa-asymmetrik:before {
  content: "\f372"
}

.fa-at:before {
  content: "\f1fa"
}

.fa-atlas:before {
  content: "\f558"
}

.fa-atlassian:before {
  content: "\f77b"
}

.fa-atom:before {
  content: "\f5d2"
}

.fa-audible:before {
  content: "\f373"
}

.fa-audio-description:before {
  content: "\f29e"
}

.fa-autoprefixer:before {
  content: "\f41c"
}

.fa-avianex:before {
  content: "\f374"
}

.fa-aviato:before {
  content: "\f421"
}

.fa-award:before {
  content: "\f559"
}

.fa-aws:before {
  content: "\f375"
}

.fa-baby:before {
  content: "\f77c"
}

.fa-baby-carriage:before {
  content: "\f77d"
}

.fa-backspace:before {
  content: "\f55a"
}

.fa-backward:before {
  content: "\f04a"
}

.fa-bacon:before {
  content: "\f7e5"
}

.fa-bacteria:before {
  content: "\e059"
}

.fa-bacterium:before {
  content: "\e05a"
}

.fa-bahai:before {
  content: "\f666"
}

.fa-balance-scale:before {
  content: "\f24e"
}

.fa-balance-scale-left:before {
  content: "\f515"
}

.fa-balance-scale-right:before {
  content: "\f516"
}

.fa-ban:before {
  content: "\f05e"
}

.fa-band-aid:before {
  content: "\f462"
}

.fa-bandcamp:before {
  content: "\f2d5"
}

.fa-barcode:before {
  content: "\f02a"
}

.fa-bars:before {
  content: "\f0c9"
}

.fa-baseball-ball:before {
  content: "\f433"
}

.fa-basketball-ball:before {
  content: "\f434"
}

.fa-bath:before {
  content: "\f2cd"
}

.fa-battery-empty:before {
  content: "\f244"
}

.fa-battery-full:before {
  content: "\f240"
}

.fa-battery-half:before {
  content: "\f242"
}

.fa-battery-quarter:before {
  content: "\f243"
}

.fa-battery-three-quarters:before {
  content: "\f241"
}

.fa-battle-net:before {
  content: "\f835"
}

.fa-bed:before {
  content: "\f236"
}

.fa-beer:before {
  content: "\f0fc"
}

.fa-behance:before {
  content: "\f1b4"
}

.fa-behance-square:before {
  content: "\f1b5"
}

.fa-bell:before {
  content: "\f0f3"
}

.fa-bell-slash:before {
  content: "\f1f6"
}

.fa-bezier-curve:before {
  content: "\f55b"
}

.fa-bible:before {
  content: "\f647"
}

.fa-bicycle:before {
  content: "\f206"
}

.fa-biking:before {
  content: "\f84a"
}

.fa-bimobject:before {
  content: "\f378"
}

.fa-binoculars:before {
  content: "\f1e5"
}

.fa-biohazard:before {
  content: "\f780"
}

.fa-birthday-cake:before {
  content: "\f1fd"
}

.fa-bitbucket:before {
  content: "\f171"
}

.fa-bitcoin:before {
  content: "\f379"
}

.fa-bity:before {
  content: "\f37a"
}

.fa-black-tie:before {
  content: "\f27e"
}

.fa-blackberry:before {
  content: "\f37b"
}

.fa-blender:before {
  content: "\f517"
}

.fa-blender-phone:before {
  content: "\f6b6"
}

.fa-blind:before {
  content: "\f29d"
}

.fa-blog:before {
  content: "\f781"
}

.fa-blogger:before {
  content: "\f37c"
}

.fa-blogger-b:before {
  content: "\f37d"
}

.fa-bluetooth:before {
  content: "\f293"
}

.fa-bluetooth-b:before {
  content: "\f294"
}

.fa-bold:before {
  content: "\f032"
}

.fa-bolt:before {
  content: "\f0e7"
}

.fa-bomb:before {
  content: "\f1e2"
}

.fa-bone:before {
  content: "\f5d7"
}

.fa-bong:before {
  content: "\f55c"
}

.fa-book:before {
  content: "\f02d"
}

.fa-book-dead:before {
  content: "\f6b7"
}

.fa-book-medical:before {
  content: "\f7e6"
}

.fa-book-open:before {
  content: "\f518"
}

.fa-book-reader:before {
  content: "\f5da"
}

.fa-bookmark:before {
  content: "\f02e"
}

.fa-bootstrap:before {
  content: "\f836"
}

.fa-border-all:before {
  content: "\f84c"
}

.fa-border-none:before {
  content: "\f850"
}

.fa-border-style:before {
  content: "\f853"
}

.fa-bowling-ball:before {
  content: "\f436"
}

.fa-box:before {
  content: "\f466"
}

.fa-box-open:before {
  content: "\f49e"
}

.fa-box-tissue:before {
  content: "\e05b"
}

.fa-boxes:before {
  content: "\f468"
}

.fa-braille:before {
  content: "\f2a1"
}

.fa-brain:before {
  content: "\f5dc"
}

.fa-bread-slice:before {
  content: "\f7ec"
}

.fa-briefcase:before {
  content: "\f0b1"
}

.fa-briefcase-medical:before {
  content: "\f469"
}

.fa-broadcast-tower:before {
  content: "\f519"
}

.fa-broom:before {
  content: "\f51a"
}

.fa-brush:before {
  content: "\f55d"
}

.fa-btc:before {
  content: "\f15a"
}

.fa-buffer:before {
  content: "\f837"
}

.fa-bug:before {
  content: "\f188"
}

.fa-building:before {
  content: "\f1ad"
}

.fa-bullhorn:before {
  content: "\f0a1"
}

.fa-bullseye:before {
  content: "\f140"
}

.fa-burn:before {
  content: "\f46a"
}

.fa-buromobelexperte:before {
  content: "\f37f"
}

.fa-bus:before {
  content: "\f207"
}

.fa-bus-alt:before {
  content: "\f55e"
}

.fa-business-time:before {
  content: "\f64a"
}

.fa-buy-n-large:before {
  content: "\f8a6"
}

.fa-buysellads:before {
  content: "\f20d"
}

.fa-calculator:before {
  content: "\f1ec"
}

.fa-calendar:before {
  content: "\f133"
}

.fa-calendar-alt:before {
  content: "\f073"
}

.fa-calendar-check:before {
  content: "\f274"
}

.fa-calendar-day:before {
  content: "\f783"
}

.fa-calendar-minus:before {
  content: "\f272"
}

.fa-calendar-plus:before {
  content: "\f271"
}

.fa-calendar-times:before {
  content: "\f273"
}

.fa-calendar-week:before {
  content: "\f784"
}

.fa-camera:before {
  content: "\f030"
}

.fa-camera-retro:before {
  content: "\f083"
}

.fa-campground:before {
  content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
  content: "\f785"
}

.fa-candy-cane:before {
  content: "\f786"
}

.fa-cannabis:before {
  content: "\f55f"
}

.fa-capsules:before {
  content: "\f46b"
}

.fa-car:before {
  content: "\f1b9"
}

.fa-car-alt:before {
  content: "\f5de"
}

.fa-car-battery:before {
  content: "\f5df"
}

.fa-car-crash:before {
  content: "\f5e1"
}

.fa-car-side:before {
  content: "\f5e4"
}

.fa-caravan:before {
  content: "\f8ff"
}

.fa-caret-down:before {
  content: "\f0d7"
}

.fa-caret-left:before {
  content: "\f0d9"
}

.fa-caret-right:before {
  content: "\f0da"
}

.fa-caret-square-down:before {
  content: "\f150"
}

.fa-caret-square-left:before {
  content: "\f191"
}

.fa-caret-square-right:before {
  content: "\f152"
}

.fa-caret-square-up:before {
  content: "\f151"
}

.fa-caret-up:before {
  content: "\f0d8"
}

.fa-carrot:before {
  content: "\f787"
}

.fa-cart-arrow-down:before {
  content: "\f218"
}

.fa-cart-plus:before {
  content: "\f217"
}

.fa-cash-register:before {
  content: "\f788"
}

.fa-cat:before {
  content: "\f6be"
}

.fa-cc-amazon-pay:before {
  content: "\f42d"
}

.fa-cc-amex:before {
  content: "\f1f3"
}

.fa-cc-apple-pay:before {
  content: "\f416"
}

.fa-cc-diners-club:before {
  content: "\f24c"
}

.fa-cc-discover:before {
  content: "\f1f2"
}

.fa-cc-jcb:before {
  content: "\f24b"
}

.fa-cc-mastercard:before {
  content: "\f1f1"
}

.fa-cc-paypal:before {
  content: "\f1f4"
}

.fa-cc-stripe:before {
  content: "\f1f5"
}

.fa-cc-visa:before {
  content: "\f1f0"
}

.fa-centercode:before {
  content: "\f380"
}

.fa-centos:before {
  content: "\f789"
}

.fa-certificate:before {
  content: "\f0a3"
}

.fa-chair:before {
  content: "\f6c0"
}

.fa-chalkboard:before {
  content: "\f51b"
}

.fa-chalkboard-teacher:before {
  content: "\f51c"
}

.fa-charging-station:before {
  content: "\f5e7"
}

.fa-chart-area:before {
  content: "\f1fe"
}

.fa-chart-bar:before {
  content: "\f080"
}

.fa-chart-line:before {
  content: "\f201"
}

.fa-chart-pie:before {
  content: "\f200"
}

.fa-check:before {
  content: "\f00c"
}

.fa-check-circle:before {
  content: "\f058"
}

.fa-check-double:before {
  content: "\f560"
}

.fa-check-square:before {
  content: "\f14a"
}

.fa-cheese:before {
  content: "\f7ef"
}

.fa-chess:before {
  content: "\f439"
}

.fa-chess-bishop:before {
  content: "\f43a"
}

.fa-chess-board:before {
  content: "\f43c"
}

.fa-chess-king:before {
  content: "\f43f"
}

.fa-chess-knight:before {
  content: "\f441"
}

.fa-chess-pawn:before {
  content: "\f443"
}

.fa-chess-queen:before {
  content: "\f445"
}

.fa-chess-rook:before {
  content: "\f447"
}

.fa-chevron-circle-down:before {
  content: "\f13a"
}

.fa-chevron-circle-left:before {
  content: "\f137"
}

.fa-chevron-circle-right:before {
  content: "\f138"
}

.fa-chevron-circle-up:before {
  content: "\f139"
}

.fa-chevron-down:before {
  content: "\f078"
}

.fa-chevron-left:before {
  content: "\f053"
}

.fa-chevron-right:before {
  content: "\f054"
}

.fa-chevron-up:before {
  content: "\f077"
}

.fa-child:before {
  content: "\f1ae"
}

.fa-chrome:before {
  content: "\f268"
}

.fa-chromecast:before {
  content: "\f838"
}

.fa-church:before {
  content: "\f51d"
}

.fa-circle:before {
  content: "\f111"
}

.fa-circle-notch:before {
  content: "\f1ce"
}

.fa-city:before {
  content: "\f64f"
}

.fa-clinic-medical:before {
  content: "\f7f2"
}

.fa-clipboard:before {
  content: "\f328"
}

.fa-clipboard-check:before {
  content: "\f46c"
}

.fa-clipboard-list:before {
  content: "\f46d"
}

.fa-clock:before {
  content: "\f017"
}

.fa-clone:before {
  content: "\f24d"
}

.fa-closed-captioning:before {
  content: "\f20a"
}

.fa-cloud:before {
  content: "\f0c2"
}

.fa-cloud-download-alt:before {
  content: "\f381"
}

.fa-cloud-meatball:before {
  content: "\f73b"
}

.fa-cloud-moon:before {
  content: "\f6c3"
}

.fa-cloud-moon-rain:before {
  content: "\f73c"
}

.fa-cloud-rain:before {
  content: "\f73d"
}

.fa-cloud-showers-heavy:before {
  content: "\f740"
}

.fa-cloud-sun:before {
  content: "\f6c4"
}

.fa-cloud-sun-rain:before {
  content: "\f743"
}

.fa-cloud-upload-alt:before {
  content: "\f382"
}

.fa-cloudflare:before {
  content: "\e07d"
}

.fa-cloudscale:before {
  content: "\f383"
}

.fa-cloudsmith:before {
  content: "\f384"
}

.fa-cloudversify:before {
  content: "\f385"
}

.fa-cocktail:before {
  content: "\f561"
}

.fa-code:before {
  content: "\f121"
}

.fa-code-branch:before {
  content: "\f126"
}

.fa-codepen:before {
  content: "\f1cb"
}

.fa-codiepie:before {
  content: "\f284"
}

.fa-coffee:before {
  content: "\f0f4"
}

.fa-cog:before {
  content: "\f013"
}

.fa-cogs:before {
  content: "\f085"
}

.fa-coins:before {
  content: "\f51e"
}

.fa-columns:before {
  content: "\f0db"
}

.fa-comment:before {
  content: "\f075"
}

.fa-comment-alt:before {
  content: "\f27a"
}

.fa-comment-dollar:before {
  content: "\f651"
}

.fa-comment-dots:before {
  content: "\f4ad"
}

.fa-comment-medical:before {
  content: "\f7f5"
}

.fa-comment-slash:before {
  content: "\f4b3"
}

.fa-comments:before {
  content: "\f086"
}

.fa-comments-dollar:before {
  content: "\f653"
}

.fa-compact-disc:before {
  content: "\f51f"
}

.fa-compass:before {
  content: "\f14e"
}

.fa-compress:before {
  content: "\f066"
}

.fa-compress-alt:before {
  content: "\f422"
}

.fa-compress-arrows-alt:before {
  content: "\f78c"
}

.fa-concierge-bell:before {
  content: "\f562"
}

.fa-confluence:before {
  content: "\f78d"
}

.fa-connectdevelop:before {
  content: "\f20e"
}

.fa-contao:before {
  content: "\f26d"
}

.fa-cookie:before {
  content: "\f563"
}

.fa-cookie-bite:before {
  content: "\f564"
}

.fa-copy:before {
  content: "\f0c5"
}

.fa-copyright:before {
  content: "\f1f9"
}

.fa-cotton-bureau:before {
  content: "\f89e"
}

.fa-couch:before {
  content: "\f4b8"
}

.fa-cpanel:before {
  content: "\f388"
}

.fa-creative-commons:before {
  content: "\f25e"
}

.fa-creative-commons-by:before {
  content: "\f4e7"
}

.fa-creative-commons-nc:before {
  content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"
}

.fa-creative-commons-nd:before {
  content: "\f4eb"
}

.fa-creative-commons-pd:before {
  content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"
}

.fa-creative-commons-remix:before {
  content: "\f4ee"
}

.fa-creative-commons-sa:before {
  content: "\f4ef"
}

.fa-creative-commons-sampling:before {
  content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"
}

.fa-creative-commons-share:before {
  content: "\f4f2"
}

.fa-creative-commons-zero:before {
  content: "\f4f3"
}

.fa-credit-card:before {
  content: "\f09d"
}

.fa-critical-role:before {
  content: "\f6c9"
}

.fa-crop:before {
  content: "\f125"
}

.fa-crop-alt:before {
  content: "\f565"
}

.fa-cross:before {
  content: "\f654"
}

.fa-crosshairs:before {
  content: "\f05b"
}

.fa-crow:before {
  content: "\f520"
}

.fa-crown:before {
  content: "\f521"
}

.fa-crutch:before {
  content: "\f7f7"
}

.fa-css3:before {
  content: "\f13c"
}

.fa-css3-alt:before {
  content: "\f38b"
}

.fa-cube:before {
  content: "\f1b2"
}

.fa-cubes:before {
  content: "\f1b3"
}

.fa-cut:before {
  content: "\f0c4"
}

.fa-cuttlefish:before {
  content: "\f38c"
}

.fa-d-and-d:before {
  content: "\f38d"
}

.fa-d-and-d-beyond:before {
  content: "\f6ca"
}

.fa-dailymotion:before {
  content: "\e052"
}

.fa-dashcube:before {
  content: "\f210"
}

.fa-database:before {
  content: "\f1c0"
}

.fa-deaf:before {
  content: "\f2a4"
}

.fa-deezer:before {
  content: "\e077"
}

.fa-delicious:before {
  content: "\f1a5"
}

.fa-democrat:before {
  content: "\f747"
}

.fa-deploydog:before {
  content: "\f38e"
}

.fa-deskpro:before {
  content: "\f38f"
}

.fa-desktop:before {
  content: "\f108"
}

.fa-dev:before {
  content: "\f6cc"
}

.fa-deviantart:before {
  content: "\f1bd"
}

.fa-dharmachakra:before {
  content: "\f655"
}

.fa-dhl:before {
  content: "\f790"
}

.fa-diagnoses:before {
  content: "\f470"
}

.fa-diaspora:before {
  content: "\f791"
}

.fa-dice:before {
  content: "\f522"
}

.fa-dice-d20:before {
  content: "\f6cf"
}

.fa-dice-d6:before {
  content: "\f6d1"
}

.fa-dice-five:before {
  content: "\f523"
}

.fa-dice-four:before {
  content: "\f524"
}

.fa-dice-one:before {
  content: "\f525"
}

.fa-dice-six:before {
  content: "\f526"
}

.fa-dice-three:before {
  content: "\f527"
}

.fa-dice-two:before {
  content: "\f528"
}

.fa-digg:before {
  content: "\f1a6"
}

.fa-digital-ocean:before {
  content: "\f391"
}

.fa-digital-tachograph:before {
  content: "\f566"
}

.fa-directions:before {
  content: "\f5eb"
}

.fa-discord:before {
  content: "\f392"
}

.fa-discourse:before {
  content: "\f393"
}

.fa-disease:before {
  content: "\f7fa"
}

.fa-divide:before {
  content: "\f529"
}

.fa-dizzy:before {
  content: "\f567"
}

.fa-dna:before {
  content: "\f471"
}

.fa-dochub:before {
  content: "\f394"
}

.fa-docker:before {
  content: "\f395"
}

.fa-dog:before {
  content: "\f6d3"
}

.fa-dollar-sign:before {
  content: "\f155"
}

.fa-dolly:before {
  content: "\f472"
}

.fa-dolly-flatbed:before {
  content: "\f474"
}

.fa-donate:before {
  content: "\f4b9"
}

.fa-door-closed:before {
  content: "\f52a"
}

.fa-door-open:before {
  content: "\f52b"
}

.fa-dot-circle:before {
  content: "\f192"
}

.fa-dove:before {
  content: "\f4ba"
}

.fa-download:before {
  content: "\f019"
}

.fa-draft2digital:before {
  content: "\f396"
}

.fa-drafting-compass:before {
  content: "\f568"
}

.fa-dragon:before {
  content: "\f6d5"
}

.fa-draw-polygon:before {
  content: "\f5ee"
}

.fa-dribbble:before {
  content: "\f17d"
}

.fa-dribbble-square:before {
  content: "\f397"
}

.fa-dropbox:before {
  content: "\f16b"
}

.fa-drum:before {
  content: "\f569"
}

.fa-drum-steelpan:before {
  content: "\f56a"
}

.fa-drumstick-bite:before {
  content: "\f6d7"
}

.fa-drupal:before {
  content: "\f1a9"
}

.fa-dumbbell:before {
  content: "\f44b"
}

.fa-dumpster:before {
  content: "\f793"
}

.fa-dumpster-fire:before {
  content: "\f794"
}

.fa-dungeon:before {
  content: "\f6d9"
}

.fa-dyalog:before {
  content: "\f399"
}

.fa-earlybirds:before {
  content: "\f39a"
}

.fa-ebay:before {
  content: "\f4f4"
}

.fa-edge:before {
  content: "\f282"
}

.fa-edge-legacy:before {
  content: "\e078"
}

.fa-edit:before {
  content: "\f044"
}

.fa-egg:before {
  content: "\f7fb"
}

.fa-eject:before {
  content: "\f052"
}

.fa-elementor:before {
  content: "\f430"
}

.fa-ellipsis-h:before {
  content: "\f141"
}

.fa-ellipsis-v:before {
  content: "\f142"
}

.fa-ello:before {
  content: "\f5f1"
}

.fa-ember:before {
  content: "\f423"
}

.fa-empire:before {
  content: "\f1d1"
}

.fa-envelope:before {
  content: "\f0e0"
}

.fa-envelope-open:before {
  content: "\f2b6"
}

.fa-envelope-open-text:before {
  content: "\f658"
}

.fa-envelope-square:before {
  content: "\f199"
}

.fa-envira:before {
  content: "\f299"
}

.fa-equals:before {
  content: "\f52c"
}

.fa-eraser:before {
  content: "\f12d"
}

.fa-erlang:before {
  content: "\f39d"
}

.fa-ethereum:before {
  content: "\f42e"
}

.fa-ethernet:before {
  content: "\f796"
}

.fa-etsy:before {
  content: "\f2d7"
}

.fa-euro-sign:before {
  content: "\f153"
}

.fa-evernote:before {
  content: "\f839"
}

.fa-exchange-alt:before {
  content: "\f362"
}

.fa-exclamation:before {
  content: "\f12a"
}

.fa-exclamation-circle:before {
  content: "\f06a"
}

.fa-exclamation-triangle:before {
  content: "\f071"
}

.fa-expand:before {
  content: "\f065"
}

.fa-expand-alt:before {
  content: "\f424"
}

.fa-expand-arrows-alt:before {
  content: "\f31e"
}

.fa-expeditedssl:before {
  content: "\f23e"
}

.fa-external-link-alt:before {
  content: "\f35d"
}

.fa-external-link-square-alt:before {
  content: "\f360"
}

.fa-eye:before {
  content: "\f06e"
}

.fa-eye-dropper:before {
  content: "\f1fb"
}

.fa-eye-slash:before {
  content: "\f070"
}

.fa-facebook:before {
  content: "\f09a"
}

.fa-facebook-f:before {
  content: "\f39e"
}

.fa-facebook-messenger:before {
  content: "\f39f"
}

.fa-facebook-square:before {
  content: "\f082"
}

.fa-fan:before {
  content: "\f863"
}

.fa-fantasy-flight-games:before {
  content: "\f6dc"
}

.fa-fast-backward:before {
  content: "\f049"
}

.fa-fast-forward:before {
  content: "\f050"
}

.fa-faucet:before {
  content: "\e005"
}

.fa-fax:before {
  content: "\f1ac"
}

.fa-feather:before {
  content: "\f52d"
}

.fa-feather-alt:before {
  content: "\f56b"
}

.fa-fedex:before {
  content: "\f797"
}

.fa-fedora:before {
  content: "\f798"
}

.fa-female:before {
  content: "\f182"
}

.fa-fighter-jet:before {
  content: "\f0fb"
}

.fa-figma:before {
  content: "\f799"
}

.fa-file:before {
  content: "\f15b"
}

.fa-file-alt:before {
  content: "\f15c"
}

.fa-file-archive:before {
  content: "\f1c6"
}

.fa-file-audio:before {
  content: "\f1c7"
}

.fa-file-code:before {
  content: "\f1c9"
}

.fa-file-contract:before {
  content: "\f56c"
}

.fa-file-csv:before {
  content: "\f6dd"
}

.fa-file-download:before {
  content: "\f56d"
}

.fa-file-excel:before {
  content: "\f1c3"
}

.fa-file-export:before {
  content: "\f56e"
}

.fa-file-image:before {
  content: "\f1c5"
}

.fa-file-import:before {
  content: "\f56f"
}

.fa-file-invoice:before {
  content: "\f570"
}

.fa-file-invoice-dollar:before {
  content: "\f571"
}

.fa-file-medical:before {
  content: "\f477"
}

.fa-file-medical-alt:before {
  content: "\f478"
}

.fa-file-pdf:before {
  content: "\f1c1"
}

.fa-file-powerpoint:before {
  content: "\f1c4"
}

.fa-file-prescription:before {
  content: "\f572"
}

.fa-file-signature:before {
  content: "\f573"
}

.fa-file-upload:before {
  content: "\f574"
}

.fa-file-video:before {
  content: "\f1c8"
}

.fa-file-word:before {
  content: "\f1c2"
}

.fa-fill:before {
  content: "\f575"
}

.fa-fill-drip:before {
  content: "\f576"
}

.fa-film:before {
  content: "\f008"
}

.fa-filter:before {
  content: "\f0b0"
}

.fa-fingerprint:before {
  content: "\f577"
}

.fa-fire:before {
  content: "\f06d"
}

.fa-fire-alt:before {
  content: "\f7e4"
}

.fa-fire-extinguisher:before {
  content: "\f134"
}

.fa-firefox:before {
  content: "\f269"
}

.fa-firefox-browser:before {
  content: "\e007"
}

.fa-first-aid:before {
  content: "\f479"
}

.fa-first-order:before {
  content: "\f2b0"
}

.fa-first-order-alt:before {
  content: "\f50a"
}

.fa-firstdraft:before {
  content: "\f3a1"
}

.fa-fish:before {
  content: "\f578"
}

.fa-fist-raised:before {
  content: "\f6de"
}

.fa-flag:before {
  content: "\f024"
}

.fa-flag-checkered:before {
  content: "\f11e"
}

.fa-flag-usa:before {
  content: "\f74d"
}

.fa-flask:before {
  content: "\f0c3"
}

.fa-flickr:before {
  content: "\f16e"
}

.fa-flipboard:before {
  content: "\f44d"
}

.fa-flushed:before {
  content: "\f579"
}

.fa-fly:before {
  content: "\f417"
}

.fa-folder:before {
  content: "\f07b"
}

.fa-folder-minus:before {
  content: "\f65d"
}

.fa-folder-open:before {
  content: "\f07c"
}

.fa-folder-plus:before {
  content: "\f65e"
}

.fa-font:before {
  content: "\f031"
}

.fa-font-awesome:before {
  content: "\f2b4"
}

.fa-font-awesome-alt:before {
  content: "\f35c"
}

.fa-font-awesome-flag:before {
  content: "\f425"
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6"
}

.fa-fonticons:before {
  content: "\f280"
}

.fa-fonticons-fi:before {
  content: "\f3a2"
}

.fa-football-ball:before {
  content: "\f44e"
}

.fa-fort-awesome:before {
  content: "\f286"
}

.fa-fort-awesome-alt:before {
  content: "\f3a3"
}

.fa-forumbee:before {
  content: "\f211"
}

.fa-forward:before {
  content: "\f04e"
}

.fa-foursquare:before {
  content: "\f180"
}

.fa-free-code-camp:before {
  content: "\f2c5"
}

.fa-freebsd:before {
  content: "\f3a4"
}

.fa-frog:before {
  content: "\f52e"
}

.fa-frown:before {
  content: "\f119"
}

.fa-frown-open:before {
  content: "\f57a"
}

.fa-fulcrum:before {
  content: "\f50b"
}

.fa-funnel-dollar:before {
  content: "\f662"
}

.fa-futbol:before {
  content: "\f1e3"
}

.fa-galactic-republic:before {
  content: "\f50c"
}

.fa-galactic-senate:before {
  content: "\f50d"
}

.fa-gamepad:before {
  content: "\f11b"
}

.fa-gas-pump:before {
  content: "\f52f"
}

.fa-gavel:before {
  content: "\f0e3"
}

.fa-gem:before {
  content: "\f3a5"
}

.fa-genderless:before {
  content: "\f22d"
}

.fa-get-pocket:before {
  content: "\f265"
}

.fa-gg:before {
  content: "\f260"
}

.fa-gg-circle:before {
  content: "\f261"
}

.fa-ghost:before {
  content: "\f6e2"
}

.fa-gift:before {
  content: "\f06b"
}

.fa-gifts:before {
  content: "\f79c"
}

.fa-git:before {
  content: "\f1d3"
}

.fa-git-alt:before {
  content: "\f841"
}

.fa-git-square:before {
  content: "\f1d2"
}

.fa-github:before {
  content: "\f09b"
}

.fa-github-alt:before {
  content: "\f113"
}

.fa-github-square:before {
  content: "\f092"
}

.fa-gitkraken:before {
  content: "\f3a6"
}

.fa-gitlab:before {
  content: "\f296"
}

.fa-gitter:before {
  content: "\f426"
}

.fa-glass-cheers:before {
  content: "\f79f"
}

.fa-glass-martini:before {
  content: "\f000"
}

.fa-glass-martini-alt:before {
  content: "\f57b"
}

.fa-glass-whiskey:before {
  content: "\f7a0"
}

.fa-glasses:before {
  content: "\f530"
}

.fa-glide:before {
  content: "\f2a5"
}

.fa-glide-g:before {
  content: "\f2a6"
}

.fa-globe:before {
  content: "\f0ac"
}

.fa-globe-africa:before {
  content: "\f57c"
}

.fa-globe-americas:before {
  content: "\f57d"
}

.fa-globe-asia:before {
  content: "\f57e"
}

.fa-globe-europe:before {
  content: "\f7a2"
}

.fa-gofore:before {
  content: "\f3a7"
}

.fa-golf-ball:before {
  content: "\f450"
}

.fa-goodreads:before {
  content: "\f3a8"
}

.fa-goodreads-g:before {
  content: "\f3a9"
}

.fa-google:before {
  content: "\f1a0"
}

.fa-google-drive:before {
  content: "\f3aa"
}

.fa-google-pay:before {
  content: "\e079"
}

.fa-google-play:before {
  content: "\f3ab"
}

.fa-google-plus:before {
  content: "\f2b3"
}

.fa-google-plus-g:before {
  content: "\f0d5"
}

.fa-google-plus-square:before {
  content: "\f0d4"
}

.fa-google-wallet:before {
  content: "\f1ee"
}

.fa-gopuram:before {
  content: "\f664"
}

.fa-graduation-cap:before {
  content: "\f19d"
}

.fa-gratipay:before {
  content: "\f184"
}

.fa-grav:before {
  content: "\f2d6"
}

.fa-greater-than:before {
  content: "\f531"
}

.fa-greater-than-equal:before {
  content: "\f532"
}

.fa-grimace:before {
  content: "\f57f"
}

.fa-grin:before {
  content: "\f580"
}

.fa-grin-alt:before {
  content: "\f581"
}

.fa-grin-beam:before {
  content: "\f582"
}

.fa-grin-beam-sweat:before {
  content: "\f583"
}

.fa-grin-hearts:before {
  content: "\f584"
}

.fa-grin-squint:before {
  content: "\f585"
}

.fa-grin-squint-tears:before {
  content: "\f586"
}

.fa-grin-stars:before {
  content: "\f587"
}

.fa-grin-tears:before {
  content: "\f588"
}

.fa-grin-tongue:before {
  content: "\f589"
}

.fa-grin-tongue-squint:before {
  content: "\f58a"
}

.fa-grin-tongue-wink:before {
  content: "\f58b"
}

.fa-grin-wink:before {
  content: "\f58c"
}

.fa-grip-horizontal:before {
  content: "\f58d"
}

.fa-grip-lines:before {
  content: "\f7a4"
}

.fa-grip-lines-vertical:before {
  content: "\f7a5"
}

.fa-grip-vertical:before {
  content: "\f58e"
}

.fa-gripfire:before {
  content: "\f3ac"
}

.fa-grunt:before {
  content: "\f3ad"
}

.fa-guilded:before {
  content: "\e07e"
}

.fa-guitar:before {
  content: "\f7a6"
}

.fa-gulp:before {
  content: "\f3ae"
}

.fa-h-square:before {
  content: "\f0fd"
}

.fa-hacker-news:before {
  content: "\f1d4"
}

.fa-hacker-news-square:before {
  content: "\f3af"
}

.fa-hackerrank:before {
  content: "\f5f7"
}

.fa-hamburger:before {
  content: "\f805"
}

.fa-hammer:before {
  content: "\f6e3"
}

.fa-hamsa:before {
  content: "\f665"
}

.fa-hand-holding:before {
  content: "\f4bd"
}

.fa-hand-holding-heart:before {
  content: "\f4be"
}

.fa-hand-holding-medical:before {
  content: "\e05c"
}

.fa-hand-holding-usd:before {
  content: "\f4c0"
}

.fa-hand-holding-water:before {
  content: "\f4c1"
}

.fa-hand-lizard:before {
  content: "\f258"
}

.fa-hand-middle-finger:before {
  content: "\f806"
}

.fa-hand-paper:before {
  content: "\f256"
}

.fa-hand-peace:before {
  content: "\f25b"
}

.fa-hand-point-down:before {
  content: "\f0a7"
}

.fa-hand-point-left:before {
  content: "\f0a5"
}

.fa-hand-point-right:before {
  content: "\f0a4"
}

.fa-hand-point-up:before {
  content: "\f0a6"
}

.fa-hand-pointer:before {
  content: "\f25a"
}

.fa-hand-rock:before {
  content: "\f255"
}

.fa-hand-scissors:before {
  content: "\f257"
}

.fa-hand-sparkles:before {
  content: "\e05d"
}

.fa-hand-spock:before {
  content: "\f259"
}

.fa-hands:before {
  content: "\f4c2"
}

.fa-hands-helping:before {
  content: "\f4c4"
}

.fa-hands-wash:before {
  content: "\e05e"
}

.fa-handshake:before {
  content: "\f2b5"
}

.fa-handshake-alt-slash:before {
  content: "\e05f"
}

.fa-handshake-slash:before {
  content: "\e060"
}

.fa-hanukiah:before {
  content: "\f6e6"
}

.fa-hard-hat:before {
  content: "\f807"
}

.fa-hashtag:before {
  content: "\f292"
}

.fa-hat-cowboy:before {
  content: "\f8c0"
}

.fa-hat-cowboy-side:before {
  content: "\f8c1"
}

.fa-hat-wizard:before {
  content: "\f6e8"
}

.fa-hdd:before {
  content: "\f0a0"
}

.fa-head-side-cough:before {
  content: "\e061"
}

.fa-head-side-cough-slash:before {
  content: "\e062"
}

.fa-head-side-mask:before {
  content: "\e063"
}

.fa-head-side-virus:before {
  content: "\e064"
}

.fa-heading:before {
  content: "\f1dc"
}

.fa-headphones:before {
  content: "\f025"
}

.fa-headphones-alt:before {
  content: "\f58f"
}

.fa-headset:before {
  content: "\f590"
}

.fa-heart:before {
  content: "\f004"
}

.fa-heart-broken:before {
  content: "\f7a9"
}

.fa-heartbeat:before {
  content: "\f21e"
}

.fa-helicopter:before {
  content: "\f533"
}

.fa-highlighter:before {
  content: "\f591"
}

.fa-hiking:before {
  content: "\f6ec"
}

.fa-hippo:before {
  content: "\f6ed"
}

.fa-hips:before {
  content: "\f452"
}

.fa-hire-a-helper:before {
  content: "\f3b0"
}

.fa-history:before {
  content: "\f1da"
}

.fa-hive:before {
  content: "\e07f"
}

.fa-hockey-puck:before {
  content: "\f453"
}

.fa-holly-berry:before {
  content: "\f7aa"
}

.fa-home:before {
  content: "\f015"
}

.fa-hooli:before {
  content: "\f427"
}

.fa-hornbill:before {
  content: "\f592"
}

.fa-horse:before {
  content: "\f6f0"
}

.fa-horse-head:before {
  content: "\f7ab"
}

.fa-hospital:before {
  content: "\f0f8"
}

.fa-hospital-alt:before {
  content: "\f47d"
}

.fa-hospital-symbol:before {
  content: "\f47e"
}

.fa-hospital-user:before {
  content: "\f80d"
}

.fa-hot-tub:before {
  content: "\f593"
}

.fa-hotdog:before {
  content: "\f80f"
}

.fa-hotel:before {
  content: "\f594"
}

.fa-hotjar:before {
  content: "\f3b1"
}

.fa-hourglass:before {
  content: "\f254"
}

.fa-hourglass-end:before {
  content: "\f253"
}

.fa-hourglass-half:before {
  content: "\f252"
}

.fa-hourglass-start:before {
  content: "\f251"
}

.fa-house-damage:before {
  content: "\f6f1"
}

.fa-house-user:before {
  content: "\e065"
}

.fa-houzz:before {
  content: "\f27c"
}

.fa-hryvnia:before {
  content: "\f6f2"
}

.fa-html5:before {
  content: "\f13b"
}

.fa-hubspot:before {
  content: "\f3b2"
}

.fa-i-cursor:before {
  content: "\f246"
}

.fa-ice-cream:before {
  content: "\f810"
}

.fa-icicles:before {
  content: "\f7ad"
}

.fa-icons:before {
  content: "\f86d"
}

.fa-id-badge:before {
  content: "\f2c1"
}

.fa-id-card:before {
  content: "\f2c2"
}

.fa-id-card-alt:before {
  content: "\f47f"
}

.fa-ideal:before {
  content: "\e013"
}

.fa-igloo:before {
  content: "\f7ae"
}

.fa-image:before {
  content: "\f03e"
}

.fa-images:before {
  content: "\f302"
}

.fa-imdb:before {
  content: "\f2d8"
}

.fa-inbox:before {
  content: "\f01c"
}

.fa-indent:before {
  content: "\f03c"
}

.fa-industry:before {
  content: "\f275"
}

.fa-infinity:before {
  content: "\f534"
}

.fa-info:before {
  content: "\f129"
}

.fa-info-circle:before {
  content: "\f05a"
}

.fa-innosoft:before {
  content: "\e080"
}

.fa-instagram:before {
  content: "\f16d"
}

.fa-instagram-square:before {
  content: "\e055"
}

.fa-instalod:before {
  content: "\e081"
}

.fa-intercom:before {
  content: "\f7af"
}

.fa-internet-explorer:before {
  content: "\f26b"
}

.fa-invision:before {
  content: "\f7b0"
}

.fa-ioxhost:before {
  content: "\f208"
}

.fa-italic:before {
  content: "\f033"
}

.fa-itch-io:before {
  content: "\f83a"
}

.fa-itunes:before {
  content: "\f3b4"
}

.fa-itunes-note:before {
  content: "\f3b5"
}

.fa-java:before {
  content: "\f4e4"
}

.fa-jedi:before {
  content: "\f669"
}

.fa-jedi-order:before {
  content: "\f50e"
}

.fa-jenkins:before {
  content: "\f3b6"
}

.fa-jira:before {
  content: "\f7b1"
}

.fa-joget:before {
  content: "\f3b7"
}

.fa-joint:before {
  content: "\f595"
}

.fa-joomla:before {
  content: "\f1aa"
}

.fa-journal-whills:before {
  content: "\f66a"
}

.fa-js:before {
  content: "\f3b8"
}

.fa-js-square:before {
  content: "\f3b9"
}

.fa-jsfiddle:before {
  content: "\f1cc"
}

.fa-kaaba:before {
  content: "\f66b"
}

.fa-kaggle:before {
  content: "\f5fa"
}

.fa-key:before {
  content: "\f084"
}

.fa-keybase:before {
  content: "\f4f5"
}

.fa-keyboard:before {
  content: "\f11c"
}

.fa-keycdn:before {
  content: "\f3ba"
}

.fa-khanda:before {
  content: "\f66d"
}

.fa-kickstarter:before {
  content: "\f3bb"
}

.fa-kickstarter-k:before {
  content: "\f3bc"
}

.fa-kiss:before {
  content: "\f596"
}

.fa-kiss-beam:before {
  content: "\f597"
}

.fa-kiss-wink-heart:before {
  content: "\f598"
}

.fa-kiwi-bird:before {
  content: "\f535"
}

.fa-korvue:before {
  content: "\f42f"
}

.fa-landmark:before {
  content: "\f66f"
}

.fa-language:before {
  content: "\f1ab"
}

.fa-laptop:before {
  content: "\f109"
}

.fa-laptop-code:before {
  content: "\f5fc"
}

.fa-laptop-house:before {
  content: "\e066"
}

.fa-laptop-medical:before {
  content: "\f812"
}

.fa-laravel:before {
  content: "\f3bd"
}

.fa-lastfm:before {
  content: "\f202"
}

.fa-lastfm-square:before {
  content: "\f203"
}

.fa-laugh:before {
  content: "\f599"
}

.fa-laugh-beam:before {
  content: "\f59a"
}

.fa-laugh-squint:before {
  content: "\f59b"
}

.fa-laugh-wink:before {
  content: "\f59c"
}

.fa-layer-group:before {
  content: "\f5fd"
}

.fa-leaf:before {
  content: "\f06c"
}

.fa-leanpub:before {
  content: "\f212"
}

.fa-lemon:before {
  content: "\f094"
}

.fa-less:before {
  content: "\f41d"
}

.fa-less-than:before {
  content: "\f536"
}

.fa-less-than-equal:before {
  content: "\f537"
}

.fa-level-down-alt:before {
  content: "\f3be"
}

.fa-level-up-alt:before {
  content: "\f3bf"
}

.fa-life-ring:before {
  content: "\f1cd"
}

.fa-lightbulb:before {
  content: "\f0eb"
}

.fa-line:before {
  content: "\f3c0"
}

.fa-link:before {
  content: "\f0c1"
}

.fa-linkedin:before {
  content: "\f08c"
}

.fa-linkedin-in:before {
  content: "\f0e1"
}

.fa-linode:before {
  content: "\f2b8"
}

.fa-linux:before {
  content: "\f17c"
}

.fa-lira-sign:before {
  content: "\f195"
}

.fa-list:before {
  content: "\f03a"
}

.fa-list-alt:before {
  content: "\f022"
}

.fa-list-ol:before {
  content: "\f0cb"
}

.fa-list-ul:before {
  content: "\f0ca"
}

.fa-location-arrow:before {
  content: "\f124"
}

.fa-lock:before {
  content: "\f023"
}

.fa-lock-open:before {
  content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
  content: "\f309"
}

.fa-long-arrow-alt-left:before {
  content: "\f30a"
}

.fa-long-arrow-alt-right:before {
  content: "\f30b"
}

.fa-long-arrow-alt-up:before {
  content: "\f30c"
}

.fa-low-vision:before {
  content: "\f2a8"
}

.fa-luggage-cart:before {
  content: "\f59d"
}

.fa-lungs:before {
  content: "\f604"
}

.fa-lungs-virus:before {
  content: "\e067"
}

.fa-lyft:before {
  content: "\f3c3"
}

.fa-magento:before {
  content: "\f3c4"
}

.fa-magic:before {
  content: "\f0d0"
}

.fa-magnet:before {
  content: "\f076"
}

.fa-mail-bulk:before {
  content: "\f674"
}

.fa-mailchimp:before {
  content: "\f59e"
}

.fa-male:before {
  content: "\f183"
}

.fa-mandalorian:before {
  content: "\f50f"
}

.fa-map:before {
  content: "\f279"
}

.fa-map-marked:before {
  content: "\f59f"
}

.fa-map-marked-alt:before {
  content: "\f5a0"
}

.fa-map-marker:before {
  content: "\f041"
}

.fa-map-marker-alt:before {
  content: "\f3c5"
}

.fa-map-pin:before {
  content: "\f276"
}

.fa-map-signs:before {
  content: "\f277"
}

.fa-markdown:before {
  content: "\f60f"
}

.fa-marker:before {
  content: "\f5a1"
}

.fa-mars:before {
  content: "\f222"
}

.fa-mars-double:before {
  content: "\f227"
}

.fa-mars-stroke:before {
  content: "\f229"
}

.fa-mars-stroke-h:before {
  content: "\f22b"
}

.fa-mars-stroke-v:before {
  content: "\f22a"
}

.fa-mask:before {
  content: "\f6fa"
}

.fa-mastodon:before {
  content: "\f4f6"
}

.fa-maxcdn:before {
  content: "\f136"
}

.fa-mdb:before {
  content: "\f8ca"
}

.fa-medal:before {
  content: "\f5a2"
}

.fa-medapps:before {
  content: "\f3c6"
}

.fa-medium:before {
  content: "\f23a"
}

.fa-medium-m:before {
  content: "\f3c7"
}

.fa-medkit:before {
  content: "\f0fa"
}

.fa-medrt:before {
  content: "\f3c8"
}

.fa-meetup:before {
  content: "\f2e0"
}

.fa-megaport:before {
  content: "\f5a3"
}

.fa-meh:before {
  content: "\f11a"
}

.fa-meh-blank:before {
  content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5"
}

.fa-memory:before {
  content: "\f538"
}

.fa-mendeley:before {
  content: "\f7b3"
}

.fa-menorah:before {
  content: "\f676"
}

.fa-mercury:before {
  content: "\f223"
}

.fa-meteor:before {
  content: "\f753"
}

.fa-microblog:before {
  content: "\e01a"
}

.fa-microchip:before {
  content: "\f2db"
}

.fa-microphone:before {
  content: "\f130"
}

.fa-microphone-alt:before {
  content: "\f3c9"
}

.fa-microphone-alt-slash:before {
  content: "\f539"
}

.fa-microphone-slash:before {
  content: "\f131"
}

.fa-microscope:before {
  content: "\f610"
}

.fa-microsoft:before {
  content: "\f3ca"
}

.fa-minus:before {
  content: "\f068"
}

.fa-minus-circle:before {
  content: "\f056"
}

.fa-minus-square:before {
  content: "\f146"
}

.fa-mitten:before {
  content: "\f7b5"
}

.fa-mix:before {
  content: "\f3cb"
}

.fa-mixcloud:before {
  content: "\f289"
}

.fa-mixer:before {
  content: "\e056"
}

.fa-mizuni:before {
  content: "\f3cc"
}

.fa-mobile:before {
  content: "\f10b"
}

.fa-mobile-alt:before {
  content: "\f3cd"
}

.fa-modx:before {
  content: "\f285"
}

.fa-monero:before {
  content: "\f3d0"
}

.fa-money-bill:before {
  content: "\f0d6"
}

.fa-money-bill-alt:before {
  content: "\f3d1"
}

.fa-money-bill-wave:before {
  content: "\f53a"
}

.fa-money-bill-wave-alt:before {
  content: "\f53b"
}

.fa-money-check:before {
  content: "\f53c"
}

.fa-money-check-alt:before {
  content: "\f53d"
}

.fa-monument:before {
  content: "\f5a6"
}

.fa-moon:before {
  content: "\f186"
}

.fa-mortar-pestle:before {
  content: "\f5a7"
}

.fa-mosque:before {
  content: "\f678"
}

.fa-motorcycle:before {
  content: "\f21c"
}

.fa-mountain:before {
  content: "\f6fc"
}

.fa-mouse:before {
  content: "\f8cc"
}

.fa-mouse-pointer:before {
  content: "\f245"
}

.fa-mug-hot:before {
  content: "\f7b6"
}

.fa-music:before {
  content: "\f001"
}

.fa-napster:before {
  content: "\f3d2"
}

.fa-neos:before {
  content: "\f612"
}

.fa-network-wired:before {
  content: "\f6ff"
}

.fa-neuter:before {
  content: "\f22c"
}

.fa-newspaper:before {
  content: "\f1ea"
}

.fa-nimblr:before {
  content: "\f5a8"
}

.fa-node:before {
  content: "\f419"
}

.fa-node-js:before {
  content: "\f3d3"
}

.fa-not-equal:before {
  content: "\f53e"
}

.fa-notes-medical:before {
  content: "\f481"
}

.fa-npm:before {
  content: "\f3d4"
}

.fa-ns8:before {
  content: "\f3d5"
}

.fa-nutritionix:before {
  content: "\f3d6"
}

.fa-object-group:before {
  content: "\f247"
}

.fa-object-ungroup:before {
  content: "\f248"
}

.fa-octopus-deploy:before {
  content: "\e082"
}

.fa-odnoklassniki:before {
  content: "\f263"
}

.fa-odnoklassniki-square:before {
  content: "\f264"
}

.fa-oil-can:before {
  content: "\f613"
}

.fa-old-republic:before {
  content: "\f510"
}

.fa-om:before {
  content: "\f679"
}

.fa-opencart:before {
  content: "\f23d"
}

.fa-openid:before {
  content: "\f19b"
}

.fa-opera:before {
  content: "\f26a"
}

.fa-optin-monster:before {
  content: "\f23c"
}

.fa-orcid:before {
  content: "\f8d2"
}

.fa-osi:before {
  content: "\f41a"
}

.fa-otter:before {
  content: "\f700"
}

.fa-outdent:before {
  content: "\f03b"
}

.fa-page4:before {
  content: "\f3d7"
}

.fa-pagelines:before {
  content: "\f18c"
}

.fa-pager:before {
  content: "\f815"
}

.fa-paint-brush:before {
  content: "\f1fc"
}

.fa-paint-roller:before {
  content: "\f5aa"
}

.fa-palette:before {
  content: "\f53f"
}

.fa-palfed:before {
  content: "\f3d8"
}

.fa-pallet:before {
  content: "\f482"
}

.fa-paper-plane:before {
  content: "\f1d8"
}

.fa-paperclip:before {
  content: "\f0c6"
}

.fa-parachute-box:before {
  content: "\f4cd"
}

.fa-paragraph:before {
  content: "\f1dd"
}

.fa-parking:before {
  content: "\f540"
}

.fa-passport:before {
  content: "\f5ab"
}

.fa-pastafarianism:before {
  content: "\f67b"
}

.fa-paste:before {
  content: "\f0ea"
}

.fa-patreon:before {
  content: "\f3d9"
}

.fa-pause:before {
  content: "\f04c"
}

.fa-pause-circle:before {
  content: "\f28b"
}

.fa-paw:before {
  content: "\f1b0"
}

.fa-paypal:before {
  content: "\f1ed"
}

.fa-peace:before {
  content: "\f67c"
}

.fa-pen:before {
  content: "\f304"
}

.fa-pen-alt:before {
  content: "\f305"
}

.fa-pen-fancy:before {
  content: "\f5ac"
}

.fa-pen-nib:before {
  content: "\f5ad"
}

.fa-pen-square:before {
  content: "\f14b"
}

.fa-pencil-alt:before {
  content: "\f303"
}

.fa-pencil-ruler:before {
  content: "\f5ae"
}

.fa-penny-arcade:before {
  content: "\f704"
}

.fa-people-arrows:before {
  content: "\e068"
}

.fa-people-carry:before {
  content: "\f4ce"
}

.fa-pepper-hot:before {
  content: "\f816"
}

.fa-perbyte:before {
  content: "\e083"
}

.fa-percent:before {
  content: "\f295"
}

.fa-percentage:before {
  content: "\f541"
}

.fa-periscope:before {
  content: "\f3da"
}

.fa-person-booth:before {
  content: "\f756"
}

.fa-phabricator:before {
  content: "\f3db"
}

.fa-phoenix-framework:before {
  content: "\f3dc"
}

.fa-phoenix-squadron:before {
  content: "\f511"
}

.fa-phone:before {
  content: "\f095"
}

.fa-phone-alt:before {
  content: "\f879"
}

.fa-phone-slash:before {
  content: "\f3dd"
}

.fa-phone-square:before {
  content: "\f098"
}

.fa-phone-square-alt:before {
  content: "\f87b"
}

.fa-phone-volume:before {
  content: "\f2a0"
}

.fa-photo-video:before {
  content: "\f87c"
}

.fa-php:before {
  content: "\f457"
}

.fa-pied-piper:before {
  content: "\f2ae"
}

.fa-pied-piper-alt:before {
  content: "\f1a8"
}

.fa-pied-piper-hat:before {
  content: "\f4e5"
}

.fa-pied-piper-pp:before {
  content: "\f1a7"
}

.fa-pied-piper-square:before {
  content: "\e01e"
}

.fa-piggy-bank:before {
  content: "\f4d3"
}

.fa-pills:before {
  content: "\f484"
}

.fa-pinterest:before {
  content: "\f0d2"
}

.fa-pinterest-p:before {
  content: "\f231"
}

.fa-pinterest-square:before {
  content: "\f0d3"
}

.fa-pizza-slice:before {
  content: "\f818"
}

.fa-place-of-worship:before {
  content: "\f67f"
}

.fa-plane:before {
  content: "\f072"
}

.fa-plane-arrival:before {
  content: "\f5af"
}

.fa-plane-departure:before {
  content: "\f5b0"
}

.fa-plane-slash:before {
  content: "\e069"
}

.fa-play:before {
  content: "\f04b"
}

.fa-play-circle:before {
  content: "\f144"
}

.fa-playstation:before {
  content: "\f3df"
}

.fa-plug:before {
  content: "\f1e6"
}

.fa-plus:before {
  content: "\f067"
}

.fa-plus-circle:before {
  content: "\f055"
}

.fa-plus-square:before {
  content: "\f0fe"
}

.fa-podcast:before {
  content: "\f2ce"
}

.fa-poll:before {
  content: "\f681"
}

.fa-poll-h:before {
  content: "\f682"
}

.fa-poo:before {
  content: "\f2fe"
}

.fa-poo-storm:before {
  content: "\f75a"
}

.fa-poop:before {
  content: "\f619"
}

.fa-portrait:before {
  content: "\f3e0"
}

.fa-pound-sign:before {
  content: "\f154"
}

.fa-power-off:before {
  content: "\f011"
}

.fa-pray:before {
  content: "\f683"
}

.fa-praying-hands:before {
  content: "\f684"
}

.fa-prescription:before {
  content: "\f5b1"
}

.fa-prescription-bottle:before {
  content: "\f485"
}

.fa-prescription-bottle-alt:before {
  content: "\f486"
}

.fa-print:before {
  content: "\f02f"
}

.fa-procedures:before {
  content: "\f487"
}

.fa-product-hunt:before {
  content: "\f288"
}

.fa-project-diagram:before {
  content: "\f542"
}

.fa-pump-medical:before {
  content: "\e06a"
}

.fa-pump-soap:before {
  content: "\e06b"
}

.fa-pushed:before {
  content: "\f3e1"
}

.fa-puzzle-piece:before {
  content: "\f12e"
}

.fa-python:before {
  content: "\f3e2"
}

.fa-qq:before {
  content: "\f1d6"
}

.fa-qrcode:before {
  content: "\f029"
}

.fa-question:before {
  content: "\f128"
}

.fa-question-circle:before {
  content: "\f059"
}

.fa-quidditch:before {
  content: "\f458"
}

.fa-quinscape:before {
  content: "\f459"
}

.fa-quora:before {
  content: "\f2c4"
}

.fa-quote-left:before {
  content: "\f10d"
}

.fa-quote-right:before {
  content: "\f10e"
}

.fa-quran:before {
  content: "\f687"
}

.fa-r-project:before {
  content: "\f4f7"
}

.fa-radiation:before {
  content: "\f7b9"
}

.fa-radiation-alt:before {
  content: "\f7ba"
}

.fa-rainbow:before {
  content: "\f75b"
}

.fa-random:before {
  content: "\f074"
}

.fa-raspberry-pi:before {
  content: "\f7bb"
}

.fa-ravelry:before {
  content: "\f2d9"
}

.fa-react:before {
  content: "\f41b"
}

.fa-reacteurope:before {
  content: "\f75d"
}

.fa-readme:before {
  content: "\f4d5"
}

.fa-rebel:before {
  content: "\f1d0"
}

.fa-receipt:before {
  content: "\f543"
}

.fa-record-vinyl:before {
  content: "\f8d9"
}

.fa-recycle:before {
  content: "\f1b8"
}

.fa-red-river:before {
  content: "\f3e3"
}

.fa-reddit:before {
  content: "\f1a1"
}

.fa-reddit-alien:before {
  content: "\f281"
}

.fa-reddit-square:before {
  content: "\f1a2"
}

.fa-redhat:before {
  content: "\f7bc"
}

.fa-redo:before {
  content: "\f01e"
}

.fa-redo-alt:before {
  content: "\f2f9"
}

.fa-registered:before {
  content: "\f25d"
}

.fa-remove-format:before {
  content: "\f87d"
}

.fa-renren:before {
  content: "\f18b"
}

.fa-reply:before {
  content: "\f3e5"
}

.fa-reply-all:before {
  content: "\f122"
}

.fa-replyd:before {
  content: "\f3e6"
}

.fa-republican:before {
  content: "\f75e"
}

.fa-researchgate:before {
  content: "\f4f8"
}

.fa-resolving:before {
  content: "\f3e7"
}

.fa-restroom:before {
  content: "\f7bd"
}

.fa-retweet:before {
  content: "\f079"
}

.fa-rev:before {
  content: "\f5b2"
}

.fa-ribbon:before {
  content: "\f4d6"
}

.fa-ring:before {
  content: "\f70b"
}

.fa-road:before {
  content: "\f018"
}

.fa-robot:before {
  content: "\f544"
}

.fa-rocket:before {
  content: "\f135"
}

.fa-rocketchat:before {
  content: "\f3e8"
}

.fa-rockrms:before {
  content: "\f3e9"
}

.fa-route:before {
  content: "\f4d7"
}

.fa-rss:before {
  content: "\f09e"
}

.fa-rss-square:before {
  content: "\f143"
}

.fa-ruble-sign:before {
  content: "\f158"
}

.fa-ruler:before {
  content: "\f545"
}

.fa-ruler-combined:before {
  content: "\f546"
}

.fa-ruler-horizontal:before {
  content: "\f547"
}

.fa-ruler-vertical:before {
  content: "\f548"
}

.fa-running:before {
  content: "\f70c"
}

.fa-rupee-sign:before {
  content: "\f156"
}

.fa-rust:before {
  content: "\e07a"
}

.fa-sad-cry:before {
  content: "\f5b3"
}

.fa-sad-tear:before {
  content: "\f5b4"
}

.fa-safari:before {
  content: "\f267"
}

.fa-salesforce:before {
  content: "\f83b"
}

.fa-sass:before {
  content: "\f41e"
}

.fa-satellite:before {
  content: "\f7bf"
}

.fa-satellite-dish:before {
  content: "\f7c0"
}

.fa-save:before {
  content: "\f0c7"
}

.fa-schlix:before {
  content: "\f3ea"
}

.fa-school:before {
  content: "\f549"
}

.fa-screwdriver:before {
  content: "\f54a"
}

.fa-scribd:before {
  content: "\f28a"
}

.fa-scroll:before {
  content: "\f70e"
}

.fa-sd-card:before {
  content: "\f7c2"
}

.fa-search:before {
  content: "\f002"
}

.fa-search-dollar:before {
  content: "\f688"
}

.fa-search-location:before {
  content: "\f689"
}

.fa-search-minus:before {
  content: "\f010"
}

.fa-search-plus:before {
  content: "\f00e"
}

.fa-searchengin:before {
  content: "\f3eb"
}

.fa-seedling:before {
  content: "\f4d8"
}

.fa-sellcast:before {
  content: "\f2da"
}

.fa-sellsy:before {
  content: "\f213"
}

.fa-server:before {
  content: "\f233"
}

.fa-servicestack:before {
  content: "\f3ec"
}

.fa-shapes:before {
  content: "\f61f"
}

.fa-share:before {
  content: "\f064"
}

.fa-share-alt:before {
  content: "\f1e0"
}

.fa-share-alt-square:before {
  content: "\f1e1"
}

.fa-share-square:before {
  content: "\f14d"
}

.fa-shekel-sign:before {
  content: "\f20b"
}

.fa-shield-alt:before {
  content: "\f3ed"
}

.fa-shield-virus:before {
  content: "\e06c"
}

.fa-ship:before {
  content: "\f21a"
}

.fa-shipping-fast:before {
  content: "\f48b"
}

.fa-shirtsinbulk:before {
  content: "\f214"
}

.fa-shoe-prints:before {
  content: "\f54b"
}

.fa-shopify:before {
  content: "\e057"
}

.fa-shopping-bag:before {
  content: "\f290"
}

.fa-shopping-basket:before {
  content: "\f291"
}

.fa-shopping-cart:before {
  content: "\f07a"
}

.fa-shopware:before {
  content: "\f5b5"
}

.fa-shower:before {
  content: "\f2cc"
}

.fa-shuttle-van:before {
  content: "\f5b6"
}

.fa-sign:before {
  content: "\f4d9"
}

.fa-sign-in-alt:before {
  content: "\f2f6"
}

.fa-sign-language:before {
  content: "\f2a7"
}

.fa-sign-out-alt:before {
  content: "\f2f5"
}

.fa-signal:before {
  content: "\f012"
}

.fa-signature:before {
  content: "\f5b7"
}

.fa-sim-card:before {
  content: "\f7c4"
}

.fa-simplybuilt:before {
  content: "\f215"
}

.fa-sink:before {
  content: "\e06d"
}

.fa-sistrix:before {
  content: "\f3ee"
}

.fa-sitemap:before {
  content: "\f0e8"
}

.fa-sith:before {
  content: "\f512"
}

.fa-skating:before {
  content: "\f7c5"
}

.fa-sketch:before {
  content: "\f7c6"
}

.fa-skiing:before {
  content: "\f7c9"
}

.fa-skiing-nordic:before {
  content: "\f7ca"
}

.fa-skull:before {
  content: "\f54c"
}

.fa-skull-crossbones:before {
  content: "\f714"
}

.fa-skyatlas:before {
  content: "\f216"
}

.fa-skype:before {
  content: "\f17e"
}

.fa-slack:before {
  content: "\f198"
}

.fa-slack-hash:before {
  content: "\f3ef"
}

.fa-slash:before {
  content: "\f715"
}

.fa-sleigh:before {
  content: "\f7cc"
}

.fa-sliders-h:before {
  content: "\f1de"
}

.fa-slideshare:before {
  content: "\f1e7"
}

.fa-smile:before {
  content: "\f118"
}

.fa-smile-beam:before {
  content: "\f5b8"
}

.fa-smile-wink:before {
  content: "\f4da"
}

.fa-smog:before {
  content: "\f75f"
}

.fa-smoking:before {
  content: "\f48d"
}

.fa-smoking-ban:before {
  content: "\f54d"
}

.fa-sms:before {
  content: "\f7cd"
}

.fa-snapchat:before {
  content: "\f2ab"
}

.fa-snapchat-ghost:before {
  content: "\f2ac"
}

.fa-snapchat-square:before {
  content: "\f2ad"
}

.fa-snowboarding:before {
  content: "\f7ce"
}

.fa-snowflake:before {
  content: "\f2dc"
}

.fa-snowman:before {
  content: "\f7d0"
}

.fa-snowplow:before {
  content: "\f7d2"
}

.fa-soap:before {
  content: "\e06e"
}

.fa-socks:before {
  content: "\f696"
}

.fa-solar-panel:before {
  content: "\f5ba"
}

.fa-sort:before {
  content: "\f0dc"
}

.fa-sort-alpha-down:before {
  content: "\f15d"
}

.fa-sort-alpha-down-alt:before {
  content: "\f881"
}

.fa-sort-alpha-up:before {
  content: "\f15e"
}

.fa-sort-alpha-up-alt:before {
  content: "\f882"
}

.fa-sort-amount-down:before {
  content: "\f160"
}

.fa-sort-amount-down-alt:before {
  content: "\f884"
}

.fa-sort-amount-up:before {
  content: "\f161"
}

.fa-sort-amount-up-alt:before {
  content: "\f885"
}

.fa-sort-down:before {
  content: "\f0dd"
}

.fa-sort-numeric-down:before {
  content: "\f162"
}

.fa-sort-numeric-down-alt:before {
  content: "\f886"
}

.fa-sort-numeric-up:before {
  content: "\f163"
}

.fa-sort-numeric-up-alt:before {
  content: "\f887"
}

.fa-sort-up:before {
  content: "\f0de"
}

.fa-soundcloud:before {
  content: "\f1be"
}

.fa-sourcetree:before {
  content: "\f7d3"
}

.fa-spa:before {
  content: "\f5bb"
}

.fa-space-shuttle:before {
  content: "\f197"
}

.fa-speakap:before {
  content: "\f3f3"
}

.fa-speaker-deck:before {
  content: "\f83c"
}

.fa-spell-check:before {
  content: "\f891"
}

.fa-spider:before {
  content: "\f717"
}

.fa-spinner:before {
  content: "\f110"
}

.fa-splotch:before {
  content: "\f5bc"
}

.fa-spotify:before {
  content: "\f1bc"
}

.fa-spray-can:before {
  content: "\f5bd"
}

.fa-square:before {
  content: "\f0c8"
}

.fa-square-full:before {
  content: "\f45c"
}

.fa-square-root-alt:before {
  content: "\f698"
}

.fa-squarespace:before {
  content: "\f5be"
}

.fa-stack-exchange:before {
  content: "\f18d"
}

.fa-stack-overflow:before {
  content: "\f16c"
}

.fa-stackpath:before {
  content: "\f842"
}

.fa-stamp:before {
  content: "\f5bf"
}

.fa-star:before {
  content: "\f005"
}

.fa-star-and-crescent:before {
  content: "\f699"
}

.fa-star-half:before {
  content: "\f089"
}

.fa-star-half-alt:before {
  content: "\f5c0"
}

.fa-star-of-david:before {
  content: "\f69a"
}

.fa-star-of-life:before {
  content: "\f621"
}

.fa-staylinked:before {
  content: "\f3f5"
}

.fa-steam:before {
  content: "\f1b6"
}

.fa-steam-square:before {
  content: "\f1b7"
}

.fa-steam-symbol:before {
  content: "\f3f6"
}

.fa-step-backward:before {
  content: "\f048"
}

.fa-step-forward:before {
  content: "\f051"
}

.fa-stethoscope:before {
  content: "\f0f1"
}

.fa-sticker-mule:before {
  content: "\f3f7"
}

.fa-sticky-note:before {
  content: "\f249"
}

.fa-stop:before {
  content: "\f04d"
}

.fa-stop-circle:before {
  content: "\f28d"
}

.fa-stopwatch:before {
  content: "\f2f2"
}

.fa-stopwatch-20:before {
  content: "\e06f"
}

.fa-store:before {
  content: "\f54e"
}

.fa-store-alt:before {
  content: "\f54f"
}

.fa-store-alt-slash:before {
  content: "\e070"
}

.fa-store-slash:before {
  content: "\e071"
}

.fa-strava:before {
  content: "\f428"
}

.fa-stream:before {
  content: "\f550"
}

.fa-street-view:before {
  content: "\f21d"
}

.fa-strikethrough:before {
  content: "\f0cc"
}

.fa-stripe:before {
  content: "\f429"
}

.fa-stripe-s:before {
  content: "\f42a"
}

.fa-stroopwafel:before {
  content: "\f551"
}

.fa-studiovinari:before {
  content: "\f3f8"
}

.fa-stumbleupon:before {
  content: "\f1a4"
}

.fa-stumbleupon-circle:before {
  content: "\f1a3"
}

.fa-subscript:before {
  content: "\f12c"
}

.fa-subway:before {
  content: "\f239"
}

.fa-suitcase:before {
  content: "\f0f2"
}

.fa-suitcase-rolling:before {
  content: "\f5c1"
}

.fa-sun:before {
  content: "\f185"
}

.fa-superpowers:before {
  content: "\f2dd"
}

.fa-superscript:before {
  content: "\f12b"
}

.fa-supple:before {
  content: "\f3f9"
}

.fa-surprise:before {
  content: "\f5c2"
}

.fa-suse:before {
  content: "\f7d6"
}

.fa-swatchbook:before {
  content: "\f5c3"
}

.fa-swift:before {
  content: "\f8e1"
}

.fa-swimmer:before {
  content: "\f5c4"
}

.fa-swimming-pool:before {
  content: "\f5c5"
}

.fa-symfony:before {
  content: "\f83d"
}

.fa-synagogue:before {
  content: "\f69b"
}

.fa-sync:before {
  content: "\f021"
}

.fa-sync-alt:before {
  content: "\f2f1"
}

.fa-syringe:before {
  content: "\f48e"
}

.fa-table:before {
  content: "\f0ce"
}

.fa-table-tennis:before {
  content: "\f45d"
}

.fa-tablet:before {
  content: "\f10a"
}

.fa-tablet-alt:before {
  content: "\f3fa"
}

.fa-tablets:before {
  content: "\f490"
}

.fa-tachometer-alt:before {
  content: "\f3fd"
}

.fa-tag:before {
  content: "\f02b"
}

.fa-tags:before {
  content: "\f02c"
}

.fa-tape:before {
  content: "\f4db"
}

.fa-tasks:before {
  content: "\f0ae"
}

.fa-taxi:before {
  content: "\f1ba"
}

.fa-teamspeak:before {
  content: "\f4f9"
}

.fa-teeth:before {
  content: "\f62e"
}

.fa-teeth-open:before {
  content: "\f62f"
}

.fa-telegram:before {
  content: "\f2c6"
}

.fa-telegram-plane:before {
  content: "\f3fe"
}

.fa-temperature-high:before {
  content: "\f769"
}

.fa-temperature-low:before {
  content: "\f76b"
}

.fa-tencent-weibo:before {
  content: "\f1d5"
}

.fa-tenge:before {
  content: "\f7d7"
}

.fa-terminal:before {
  content: "\f120"
}

.fa-text-height:before {
  content: "\f034"
}

.fa-text-width:before {
  content: "\f035"
}

.fa-th:before {
  content: "\f00a"
}

.fa-th-large:before {
  content: "\f009"
}

.fa-th-list:before {
  content: "\f00b"
}

.fa-the-red-yeti:before {
  content: "\f69d"
}

.fa-theater-masks:before {
  content: "\f630"
}

.fa-themeco:before {
  content: "\f5c6"
}

.fa-themeisle:before {
  content: "\f2b2"
}

.fa-thermometer:before {
  content: "\f491"
}

.fa-thermometer-empty:before {
  content: "\f2cb"
}

.fa-thermometer-full:before {
  content: "\f2c7"
}

.fa-thermometer-half:before {
  content: "\f2c9"
}

.fa-thermometer-quarter:before {
  content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8"
}

.fa-think-peaks:before {
  content: "\f731"
}

.fa-thumbs-down:before {
  content: "\f165"
}

.fa-thumbs-up:before {
  content: "\f164"
}

.fa-thumbtack:before {
  content: "\f08d"
}

.fa-ticket-alt:before {
  content: "\f3ff"
}

.fa-tiktok:before {
  content: "\e07b"
}

.fa-times:before {
  content: "\f00d"
}

.fa-times-circle:before {
  content: "\f057"
}

.fa-tint:before {
  content: "\f043"
}

.fa-tint-slash:before {
  content: "\f5c7"
}

.fa-tired:before {
  content: "\f5c8"
}

.fa-toggle-off:before {
  content: "\f204"
}

.fa-toggle-on:before {
  content: "\f205"
}

.fa-toilet:before {
  content: "\f7d8"
}

.fa-toilet-paper:before {
  content: "\f71e"
}

.fa-toilet-paper-slash:before {
  content: "\e072"
}

.fa-toolbox:before {
  content: "\f552"
}

.fa-tools:before {
  content: "\f7d9"
}

.fa-tooth:before {
  content: "\f5c9"
}

.fa-torah:before {
  content: "\f6a0"
}

.fa-torii-gate:before {
  content: "\f6a1"
}

.fa-tractor:before {
  content: "\f722"
}

.fa-trade-federation:before {
  content: "\f513"
}

.fa-trademark:before {
  content: "\f25c"
}

.fa-traffic-light:before {
  content: "\f637"
}

.fa-trailer:before {
  content: "\e041"
}

.fa-train:before {
  content: "\f238"
}

.fa-tram:before {
  content: "\f7da"
}

.fa-transgender:before {
  content: "\f224"
}

.fa-transgender-alt:before {
  content: "\f225"
}

.fa-trash:before {
  content: "\f1f8"
}

.fa-trash-alt:before {
  content: "\f2ed"
}

.fa-trash-restore:before {
  content: "\f829"
}

.fa-trash-restore-alt:before {
  content: "\f82a"
}

.fa-tree:before {
  content: "\f1bb"
}

.fa-trello:before {
  content: "\f181"
}

.fa-tripadvisor:before {
  content: "\f262"
}

.fa-trophy:before {
  content: "\f091"
}

.fa-truck:before {
  content: "\f0d1"
}

.fa-truck-loading:before {
  content: "\f4de"
}

.fa-truck-monster:before {
  content: "\f63b"
}

.fa-truck-moving:before {
  content: "\f4df"
}

.fa-truck-pickup:before {
  content: "\f63c"
}

.fa-tshirt:before {
  content: "\f553"
}

.fa-tty:before {
  content: "\f1e4"
}

.fa-tumblr:before {
  content: "\f173"
}

.fa-tumblr-square:before {
  content: "\f174"
}

.fa-tv:before {
  content: "\f26c"
}

.fa-twitch:before {
  content: "\f1e8"
}

.fa-twitter:before {
  content: "\f099"
}

.fa-twitter-square:before {
  content: "\f081"
}

.fa-typo3:before {
  content: "\f42b"
}

.fa-uber:before {
  content: "\f402"
}

.fa-ubuntu:before {
  content: "\f7df"
}

.fa-uikit:before {
  content: "\f403"
}

.fa-umbraco:before {
  content: "\f8e8"
}

.fa-umbrella:before {
  content: "\f0e9"
}

.fa-umbrella-beach:before {
  content: "\f5ca"
}

.fa-uncharted:before {
  content: "\e084"
}

.fa-underline:before {
  content: "\f0cd"
}

.fa-undo:before {
  content: "\f0e2"
}

.fa-undo-alt:before {
  content: "\f2ea"
}

.fa-uniregistry:before {
  content: "\f404"
}

.fa-unity:before {
  content: "\e049"
}

.fa-universal-access:before {
  content: "\f29a"
}

.fa-university:before {
  content: "\f19c"
}

.fa-unlink:before {
  content: "\f127"
}

.fa-unlock:before {
  content: "\f09c"
}

.fa-unlock-alt:before {
  content: "\f13e"
}

.fa-unsplash:before {
  content: "\e07c"
}

.fa-untappd:before {
  content: "\f405"
}

.fa-upload:before {
  content: "\f093"
}

.fa-ups:before {
  content: "\f7e0"
}

.fa-usb:before {
  content: "\f287"
}

.fa-user:before {
  content: "\f007"
}

.fa-user-alt:before {
  content: "\f406"
}

.fa-user-alt-slash:before {
  content: "\f4fa"
}

.fa-user-astronaut:before {
  content: "\f4fb"
}

.fa-user-check:before {
  content: "\f4fc"
}

.fa-user-circle:before {
  content: "\f2bd"
}

.fa-user-clock:before {
  content: "\f4fd"
}

.fa-user-cog:before {
  content: "\f4fe"
}

.fa-user-edit:before {
  content: "\f4ff"
}

.fa-user-friends:before {
  content: "\f500"
}

.fa-user-graduate:before {
  content: "\f501"
}

.fa-user-injured:before {
  content: "\f728"
}

.fa-user-lock:before {
  content: "\f502"
}

.fa-user-md:before {
  content: "\f0f0"
}

.fa-user-minus:before {
  content: "\f503"
}

.fa-user-ninja:before {
  content: "\f504"
}

.fa-user-nurse:before {
  content: "\f82f"
}

.fa-user-plus:before {
  content: "\f234"
}

.fa-user-secret:before {
  content: "\f21b"
}

.fa-user-shield:before {
  content: "\f505"
}

.fa-user-slash:before {
  content: "\f506"
}

.fa-user-tag:before {
  content: "\f507"
}

.fa-user-tie:before {
  content: "\f508"
}

.fa-user-times:before {
  content: "\f235"
}

.fa-users:before {
  content: "\f0c0"
}

.fa-users-cog:before {
  content: "\f509"
}

.fa-users-slash:before {
  content: "\e073"
}

.fa-usps:before {
  content: "\f7e1"
}

.fa-ussunnah:before {
  content: "\f407"
}

.fa-utensil-spoon:before {
  content: "\f2e5"
}

.fa-utensils:before {
  content: "\f2e7"
}

.fa-vaadin:before {
  content: "\f408"
}

.fa-vector-square:before {
  content: "\f5cb"
}

.fa-venus:before {
  content: "\f221"
}

.fa-venus-double:before {
  content: "\f226"
}

.fa-venus-mars:before {
  content: "\f228"
}

.fa-vest:before {
  content: "\e085"
}

.fa-vest-patches:before {
  content: "\e086"
}

.fa-viacoin:before {
  content: "\f237"
}

.fa-viadeo:before {
  content: "\f2a9"
}

.fa-viadeo-square:before {
  content: "\f2aa"
}

.fa-vial:before {
  content: "\f492"
}

.fa-vials:before {
  content: "\f493"
}

.fa-viber:before {
  content: "\f409"
}

.fa-video:before {
  content: "\f03d"
}

.fa-video-slash:before {
  content: "\f4e2"
}

.fa-vihara:before {
  content: "\f6a7"
}

.fa-vimeo:before {
  content: "\f40a"
}

.fa-vimeo-square:before {
  content: "\f194"
}

.fa-vimeo-v:before {
  content: "\f27d"
}

.fa-vine:before {
  content: "\f1ca"
}

.fa-virus:before {
  content: "\e074"
}

.fa-virus-slash:before {
  content: "\e075"
}

.fa-viruses:before {
  content: "\e076"
}

.fa-vk:before {
  content: "\f189"
}

.fa-vnv:before {
  content: "\f40b"
}

.fa-voicemail:before {
  content: "\f897"
}

.fa-volleyball-ball:before {
  content: "\f45f"
}

.fa-volume-down:before {
  content: "\f027"
}

.fa-volume-mute:before {
  content: "\f6a9"
}

.fa-volume-off:before {
  content: "\f026"
}

.fa-volume-up:before {
  content: "\f028"
}

.fa-vote-yea:before {
  content: "\f772"
}

.fa-vr-cardboard:before {
  content: "\f729"
}

.fa-vuejs:before {
  content: "\f41f"
}

.fa-walking:before {
  content: "\f554"
}

.fa-wallet:before {
  content: "\f555"
}

.fa-warehouse:before {
  content: "\f494"
}

.fa-watchman-monitoring:before {
  content: "\e087"
}

.fa-water:before {
  content: "\f773"
}

.fa-wave-square:before {
  content: "\f83e"
}

.fa-waze:before {
  content: "\f83f"
}

.fa-weebly:before {
  content: "\f5cc"
}

.fa-weibo:before {
  content: "\f18a"
}

.fa-weight:before {
  content: "\f496"
}

.fa-weight-hanging:before {
  content: "\f5cd"
}

.fa-weixin:before {
  content: "\f1d7"
}

.fa-whatsapp:before {
  content: "\f232"
}

.fa-whatsapp-square:before {
  content: "\f40c"
}

.fa-wheelchair:before {
  content: "\f193"
}

.fa-whmcs:before {
  content: "\f40d"
}

.fa-wifi:before {
  content: "\f1eb"
}

.fa-wikipedia-w:before {
  content: "\f266"
}

.fa-wind:before {
  content: "\f72e"
}

.fa-window-close:before {
  content: "\f410"
}

.fa-window-maximize:before {
  content: "\f2d0"
}

.fa-window-minimize:before {
  content: "\f2d1"
}

.fa-window-restore:before {
  content: "\f2d2"
}

.fa-windows:before {
  content: "\f17a"
}

.fa-wine-bottle:before {
  content: "\f72f"
}

.fa-wine-glass:before {
  content: "\f4e3"
}

.fa-wine-glass-alt:before {
  content: "\f5ce"
}

.fa-wix:before {
  content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
  content: "\f730"
}

.fa-wodu:before {
  content: "\e088"
}

.fa-wolf-pack-battalion:before {
  content: "\f514"
}

.fa-won-sign:before {
  content: "\f159"
}

.fa-wordpress:before {
  content: "\f19a"
}

.fa-wordpress-simple:before {
  content: "\f411"
}

.fa-wpbeginner:before {
  content: "\f297"
}

.fa-wpexplorer:before {
  content: "\f2de"
}

.fa-wpforms:before {
  content: "\f298"
}

.fa-wpressr:before {
  content: "\f3e4"
}

.fa-wrench:before {
  content: "\f0ad"
}

.fa-x-ray:before {
  content: "\f497"
}

.fa-xbox:before {
  content: "\f412"
}

.fa-xing:before {
  content: "\f168"
}

.fa-xing-square:before {
  content: "\f169"
}

.fa-y-combinator:before {
  content: "\f23b"
}

.fa-yahoo:before {
  content: "\f19e"
}

.fa-yammer:before {
  content: "\f840"
}

.fa-yandex:before {
  content: "\f413"
}

.fa-yandex-international:before {
  content: "\f414"
}

.fa-yarn:before {
  content: "\f7e3"
}

.fa-yelp:before {
  content: "\f1e9"
}

.fa-yen-sign:before {
  content: "\f157"
}

.fa-yin-yang:before {
  content: "\f6ad"
}

.fa-yoast:before {
  content: "\f2b1"
}

.fa-youtube:before {
  content: "\f167"
}

.fa-youtube-square:before {
  content: "\f431"
}

.fa-zhihu:before {
  content: "\f63f"
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot);
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff) format("woff"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
  font-family: "Font Awesome 5 Brands"
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot);
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff) format("woff"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")
}

.fab,
.far {
  font-weight: 400
}

@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free"
}

.fa,
.fas {
  font-weight: 900
}

.fa.fa-glass:before {
  content: "\f000"
}

.fa.fa-meetup {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-star-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-star-o:before {
  content: "\f005"
}

.fa.fa-close:before,
.fa.fa-remove:before {
  content: "\f00d"
}

.fa.fa-gear:before {
  content: "\f013"
}

.fa.fa-trash-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-trash-o:before {
  content: "\f2ed"
}

.fa.fa-file-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-o:before {
  content: "\f15b"
}

.fa.fa-clock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-clock-o:before {
  content: "\f017"
}

.fa.fa-arrow-circle-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-arrow-circle-o-down:before {
  content: "\f358"
}

.fa.fa-arrow-circle-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-arrow-circle-o-up:before {
  content: "\f35b"
}

.fa.fa-play-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-play-circle-o:before {
  content: "\f144"
}

.fa.fa-repeat:before,
.fa.fa-rotate-right:before {
  content: "\f01e"
}

.fa.fa-refresh:before {
  content: "\f021"
}

.fa.fa-list-alt {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-dedent:before {
  content: "\f03b"
}

.fa.fa-video-camera:before {
  content: "\f03d"
}

.fa.fa-picture-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-picture-o:before {
  content: "\f03e"
}

.fa.fa-photo {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-photo:before {
  content: "\f03e"
}

.fa.fa-image {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-image:before {
  content: "\f03e"
}

.fa.fa-pencil:before {
  content: "\f303"
}

.fa.fa-map-marker:before {
  content: "\f3c5"
}

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-pencil-square-o:before {
  content: "\f044"
}

.fa.fa-share-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-share-square-o:before {
  content: "\f14d"
}

.fa.fa-check-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-check-square-o:before {
  content: "\f14a"
}

.fa.fa-arrows:before {
  content: "\f0b2"
}

.fa.fa-times-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-times-circle-o:before {
  content: "\f057"
}

.fa.fa-check-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-check-circle-o:before {
  content: "\f058"
}

.fa.fa-mail-forward:before {
  content: "\f064"
}

.fa.fa-expand:before {
  content: "\f424"
}

.fa.fa-compress:before {
  content: "\f422"
}

.fa.fa-eye,
.fa.fa-eye-slash {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-warning:before {
  content: "\f071"
}

.fa.fa-calendar:before {
  content: "\f073"
}

.fa.fa-arrows-v:before {
  content: "\f338"
}

.fa.fa-arrows-h:before {
  content: "\f337"
}

.fa.fa-bar-chart {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-bar-chart:before {
  content: "\f080"
}

.fa.fa-bar-chart-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-bar-chart-o:before {
  content: "\f080"
}

.fa.fa-facebook-square,
.fa.fa-twitter-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-gears:before {
  content: "\f085"
}

.fa.fa-thumbs-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-thumbs-o-up:before {
  content: "\f164"
}

.fa.fa-thumbs-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-thumbs-o-down:before {
  content: "\f165"
}

.fa.fa-heart-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-heart-o:before {
  content: "\f004"
}

.fa.fa-sign-out:before {
  content: "\f2f5"
}

.fa.fa-linkedin-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-linkedin-square:before {
  content: "\f08c"
}

.fa.fa-thumb-tack:before {
  content: "\f08d"
}

.fa.fa-external-link:before {
  content: "\f35d"
}

.fa.fa-sign-in:before {
  content: "\f2f6"
}

.fa.fa-github-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-lemon-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-lemon-o:before {
  content: "\f094"
}

.fa.fa-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-square-o:before {
  content: "\f0c8"
}

.fa.fa-bookmark-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-bookmark-o:before {
  content: "\f02e"
}

.fa.fa-facebook,
.fa.fa-twitter {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-facebook:before {
  content: "\f39e"
}

.fa.fa-facebook-f {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-facebook-f:before {
  content: "\f39e"
}

.fa.fa-github {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-credit-card {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-feed:before {
  content: "\f09e"
}

.fa.fa-hdd-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hdd-o:before {
  content: "\f0a0"
}

.fa.fa-hand-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-o-right:before {
  content: "\f0a4"
}

.fa.fa-hand-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-o-left:before {
  content: "\f0a5"
}

.fa.fa-hand-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-o-up:before {
  content: "\f0a6"
}

.fa.fa-hand-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-o-down:before {
  content: "\f0a7"
}

.fa.fa-arrows-alt:before {
  content: "\f31e"
}

.fa.fa-group:before {
  content: "\f0c0"
}

.fa.fa-chain:before {
  content: "\f0c1"
}

.fa.fa-scissors:before {
  content: "\f0c4"
}

.fa.fa-files-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-files-o:before {
  content: "\f0c5"
}

.fa.fa-floppy-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-floppy-o:before {
  content: "\f0c7"
}

.fa.fa-navicon:before,
.fa.fa-reorder:before {
  content: "\f0c9"
}

.fa.fa-google-plus,
.fa.fa-google-plus-square,
.fa.fa-pinterest,
.fa.fa-pinterest-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-google-plus:before {
  content: "\f0d5"
}

.fa.fa-money {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-money:before {
  content: "\f3d1"
}

.fa.fa-unsorted:before {
  content: "\f0dc"
}

.fa.fa-sort-desc:before {
  content: "\f0dd"
}

.fa.fa-sort-asc:before {
  content: "\f0de"
}

.fa.fa-linkedin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-linkedin:before {
  content: "\f0e1"
}

.fa.fa-rotate-left:before {
  content: "\f0e2"
}

.fa.fa-legal:before {
  content: "\f0e3"
}

.fa.fa-dashboard:before,
.fa.fa-tachometer:before {
  content: "\f3fd"
}

.fa.fa-comment-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-comment-o:before {
  content: "\f075"
}

.fa.fa-comments-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-comments-o:before {
  content: "\f086"
}

.fa.fa-flash:before {
  content: "\f0e7"
}

.fa.fa-clipboard,
.fa.fa-paste {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-paste:before {
  content: "\f328"
}

.fa.fa-lightbulb-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-lightbulb-o:before {
  content: "\f0eb"
}

.fa.fa-exchange:before {
  content: "\f362"
}

.fa.fa-cloud-download:before {
  content: "\f381"
}

.fa.fa-cloud-upload:before {
  content: "\f382"
}

.fa.fa-bell-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-bell-o:before {
  content: "\f0f3"
}

.fa.fa-cutlery:before {
  content: "\f2e7"
}

.fa.fa-file-text-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-text-o:before {
  content: "\f15c"
}

.fa.fa-building-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-building-o:before {
  content: "\f1ad"
}

.fa.fa-hospital-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hospital-o:before {
  content: "\f0f8"
}

.fa.fa-tablet:before {
  content: "\f3fa"
}

.fa.fa-mobile-phone:before,
.fa.fa-mobile:before {
  content: "\f3cd"
}

.fa.fa-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-circle-o:before {
  content: "\f111"
}

.fa.fa-mail-reply:before {
  content: "\f3e5"
}

.fa.fa-github-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-folder-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-folder-o:before {
  content: "\f07b"
}

.fa.fa-folder-open-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-folder-open-o:before {
  content: "\f07c"
}

.fa.fa-smile-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-smile-o:before {
  content: "\f118"
}

.fa.fa-frown-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-frown-o:before {
  content: "\f119"
}

.fa.fa-meh-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-meh-o:before {
  content: "\f11a"
}

.fa.fa-keyboard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-keyboard-o:before {
  content: "\f11c"
}

.fa.fa-flag-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-flag-o:before {
  content: "\f024"
}

.fa.fa-mail-reply-all:before {
  content: "\f122"
}

.fa.fa-star-half-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-star-half-o:before {
  content: "\f089"
}

.fa.fa-star-half-empty {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-star-half-empty:before {
  content: "\f089"
}

.fa.fa-star-half-full {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-star-half-full:before {
  content: "\f089"
}

.fa.fa-code-fork:before {
  content: "\f126"
}

.fa.fa-chain-broken:before {
  content: "\f127"
}

.fa.fa-shield:before {
  content: "\f3ed"
}

.fa.fa-calendar-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-calendar-o:before {
  content: "\f133"
}

.fa.fa-css3,
.fa.fa-html5,
.fa.fa-maxcdn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-ticket:before {
  content: "\f3ff"
}

.fa.fa-minus-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-minus-square-o:before {
  content: "\f146"
}

.fa.fa-level-up:before {
  content: "\f3bf"
}

.fa.fa-level-down:before {
  content: "\f3be"
}

.fa.fa-pencil-square:before {
  content: "\f14b"
}

.fa.fa-external-link-square:before {
  content: "\f360"
}

.fa.fa-compass {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-caret-square-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-caret-square-o-down:before {
  content: "\f150"
}

.fa.fa-toggle-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-toggle-down:before {
  content: "\f150"
}

.fa.fa-caret-square-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-caret-square-o-up:before {
  content: "\f151"
}

.fa.fa-toggle-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-toggle-up:before {
  content: "\f151"
}

.fa.fa-caret-square-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-caret-square-o-right:before {
  content: "\f152"
}

.fa.fa-toggle-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-toggle-right:before {
  content: "\f152"
}

.fa.fa-eur:before,
.fa.fa-euro:before {
  content: "\f153"
}

.fa.fa-gbp:before {
  content: "\f154"
}

.fa.fa-dollar:before,
.fa.fa-usd:before {
  content: "\f155"
}

.fa.fa-inr:before,
.fa.fa-rupee:before {
  content: "\f156"
}

.fa.fa-cny:before,
.fa.fa-jpy:before,
.fa.fa-rmb:before,
.fa.fa-yen:before {
  content: "\f157"
}

.fa.fa-rouble:before,
.fa.fa-rub:before,
.fa.fa-ruble:before {
  content: "\f158"
}

.fa.fa-krw:before,
.fa.fa-won:before {
  content: "\f159"
}

.fa.fa-bitcoin,
.fa.fa-btc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-bitcoin:before {
  content: "\f15a"
}

.fa.fa-file-text:before {
  content: "\f15c"
}

.fa.fa-sort-alpha-asc:before {
  content: "\f15d"
}

.fa.fa-sort-alpha-desc:before {
  content: "\f881"
}

.fa.fa-sort-amount-asc:before {
  content: "\f160"
}

.fa.fa-sort-amount-desc:before {
  content: "\f884"
}

.fa.fa-sort-numeric-asc:before {
  content: "\f162"
}

.fa.fa-sort-numeric-desc:before {
  content: "\f886"
}

.fa.fa-xing,
.fa.fa-xing-square,
.fa.fa-youtube,
.fa.fa-youtube-play,
.fa.fa-youtube-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-youtube-play:before {
  content: "\f167"
}

.fa.fa-adn,
.fa.fa-bitbucket,
.fa.fa-bitbucket-square,
.fa.fa-dropbox,
.fa.fa-flickr,
.fa.fa-instagram,
.fa.fa-stack-overflow {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-bitbucket-square:before {
  content: "\f171"
}

.fa.fa-tumblr,
.fa.fa-tumblr-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-long-arrow-down:before {
  content: "\f309"
}

.fa.fa-long-arrow-up:before {
  content: "\f30c"
}

.fa.fa-long-arrow-left:before {
  content: "\f30a"
}

.fa.fa-long-arrow-right:before {
  content: "\f30b"
}

.fa.fa-android,
.fa.fa-apple,
.fa.fa-dribbble,
.fa.fa-foursquare,
.fa.fa-gittip,
.fa.fa-gratipay,
.fa.fa-linux,
.fa.fa-skype,
.fa.fa-trello,
.fa.fa-windows {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-gittip:before {
  content: "\f184"
}

.fa.fa-sun-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-sun-o:before {
  content: "\f185"
}

.fa.fa-moon-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-moon-o:before {
  content: "\f186"
}

.fa.fa-pagelines,
.fa.fa-renren,
.fa.fa-stack-exchange,
.fa.fa-vk,
.fa.fa-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-arrow-circle-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-arrow-circle-o-right:before {
  content: "\f35a"
}

.fa.fa-arrow-circle-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-arrow-circle-o-left:before {
  content: "\f359"
}

.fa.fa-caret-square-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-caret-square-o-left:before {
  content: "\f191"
}

.fa.fa-toggle-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-toggle-left:before {
  content: "\f191"
}

.fa.fa-dot-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-dot-circle-o:before {
  content: "\f192"
}

.fa.fa-vimeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-try:before,
.fa.fa-turkish-lira:before {
  content: "\f195"
}

.fa.fa-plus-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-plus-square-o:before {
  content: "\f0fe"
}

.fa.fa-openid,
.fa.fa-slack,
.fa.fa-wordpress {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-bank:before,
.fa.fa-institution:before {
  content: "\f19c"
}

.fa.fa-mortar-board:before {
  content: "\f19d"
}

.fa.fa-delicious,
.fa.fa-digg,
.fa.fa-drupal,
.fa.fa-google,
.fa.fa-joomla,
.fa.fa-pied-piper-alt,
.fa.fa-pied-piper-pp,
.fa.fa-reddit,
.fa.fa-reddit-square,
.fa.fa-stumbleupon,
.fa.fa-stumbleupon-circle,
.fa.fa-yahoo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-spoon:before {
  content: "\f2e5"
}

.fa.fa-behance,
.fa.fa-behance-square,
.fa.fa-steam,
.fa.fa-steam-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-automobile:before {
  content: "\f1b9"
}

.fa.fa-envelope-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-envelope-o:before {
  content: "\f0e0"
}

.fa.fa-deviantart,
.fa.fa-soundcloud,
.fa.fa-spotify {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-file-pdf-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-pdf-o:before {
  content: "\f1c1"
}

.fa.fa-file-word-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-word-o:before {
  content: "\f1c2"
}

.fa.fa-file-excel-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-excel-o:before {
  content: "\f1c3"
}

.fa.fa-file-powerpoint-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-powerpoint-o:before {
  content: "\f1c4"
}

.fa.fa-file-image-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-image-o:before {
  content: "\f1c5"
}

.fa.fa-file-photo-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-photo-o:before {
  content: "\f1c5"
}

.fa.fa-file-picture-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-picture-o:before {
  content: "\f1c5"
}

.fa.fa-file-archive-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-archive-o:before {
  content: "\f1c6"
}

.fa.fa-file-zip-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-zip-o:before {
  content: "\f1c6"
}

.fa.fa-file-audio-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-audio-o:before {
  content: "\f1c7"
}

.fa.fa-file-sound-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-sound-o:before {
  content: "\f1c7"
}

.fa.fa-file-video-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-video-o:before {
  content: "\f1c8"
}

.fa.fa-file-movie-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-movie-o:before {
  content: "\f1c8"
}

.fa.fa-file-code-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-file-code-o:before {
  content: "\f1c9"
}

.fa.fa-codepen,
.fa.fa-jsfiddle,
.fa.fa-vine {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-life-bouy,
.fa.fa-life-ring {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-life-bouy:before {
  content: "\f1cd"
}

.fa.fa-life-buoy {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-life-buoy:before {
  content: "\f1cd"
}

.fa.fa-life-saver {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-life-saver:before {
  content: "\f1cd"
}

.fa.fa-support {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-support:before {
  content: "\f1cd"
}

.fa.fa-circle-o-notch:before {
  content: "\f1ce"
}

.fa.fa-ra,
.fa.fa-rebel {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-ra:before {
  content: "\f1d0"
}

.fa.fa-resistance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-resistance:before {
  content: "\f1d0"
}

.fa.fa-empire,
.fa.fa-ge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-ge:before {
  content: "\f1d1"
}

.fa.fa-git,
.fa.fa-git-square,
.fa.fa-hacker-news,
.fa.fa-y-combinator-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-y-combinator-square:before {
  content: "\f1d4"
}

.fa.fa-yc-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-yc-square:before {
  content: "\f1d4"
}

.fa.fa-qq,
.fa.fa-tencent-weibo,
.fa.fa-wechat,
.fa.fa-weixin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-wechat:before {
  content: "\f1d7"
}

.fa.fa-send:before {
  content: "\f1d8"
}

.fa.fa-paper-plane-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-paper-plane-o:before {
  content: "\f1d8"
}

.fa.fa-send-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-send-o:before {
  content: "\f1d8"
}

.fa.fa-circle-thin {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-circle-thin:before {
  content: "\f111"
}

.fa.fa-header:before {
  content: "\f1dc"
}

.fa.fa-sliders:before {
  content: "\f1de"
}

.fa.fa-futbol-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-futbol-o:before {
  content: "\f1e3"
}

.fa.fa-soccer-ball-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-soccer-ball-o:before {
  content: "\f1e3"
}

.fa.fa-slideshare,
.fa.fa-twitch,
.fa.fa-yelp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-newspaper-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-newspaper-o:before {
  content: "\f1ea"
}

.fa.fa-cc-amex,
.fa.fa-cc-discover,
.fa.fa-cc-mastercard,
.fa.fa-cc-paypal,
.fa.fa-cc-stripe,
.fa.fa-cc-visa,
.fa.fa-google-wallet,
.fa.fa-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-bell-slash-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-bell-slash-o:before {
  content: "\f1f6"
}

.fa.fa-trash:before {
  content: "\f2ed"
}

.fa.fa-copyright {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-eyedropper:before {
  content: "\f1fb"
}

.fa.fa-area-chart:before {
  content: "\f1fe"
}

.fa.fa-pie-chart:before {
  content: "\f200"
}

.fa.fa-line-chart:before {
  content: "\f201"
}

.fa.fa-angellist,
.fa.fa-ioxhost,
.fa.fa-lastfm,
.fa.fa-lastfm-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-cc {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-cc:before {
  content: "\f20a"
}

.fa.fa-ils:before,
.fa.fa-shekel:before,
.fa.fa-sheqel:before {
  content: "\f20b"
}

.fa.fa-meanpath {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-meanpath:before {
  content: "\f2b4"
}

.fa.fa-buysellads,
.fa.fa-connectdevelop,
.fa.fa-dashcube,
.fa.fa-forumbee,
.fa.fa-leanpub,
.fa.fa-sellsy,
.fa.fa-shirtsinbulk,
.fa.fa-simplybuilt,
.fa.fa-skyatlas {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-diamond {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-diamond:before {
  content: "\f3a5"
}

.fa.fa-intersex:before {
  content: "\f224"
}

.fa.fa-facebook-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-facebook-official:before {
  content: "\f09a"
}

.fa.fa-pinterest-p,
.fa.fa-whatsapp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-hotel:before {
  content: "\f236"
}

.fa.fa-medium,
.fa.fa-viacoin,
.fa.fa-y-combinator,
.fa.fa-yc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-yc:before {
  content: "\f23b"
}

.fa.fa-expeditedssl,
.fa.fa-opencart,
.fa.fa-optin-monster {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-battery-4:before,
.fa.fa-battery:before {
  content: "\f240"
}

.fa.fa-battery-3:before {
  content: "\f241"
}

.fa.fa-battery-2:before {
  content: "\f242"
}

.fa.fa-battery-1:before {
  content: "\f243"
}

.fa.fa-battery-0:before {
  content: "\f244"
}

.fa.fa-object-group,
.fa.fa-object-ungroup,
.fa.fa-sticky-note-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-sticky-note-o:before {
  content: "\f249"
}

.fa.fa-cc-diners-club,
.fa.fa-cc-jcb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-clone,
.fa.fa-hourglass-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hourglass-o:before {
  content: "\f254"
}

.fa.fa-hourglass-1:before {
  content: "\f251"
}

.fa.fa-hourglass-2:before {
  content: "\f252"
}

.fa.fa-hourglass-3:before {
  content: "\f253"
}

.fa.fa-hand-rock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-rock-o:before {
  content: "\f255"
}

.fa.fa-hand-grab-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-grab-o:before {
  content: "\f255"
}

.fa.fa-hand-paper-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-paper-o:before {
  content: "\f256"
}

.fa.fa-hand-stop-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-stop-o:before {
  content: "\f256"
}

.fa.fa-hand-scissors-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-scissors-o:before {
  content: "\f257"
}

.fa.fa-hand-lizard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-lizard-o:before {
  content: "\f258"
}

.fa.fa-hand-spock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-spock-o:before {
  content: "\f259"
}

.fa.fa-hand-pointer-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-pointer-o:before {
  content: "\f25a"
}

.fa.fa-hand-peace-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-hand-peace-o:before {
  content: "\f25b"
}

.fa.fa-registered {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-chrome,
.fa.fa-creative-commons,
.fa.fa-firefox,
.fa.fa-get-pocket,
.fa.fa-gg,
.fa.fa-gg-circle,
.fa.fa-internet-explorer,
.fa.fa-odnoklassniki,
.fa.fa-odnoklassniki-square,
.fa.fa-opera,
.fa.fa-safari,
.fa.fa-tripadvisor,
.fa.fa-wikipedia-w {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-television:before {
  content: "\f26c"
}

.fa.fa-500px,
.fa.fa-amazon,
.fa.fa-contao {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-calendar-plus-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-calendar-plus-o:before {
  content: "\f271"
}

.fa.fa-calendar-minus-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-calendar-minus-o:before {
  content: "\f272"
}

.fa.fa-calendar-times-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-calendar-times-o:before {
  content: "\f273"
}

.fa.fa-calendar-check-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-calendar-check-o:before {
  content: "\f274"
}

.fa.fa-map-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-map-o:before {
  content: "\f279"
}

.fa.fa-commenting:before {
  content: "\f4ad"
}

.fa.fa-commenting-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-commenting-o:before {
  content: "\f4ad"
}

.fa.fa-houzz,
.fa.fa-vimeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-vimeo:before {
  content: "\f27d"
}

.fa.fa-black-tie,
.fa.fa-edge,
.fa.fa-fonticons,
.fa.fa-reddit-alien {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-credit-card-alt:before {
  content: "\f09d"
}

.fa.fa-codiepie,
.fa.fa-fort-awesome,
.fa.fa-mixcloud,
.fa.fa-modx,
.fa.fa-product-hunt,
.fa.fa-scribd,
.fa.fa-usb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-pause-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-pause-circle-o:before {
  content: "\f28b"
}

.fa.fa-stop-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-stop-circle-o:before {
  content: "\f28d"
}

.fa.fa-bluetooth,
.fa.fa-bluetooth-b,
.fa.fa-envira,
.fa.fa-gitlab,
.fa.fa-wheelchair-alt,
.fa.fa-wpbeginner,
.fa.fa-wpforms {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-wheelchair-alt:before {
  content: "\f368"
}

.fa.fa-question-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-question-circle-o:before {
  content: "\f059"
}

.fa.fa-volume-control-phone:before {
  content: "\f2a0"
}

.fa.fa-asl-interpreting:before {
  content: "\f2a3"
}

.fa.fa-deafness:before,
.fa.fa-hard-of-hearing:before {
  content: "\f2a4"
}

.fa.fa-glide,
.fa.fa-glide-g {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-signing:before {
  content: "\f2a7"
}

.fa.fa-first-order,
.fa.fa-google-plus-official,
.fa.fa-pied-piper,
.fa.fa-snapchat,
.fa.fa-snapchat-ghost,
.fa.fa-snapchat-square,
.fa.fa-themeisle,
.fa.fa-viadeo,
.fa.fa-viadeo-square,
.fa.fa-yoast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-google-plus-official:before {
  content: "\f2b3"
}

.fa.fa-google-plus-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-google-plus-circle:before {
  content: "\f2b3"
}

.fa.fa-fa,
.fa.fa-font-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-fa:before {
  content: "\f2b4"
}

.fa.fa-handshake-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-handshake-o:before {
  content: "\f2b5"
}

.fa.fa-envelope-open-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-envelope-open-o:before {
  content: "\f2b6"
}

.fa.fa-linode {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-address-book-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-address-book-o:before {
  content: "\f2b9"
}

.fa.fa-vcard:before {
  content: "\f2bb"
}

.fa.fa-address-card-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-address-card-o:before {
  content: "\f2bb"
}

.fa.fa-vcard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-vcard-o:before {
  content: "\f2bb"
}

.fa.fa-user-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-user-circle-o:before {
  content: "\f2bd"
}

.fa.fa-user-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-user-o:before {
  content: "\f007"
}

.fa.fa-id-badge {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-drivers-license:before {
  content: "\f2c2"
}

.fa.fa-id-card-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-id-card-o:before {
  content: "\f2c2"
}

.fa.fa-drivers-license-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-drivers-license-o:before {
  content: "\f2c2"
}

.fa.fa-free-code-camp,
.fa.fa-quora,
.fa.fa-telegram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-thermometer-4:before,
.fa.fa-thermometer:before {
  content: "\f2c7"
}

.fa.fa-thermometer-3:before {
  content: "\f2c8"
}

.fa.fa-thermometer-2:before {
  content: "\f2c9"
}

.fa.fa-thermometer-1:before {
  content: "\f2ca"
}

.fa.fa-thermometer-0:before {
  content: "\f2cb"
}

.fa.fa-bathtub:before,
.fa.fa-s15:before {
  content: "\f2cd"
}

.fa.fa-window-maximize,
.fa.fa-window-restore {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-times-rectangle:before {
  content: "\f410"
}

.fa.fa-window-close-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-window-close-o:before {
  content: "\f410"
}

.fa.fa-times-rectangle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-times-rectangle-o:before {
  content: "\f410"
}

.fa.fa-bandcamp,
.fa.fa-eercast,
.fa.fa-etsy,
.fa.fa-grav,
.fa.fa-imdb,
.fa.fa-ravelry {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-eercast:before {
  content: "\f2da"
}

.fa.fa-snowflake-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa.fa-snowflake-o:before {
  content: "\f2dc"
}

.fa.fa-superpowers,
.fa.fa-wpexplorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa.fa-cab:before {
  content: "\f1ba"
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.fadeInRight {
  animation-name: fadeInRight
}

/*! elementor - v3.27.0 - 03-02-2025 */
.elementor-widget-image {
  text-align: center
}

.elementor-widget-image a {
  display: inline-block
}

.elementor-widget-image a img[src$=".svg"] {
  width: 48px
}

.elementor-widget-image img {
  display: inline-block;
  vertical-align: middle
}

/*! elementor - v3.27.0 - 03-02-2025 */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a {
  color: inherit;
  font-size: inherit;
  line-height: inherit
}

.elementor-widget-heading .elementor-heading-title.elementor-size-small {
  font-size: 15px
}

.elementor-widget-heading .elementor-heading-title.elementor-size-medium {
  font-size: 19px
}

.elementor-widget-heading .elementor-heading-title.elementor-size-large {
  font-size: 29px
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xl {
  font-size: 39px
}

.elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
  font-size: 59px
}

/*! elementor - v3.27.0 - 03-02-2025 */
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,
.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container {
  overflow: hidden
}

.elementor-widget .elementor-icon-list-items.elementor-inline-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px
}

.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item {
  word-break: break-word
}

.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item {
  margin-left: 8px;
  margin-right: 8px
}

.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after {
  border-bottom: 0;
  border-left-width: 1px;
  border-right: 0;
  border-top: 0;
  border-style: solid;
  height: 100%;
  left: auto;
  position: relative;
  right: auto;
  right: -8px;
  width: auto
}

.elementor-widget .elementor-icon-list-items {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.elementor-widget .elementor-icon-list-item {
  margin: 0;
  padding: 0;
  position: relative
}

.elementor-widget .elementor-icon-list-item:after {
  bottom: 0;
  position: absolute;
  width: 100%
}

.elementor-widget .elementor-icon-list-item,
.elementor-widget .elementor-icon-list-item a {
  align-items: var(--icon-vertical-align, center);
  display: flex;
  font-size: inherit
}

.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text {
  align-self: center;
  padding-inline-start: 5px
}

.elementor-widget .elementor-icon-list-icon {
  display: flex;
  position: relative;
  top: var(--icon-vertical-offset, initial)
}

.elementor-widget .elementor-icon-list-icon svg {
  height: var(--e-icon-list-icon-size, 1em);
  width: var(--e-icon-list-icon-size, 1em)
}

.elementor-widget .elementor-icon-list-icon i {
  font-size: var(--e-icon-list-icon-size);
  width: 1.25em
}

.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon {
  text-align: var(--e-icon-list-icon-align)
}

.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg {
  margin: var(--e-icon-list-icon-margin, 0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)
}

.elementor-widget.elementor-list-item-link-full_width a {
  width: 100%
}

.elementor-widget.elementor-align-center .elementor-icon-list-item,
.elementor-widget.elementor-align-center .elementor-icon-list-item a {
  justify-content: center
}

.elementor-widget.elementor-align-center .elementor-icon-list-item:after {
  margin: auto
}

.elementor-widget.elementor-align-center .elementor-inline-items {
  justify-content: center
}

.elementor-widget.elementor-align-left .elementor-icon-list-item,
.elementor-widget.elementor-align-left .elementor-icon-list-item a {
  justify-content: flex-start;
  text-align: left
}

.elementor-widget.elementor-align-left .elementor-inline-items {
  justify-content: flex-start
}

.elementor-widget.elementor-align-right .elementor-icon-list-item,
.elementor-widget.elementor-align-right .elementor-icon-list-item a {
  justify-content: flex-end;
  text-align: right
}

.elementor-widget.elementor-align-right .elementor-icon-list-items {
  justify-content: flex-end
}

.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after {
  left: 0
}

.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after {
  right: 0
}

@media (min-width:-1) {

  .elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,
  .elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a {
    justify-content: center
  }

  .elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after {
    margin: auto
  }

  .elementor-widget.elementor-widescreen-align-center .elementor-inline-items {
    justify-content: center
  }

  .elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item,
  .elementor-widget.elementor-widescreen-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left
  }

  .elementor-widget.elementor-widescreen-align-left .elementor-inline-items {
    justify-content: flex-start
  }

  .elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item,
  .elementor-widget.elementor-widescreen-align-right .elementor-icon-list-item a {
    justify-content: flex-end;
    text-align: right
  }

  .elementor-widget.elementor-widescreen-align-right .elementor-icon-list-items {
    justify-content: flex-end
  }

  .elementor-widget:not(.elementor-widescreen-align-right) .elementor-icon-list-item:after {
    left: 0
  }

  .elementor-widget:not(.elementor-widescreen-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}

@media (max-width:-1) {

  .elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,
  .elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a {
    justify-content: center
  }

  .elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after {
    margin: auto
  }

  .elementor-widget.elementor-laptop-align-center .elementor-inline-items {
    justify-content: center
  }

  .elementor-widget.elementor-laptop-align-left .elementor-icon-list-item,
  .elementor-widget.elementor-laptop-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left
  }

  .elementor-widget.elementor-laptop-align-left .elementor-inline-items {
    justify-content: flex-start
  }

  .elementor-widget.elementor-laptop-align-right .elementor-icon-list-item,
  .elementor-widget.elementor-laptop-align-right .elementor-icon-list-item a {
    justify-content: flex-end;
    text-align: right
  }

  .elementor-widget.elementor-laptop-align-right .elementor-icon-list-items {
    justify-content: flex-end
  }

  .elementor-widget:not(.elementor-laptop-align-right) .elementor-icon-list-item:after {
    left: 0
  }

  .elementor-widget:not(.elementor-laptop-align-left) .elementor-icon-list-item:after {
    right: 0
  }

  .elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,
  .elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a {
    justify-content: center
  }

  .elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after {
    margin: auto
  }

  .elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items {
    justify-content: center
  }

  .elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item,
  .elementor-widget.elementor-tablet_extra-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left
  }

  .elementor-widget.elementor-tablet_extra-align-left .elementor-inline-items {
    justify-content: flex-start
  }

  .elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item,
  .elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-item a {
    justify-content: flex-end;
    text-align: right
  }

  .elementor-widget.elementor-tablet_extra-align-right .elementor-icon-list-items {
    justify-content: flex-end
  }

  .elementor-widget:not(.elementor-tablet_extra-align-right) .elementor-icon-list-item:after {
    left: 0
  }

  .elementor-widget:not(.elementor-tablet_extra-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}

@media (max-width:1024px) {

  .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,
  .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a {
    justify-content: center
  }

  .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after {
    margin: auto
  }

  .elementor-widget.elementor-tablet-align-center .elementor-inline-items {
    justify-content: center
  }

  .elementor-widget.elementor-tablet-align-left .elementor-icon-list-item,
  .elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left
  }

  .elementor-widget.elementor-tablet-align-left .elementor-inline-items {
    justify-content: flex-start
  }

  .elementor-widget.elementor-tablet-align-right .elementor-icon-list-item,
  .elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a {
    justify-content: flex-end;
    text-align: right
  }

  .elementor-widget.elementor-tablet-align-right .elementor-icon-list-items {
    justify-content: flex-end
  }

  .elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after {
    left: 0
  }

  .elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}

@media (max-width:-1) {

  .elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,
  .elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a {
    justify-content: center
  }

  .elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after {
    margin: auto
  }

  .elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items {
    justify-content: center
  }

  .elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item,
  .elementor-widget.elementor-mobile_extra-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left
  }

  .elementor-widget.elementor-mobile_extra-align-left .elementor-inline-items {
    justify-content: flex-start
  }

  .elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item,
  .elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-item a {
    justify-content: flex-end;
    text-align: right
  }

  .elementor-widget.elementor-mobile_extra-align-right .elementor-icon-list-items {
    justify-content: flex-end
  }

  .elementor-widget:not(.elementor-mobile_extra-align-right) .elementor-icon-list-item:after {
    left: 0
  }

  .elementor-widget:not(.elementor-mobile_extra-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}

@media (max-width:767px) {

  .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,
  .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a {
    justify-content: center
  }

  .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after {
    margin: auto
  }

  .elementor-widget.elementor-mobile-align-center .elementor-inline-items {
    justify-content: center
  }

  .elementor-widget.elementor-mobile-align-left .elementor-icon-list-item,
  .elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a {
    justify-content: flex-start;
    text-align: left
  }

  .elementor-widget.elementor-mobile-align-left .elementor-inline-items {
    justify-content: flex-start
  }

  .elementor-widget.elementor-mobile-align-right .elementor-icon-list-item,
  .elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a {
    justify-content: flex-end;
    text-align: right
  }

  .elementor-widget.elementor-mobile-align-right .elementor-icon-list-items {
    justify-content: flex-end
  }

  .elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after {
    left: 0
  }

  .elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}

#left-area ul.elementor-icon-list-items,
.elementor .elementor-element ul.elementor-icon-list-items,
.elementor-edit-area .elementor-element ul.elementor-icon-list-items {
  padding: 0
}

/*! elementor-pro - v3.25.0 - 20-11-2024 */
.elementor-widget-archive-posts:after,
.elementor-widget-posts:after {
  display: none
}

.elementor-posts-container.elementor-posts-masonry {
  align-items: flex-start
}

.elementor-posts-container:not(.elementor-posts-masonry) {
  align-items: stretch
}

.elementor-posts-container .elementor-post {
  margin: 0;
  padding: 0
}

.elementor-posts-container .elementor-post__excerpt {
  flex-grow: var(--read-more-alignment, 0)
}

.elementor-posts-container .elementor-post__thumbnail {
  overflow: hidden
}

.elementor-posts-container .elementor-post__thumbnail img {
  display: block;
  max-height: none;
  max-width: none;
  transition: filter .3s;
  width: 100%
}

.elementor-posts-container .elementor-post__thumbnail__link {
  display: block;
  position: relative;
  width: 100%
}

.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0
}

.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail img {
  height: auto;
  left: calc(50% + 1px);
  position: absolute;
  top: calc(50% + 1px);
  transform: scale(1.01) translate(-50%, -50%)
}

.elementor-posts-container.elementor-has-item-ratio .elementor-post__thumbnail.elementor-fit-height img {
  height: 100%;
  width: auto
}

.elementor-posts .elementor-post {
  flex-direction: column;
  transition-duration: .25s;
  transition-property: background, border, box-shadow
}

.elementor-posts .elementor-post__title {
  font-size: 18px;
  margin: 0
}

.elementor-posts .elementor-post__excerpt {
  margin-bottom: 10px
}

.elementor-posts .elementor-post__excerpt p {
  color: #777;
  font-size: 14px;
  line-height: 1.5em;
  margin: 0
}

.elementor-posts .elementor-post__text {
  display: var(--item-display, block);
  flex-direction: column;
  flex-grow: 1
}

.elementor-posts .elementor-post__meta-data {
  color: #adadad;
  font-size: 12px;
  line-height: 1.3em;
  margin-bottom: 13px
}

.elementor-posts .elementor-post__read-more {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700
}

.elementor-posts .elementor-post__thumbnail {
  position: relative
}

.elementor-posts--skin-classic .elementor-post {
  overflow: hidden
}

.elementor-posts--align-left .elementor-post {
  text-align: left
}

.elementor-posts--align-right .elementor-post {
  text-align: right
}

.elementor-posts--align-center .elementor-post {
  text-align: center
}

.elementor-posts--thumbnail-top .elementor-post__thumbnail__link {
  margin-bottom: 20px
}

.elementor-posts--thumbnail-top .elementor-post__text {
  width: 100%
}

.elementor-posts--thumbnail-top.elementor-posts--align-left .elementor-post__thumbnail__link {
  margin-right: auto
}

.elementor-posts--thumbnail-top.elementor-posts--align-right .elementor-post__thumbnail__link {
  margin-left: auto
}

.elementor-posts--thumbnail-top.elementor-posts--align-center .elementor-post__thumbnail__link {
  margin-left: auto;
  margin-right: auto
}

.elementor-posts--thumbnail-left .elementor-post,
.elementor-posts--thumbnail-right .elementor-post {
  flex-direction: row
}

.elementor-posts--thumbnail-left .elementor-post__thumbnail__link,
.elementor-posts--thumbnail-right .elementor-post__thumbnail__link {
  flex-shrink: 0;
  width: 25%
}

.elementor-posts--thumbnail-left .elementor-post__thumbnail__link {
  margin-right: 20px;
  order: 0
}

.elementor-posts--thumbnail-right .elementor-post__thumbnail__link {
  margin-left: 20px;
  order: 5
}

.elementor-posts--thumbnail-none .elementor-posts-container .elementor-post__thumbnail__link {
  display: none
}

.elementor-posts .elementor-post {
  display: flex
}

.elementor-posts .elementor-post__card {
  background-color: #fff;
  border: 0 solid #69727d;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: all .25s;
  width: 100%
}

.elementor-posts .elementor-post__card .elementor-post__thumbnail {
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d
}

.elementor-posts .elementor-post__card .elementor-post__thumbnail img {
  width: calc(100% + 1px)
}

.elementor-posts .elementor-post__card .elementor-post__text {
  margin-bottom: 0;
  margin-top: 20px;
  padding: 0 30px
}

.elementor-posts .elementor-post__card .elementor-post__read-more {
  display: inline-block;
  margin-bottom: 20px
}

.elementor-posts .elementor-post__card .elementor-post__meta-data {
  border-top: 1px solid #eaeaea;
  margin-bottom: 0;
  padding: 15px 30px
}

.elementor-posts .elementor-post__card .elementor-post__meta-data span+span:before {
  margin: 0 5px
}

.elementor-posts .elementor-post__card .elementor-post__title {
  font-size: 21px
}

.elementor-posts .elementor-post__card .elementor-post__excerpt {
  line-height: 1.7
}

.elementor-posts .elementor-post__card .elementor-post__excerpt,
.elementor-posts .elementor-post__card .elementor-post__title {
  margin-bottom: 25px
}

.elementor-posts .elementor-post__card .elementor-post__badge,
.elementor-posts .elementor-post__card .elementor-post__read-more {
  text-transform: uppercase
}

.elementor-posts .elementor-post__badge {
  background: #69727d;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin: 20px;
  padding: .6em 1.2em;
  position: absolute;
  top: 0
}

.elementor-posts .elementor-post__avatar {
  height: 0;
  padding: 0 30px;
  pointer-events: none;
  position: relative;
  top: -25px;
  width: 100%
}

.elementor-posts .elementor-post__avatar img {
  border-radius: 50%;
  pointer-events: all;
  transform: translateY(-50%);
  width: 60px
}

.elementor-posts .elementor-posts--skin-cards:not(.elementor-posts-masonry) .elementor-post__meta-data,
.elementor-posts--thumbnail-top .elementor-posts--skin-cards:not(.elementor-posts-masonry) .elementor-post__meta-data {
  margin-top: auto
}

.elementor-posts--thumbnail-none .elementor-post__card .elementor-post__avatar {
  height: auto;
  padding-top: 0;
  position: static
}

.elementor-posts--thumbnail-none .elementor-post__card .elementor-post__avatar img.avatar {
  transform: translateY(0);
  vertical-align: bottom
}

.elementor-posts--show-avatar .elementor-post__thumbnail__link {
  margin-bottom: 25px
}

.elementor-posts__hover-gradient .elementor-post__card .elementor-post__thumbnail__link:after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 75%);
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  opacity: 1;
  position: absolute;
  transition: all .3s ease-out;
  width: 100%
}

.elementor-posts__hover-gradient .elementor-post__card:hover .elementor-post__thumbnail__link:after {
  opacity: .5
}

.elementor-posts__hover-zoom-in .elementor-post__card .elementor-post__thumbnail.elementor-fit-height img {
  height: 100%
}

.elementor-posts__hover-zoom-in .elementor-post__card .elementor-post__thumbnail:not(.elementor-fit-height) img {
  width: calc(100% + 1px)
}

.elementor-posts__hover-zoom-in .elementor-post__card:hover .elementor-post__thumbnail.elementor-fit-height img {
  height: 115%
}

.elementor-posts__hover-zoom-in .elementor-post__card:hover .elementor-post__thumbnail:not(.elementor-fit-height) img {
  width: 115%
}

.elementor-posts__hover-zoom-out .elementor-post__card .elementor-post__thumbnail.elementor-fit-height img {
  height: 115%
}

.elementor-posts__hover-zoom-out .elementor-post__card .elementor-post__thumbnail:not(.elementor-fit-height) img {
  width: 115%
}

.elementor-posts__hover-zoom-out .elementor-post__card:hover .elementor-post__thumbnail.elementor-fit-height img {
  height: 100%
}

.elementor-posts__hover-zoom-out .elementor-post__card:hover .elementor-post__thumbnail:not(.elementor-fit-height) img {
  width: calc(100% + 1px)
}

.elementor-posts__hover-zoom-in .elementor-post__thumbnail img,
.elementor-posts__hover-zoom-out .elementor-post__thumbnail img {
  transition: filter .3s, height 1s cubic-bezier(0, .25, .07, 1), width 1s cubic-bezier(0, .25, .07, 1)
}

.elementor-card-shadow-yes .elementor-post__card {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15)
}

.elementor-card-shadow-yes .elementor-post__card:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15)
}

.elementor-posts--skin-full_content article {
  flex-direction: column;
  overflow: hidden
}

.elementor-posts--skin-full_content article .elementor-post__thumbnail {
  padding-bottom: 0
}

body.elementor-editor-active .elementor-posts--skin-archive_full_content,
body.elementor-editor-active .elementor-posts--skin-full_content {
  pointer-events: none
}

body.elementor-editor-active .elementor-posts--skin-archive_full_content .elementor-post__thumbnail__link,
body.elementor-editor-active .elementor-posts--skin-full_content .elementor-post__thumbnail__link {
  display: none
}

.elementor-posts.elementor-posts--skin-archive_full_content article.elementor-post,
body.elementor-editor-active .elementor-posts--show-thumbnail .elementor-post__thumbnail__link {
  display: block
}

.elementor-portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0
}

.elementor-portfolio__filter {
  cursor: pointer;
  margin: 0;
  padding: 8px
}

.elementor-portfolio__filter:focus-visible {
  outline: 1px auto -webkit-focus-ring-color
}

.elementor-portfolio-item {
  align-self: flex-start;
  margin: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  transition-property: transform, opacity;
  transition-timing-function: ease-in-out
}

.elementor-portfolio-item__title {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 0
}

.elementor-portfolio-item__tags__separator:before {
  content: ", "
}

.elementor-portfolio-item__overlay {
  background-color: hsla(213, 9%, 45%, .8);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 15px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: opacity 1s
}

.elementor-portfolio-item__img img[src=""] {
  background-color: rgba(0, 0, 0, .1);
  height: 100%
}

.elementor-portfolio-item:focus-within .elementor-portfolio-item__overlay,
.elementor-portfolio-item:hover .elementor-portfolio-item__overlay {
  opacity: 1;
  transition: opacity .5s
}

.elementor-portfolio.elementor-has-item-ratio {
  transition: height .5s
}

.elementor-portfolio.elementor-has-item-ratio .elementor-post__thumbnail {
  background-color: rgba(0, 0, 0, .1);
  position: absolute
}

.elementor-portfolio.elementor-has-item-ratio .elementor-post__thumbnail__link {
  padding-bottom: 56.25%
}

.elementor ul li.elementor-portfolio__filter {
  list-style-type: none
}

.e-con-inner>.elementor-widget-portfolio,
.e-con>.elementor-widget-portfolio {
  width: var(--container-widget-width);
  --flex-grow: var(--container-widget-flex-grow)
}

.elementor-widget-archive-posts.load-more-align-center .elementor-button-wrapper,
.elementor-widget-posts.load-more-align-center .elementor-button-wrapper {
  text-align: center
}

.elementor-widget-archive-posts.load-more-align-start .elementor-button-wrapper,
.elementor-widget-posts.load-more-align-start .elementor-button-wrapper {
  text-align: start
}

.elementor-widget-archive-posts.load-more-align-end .elementor-button-wrapper,
.elementor-widget-posts.load-more-align-end .elementor-button-wrapper {
  text-align: end
}

.elementor-widget-archive-posts.load-more-align-justify .elementor-button,
.elementor-widget-posts.load-more-align-justify .elementor-button {
  width: 100%
}

.elementor-widget-archive-posts.e-load-more-pagination-loading>.elementor-widget-container,
.elementor-widget-posts.e-load-more-pagination-loading>.elementor-widget-container {
  cursor: default
}

.elementor-widget-archive-posts.e-load-more-pagination-loading>.elementor-widget-container .e-load-more-spinner,
.elementor-widget-posts.e-load-more-pagination-loading>.elementor-widget-container .e-load-more-spinner {
  margin-top: var(--load-moreâ€”spacing, 30px)
}

.elementor-widget-archive-posts.e-load-more-pagination-loading>.elementor-widget-container .e-load-more-spinner i,
.elementor-widget-archive-posts.e-load-more-pagination-loading>.elementor-widget-container .e-load-more-spinner svg,
.elementor-widget-posts.e-load-more-pagination-loading>.elementor-widget-container .e-load-more-spinner i,
.elementor-widget-posts.e-load-more-pagination-loading>.elementor-widget-container .e-load-more-spinner svg {
  display: flex
}

.elementor-widget-archive-posts.e-load-more-pagination-loading>.elementor-widget-container>.elementor-button-wrapper .elementor-button-content-wrapper,
.elementor-widget-posts.e-load-more-pagination-loading>.elementor-widget-container>.elementor-button-wrapper .elementor-button-content-wrapper {
  visibility: hidden
}

.elementor-widget-archive-posts.e-load-more-pagination-end>.elementor-widget-container>.elementor-button-wrapper,
.elementor-widget-posts.e-load-more-pagination-end>.elementor-widget-container>.elementor-button-wrapper {
  display: none
}

.elementor-widget-archive-posts.e-load-more-pagination-end>.elementor-widget-container>.e-load-more-message,
.elementor-widget-posts.e-load-more-pagination-end>.elementor-widget-container>.e-load-more-message {
  display: block
}

.elementor-widget-archive-posts.e-load-more-no-spinner>.elementor-widget-container>.elementor-button-wrapper .elementor-button-content-wrapper,
.elementor-widget-posts.e-load-more-no-spinner>.elementor-widget-container>.elementor-button-wrapper .elementor-button-content-wrapper {
  visibility: visible
}

.elementor-widget-archive-posts>.elementor-widget-container .e-load-more-spinner,
.elementor-widget-posts>.elementor-widget-container .e-load-more-spinner {
  display: flex
}

.elementor-widget-archive-posts>.elementor-widget-container .e-load-more-spinner i,
.elementor-widget-archive-posts>.elementor-widget-container .e-load-more-spinner svg,
.elementor-widget-posts>.elementor-widget-container .e-load-more-spinner i,
.elementor-widget-posts>.elementor-widget-container .e-load-more-spinner svg {
  display: none;
  margin: 0 auto
}

.elementor-widget-archive-posts>.elementor-widget-container .e-load-more-spinner i,
.elementor-widget-posts>.elementor-widget-container .e-load-more-spinner i {
  color: var(--load-more-spinner-color)
}

.elementor-widget-archive-posts>.elementor-widget-container .e-load-more-spinner svg,
.elementor-widget-posts>.elementor-widget-container .e-load-more-spinner svg {
  fill: var(--load-more-spinner-color);
  height: 1em;
  width: 1em
}

.elementor-widget-archive-posts>.elementor-widget-container .e-load-more-message,
.elementor-widget-posts>.elementor-widget-container .e-load-more-message {
  color: var(--load-more-message-color);
  display: none;
  margin-top: var(--load-moreâ€”spacing, 30px);
  text-align: var(--load-more-message-alignment, center)
}

.elementor-widget-archive-posts>.elementor-widget-container>.elementor-button-wrapper,
.elementor-widget-posts>.elementor-widget-container>.elementor-button-wrapper {
  margin-top: var(--load-moreâ€”spacing, 30px)
}

.elementor-widget-archive-posts>.elementor-widget-container>.elementor-button-wrapper .e-load-more-spinner,
.elementor-widget-posts>.elementor-widget-container>.elementor-button-wrapper .e-load-more-spinner {
  left: 50%;
  margin: inherit;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%)
}

.elementor-widget-archive-posts>.elementor-widget-container>.elementor-button-wrapper .elementor-button,
.elementor-widget-posts>.elementor-widget-container>.elementor-button-wrapper .elementor-button {
  cursor: pointer;
  position: relative
}

/*! elementor - v3.27.0 - 03-02-2025 */
.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap {
  background-color: #69727d;
  color: #fff
}

.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap {
  background-color: transparent;
  border: 3px solid;
  color: #69727d
}

.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap {
  margin-top: 8px
}

.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter {
  height: 1em;
  width: 1em
}

.elementor-widget-text-editor .elementor-drop-cap {
  float: left;
  font-size: 50px;
  line-height: 1;
  text-align: center
}

.elementor-widget-text-editor .elementor-drop-cap-letter {
  display: inline-block
}

.elementor-13142 .elementor-element.elementor-element-1e67e576:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-1e67e576>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: #0554f2
}

.elementor-13142 .elementor-element.elementor-element-1e67e576>.elementor-background-overlay {
  background-color: #14133b;
  opacity: .8;
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-1e67e576 .elementor-background-overlay {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg)
}

.elementor-13142 .elementor-element.elementor-element-1e67e576 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s
}

.elementor-13142 .elementor-element.elementor-element-5ca52aae>.elementor-element-populated {
  margin: 0 0 0 15px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 15px
}

.elementor-13142 .elementor-element.elementor-element-11531da0 {
  width: auto;
  max-width: auto;
  top: -100px;
  z-index: 0
}

body:not(.rtl) .elementor-13142 .elementor-element.elementor-element-11531da0 {
  left: 0
}

body.rtl .elementor-13142 .elementor-element.elementor-element-11531da0 {
  right: 0
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32>.elementor-widget-container {
  padding: 100px 0
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 {
  z-index: 2;
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .rtin-title {
  font-size: 60px;
  line-height: 1.1em;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .subtitle {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button.barshow .subtitle:before {
  background-color: #fff
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .rtin-content {
  font-family: var(--e-global-typography-06ccb68-font-family), Sans-serif;
  font-size: var(--e-global-typography-06ccb68-font-size);
  line-height: var(--e-global-typography-06ccb68-line-height);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button ul li {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .rtin-content p {
  margin: 0
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .button-style-2 {
  margin: 30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-23ad6492 {
  width: auto;
  max-width: auto;
  z-index: 1;
  text-align: right
}

.elementor-13142 .elementor-element.elementor-element-23ad6492 img {
  width: 100%
}

.elementor-13142 .elementor-element.elementor-element-7e61221:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-7e61221>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7e61221 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 80px 0 40px
}

.elementor-13142 .elementor-element.elementor-element-7e61221>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-bc-flex-widget .elementor-13142 .elementor-element.elementor-element-e372027.elementor-column .elementor-widget-wrap {
  align-items: center
}

.elementor-13142 .elementor-element.elementor-element-e372027.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
  align-content: center;
  align-items: center
}

.elementor-13142 .elementor-element.elementor-element-e372027>.elementor-element-populated {
  margin: 0 10px 0 15px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 15px
}

.elementor-13142 .elementor-element.elementor-element-a433f31>.elementor-widget-container {
  margin: 0;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-a433f31 {
  z-index: 2;
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .rtin-title {
  font-size: 47px;
  text-transform: capitalize;
  line-height: 1.1em;
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .subtitle {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing);
  color: #0554f2
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button.barshow .subtitle:before {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .rtin-content {
  font-size: 18px;
  line-height: 1.6em;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button ul li {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .rtin-content p {
  margin: 24px 0 20px
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .button-style-2 {
  margin: 30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-3257118>.elementor-widget-container {
  margin: -40px 30px 0 0;
  padding: 0 25px 0 0
}

.elementor-13142 .elementor-element.elementor-element-3257118 .elementor-heading-title {
  font-family: "Rubik", Sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  line-height: 55px;
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-84997d6>.elementor-widget-container {
  margin: 20px 0 0;
  padding: 0;
  border-radius: 15px 15px 0 0
}

.elementor-13142 .elementor-element.elementor-element-84997d6 {
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-84997d6 .elementor-heading-title {
  font-size: 40px;
  font-weight: 500;
  color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-4196266>.elementor-widget-container {
  margin: -23px 0 0;
  padding: 10px 0 20px;
  border-radius: 0 0 15px 15px
}

.elementor-13142 .elementor-element.elementor-element-4196266 {
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-4196266 .elementor-heading-title {
  font-size: 32px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 40px;
  color: var(--e-global-color-4268f8e)
}

.elementor-bc-flex-widget .elementor-13142 .elementor-element.elementor-element-58e9938.elementor-column .elementor-widget-wrap {
  align-items: center
}

.elementor-13142 .elementor-element.elementor-element-58e9938.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
  align-content: center;
  align-items: center
}

.elementor-13142 .elementor-element.elementor-element-58e9938>.elementor-element-populated {
  margin: 0;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px
}

.elementor-13142 .elementor-element.elementor-element-2de9770c>.elementor-widget-container {
  margin: 10px 0 0;
  padding: 10px 10px 0
}

.elementor-13142 .elementor-element.elementor-element-2de9770c {
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-2de9770c .title-text-button .rtin-title {
  font-size: 25px
}

.elementor-13142 .elementor-element.elementor-element-2de9770c .title-text-button .subtitle {
  font-size: 20px
}

.elementor-13142 .elementor-element.elementor-element-2de9770c .title-text-button .rtin-custom-text {
  margin: 20px 0 40px
}

.elementor-13142 .elementor-element.elementor-element-2de9770c .title-text-button .rtin-content {
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  line-height: 30px
}

.elementor-13142 .elementor-element.elementor-element-2de9770c .title-text-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-0544383>.elementor-widget-container {
  margin: -35px 0 0;
  padding: 10px 10px 0
}

.elementor-13142 .elementor-element.elementor-element-0544383 {
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-0544383 .title-text-button .rtin-title {
  font-size: 25px
}

.elementor-13142 .elementor-element.elementor-element-0544383 .title-text-button .subtitle {
  font-size: 20px
}

.elementor-13142 .elementor-element.elementor-element-0544383 .title-text-button .rtin-custom-text {
  margin: 20px 0 40px
}

.elementor-13142 .elementor-element.elementor-element-0544383 .title-text-button .rtin-content {
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  line-height: 30px
}

.elementor-13142 .elementor-element.elementor-element-0544383 .title-text-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-033ca87 {
  text-align: left
}

.elementor-13142 .elementor-element.elementor-element-033ca87 .rtin-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-033ca87 .rtin-button {
  margin: 0 0 0 10px
}

.elementor-13142 .elementor-element.elementor-element-876824c:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-876824c>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-3407b9a)
}

.elementor-13142 .elementor-element.elementor-element-876824c {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 40px 0
}

.elementor-13142 .elementor-element.elementor-element-876824c>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-738a37a>.elementor-widget-container {
  margin: 0;
  padding: 0 150px
}

.elementor-13142 .elementor-element.elementor-element-738a37a {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-738a37a .sec-title .rtin-title {
  font-size: 40px;
  text-transform: capitalize;
  line-height: 48px;
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-738a37a .sec-title .sub-title {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 1px;
  color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-3bca7026 {
  margin-top: 50px;
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-1514a1cc>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 30px
}

.elementor-13142 .elementor-element.elementor-element-1514a1cc>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-4d663a5b .info-style4 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-4d663a5b .info-style6 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-4d663a5b .info-style8 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-4d663a5b .info-box .rtin-item .rtin-text {
  font-size: 16px
}

.elementor-13142 .elementor-element.elementor-element-4d663a5b .info-box .rtin-item .rtin-icon {
  font-size: 40px
}

.elementor-13142 .elementor-element.elementor-element-201cc03c .info-style4 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-201cc03c .info-style6 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-201cc03c .info-style8 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-201cc03c .info-box .rtin-item .rtin-text {
  font-size: 16px
}

.elementor-13142 .elementor-element.elementor-element-201cc03c .info-box .rtin-item .rtin-icon {
  font-size: 40px
}

.elementor-13142 .elementor-element.elementor-element-1db0b6ed>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 30px
}

.elementor-13142 .elementor-element.elementor-element-1db0b6ed>.elementor-element-populated {
  margin: 140px 0 0;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px;
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-5ee32d9a .info-style4 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-5ee32d9a .info-style6 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-5ee32d9a .info-style8 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-5ee32d9a .info-box .rtin-item .rtin-text {
  font-size: 16px
}

.elementor-13142 .elementor-element.elementor-element-5ee32d9a .info-box .rtin-item .rtin-icon {
  font-size: 40px
}

.elementor-13142 .elementor-element.elementor-element-5c03fe9d .info-style4 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-5c03fe9d .info-style6 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-5c03fe9d .info-style8 {
  padding: 55px 43px 50px !important
}

.elementor-13142 .elementor-element.elementor-element-5c03fe9d .info-box .rtin-item .rtin-text {
  font-size: 16px
}

.elementor-13142 .elementor-element.elementor-element-5c03fe9d .info-box .rtin-item .rtin-icon {
  font-size: 40px
}

.elementor-13142 .elementor-element.elementor-element-b63e4b5>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 30px
}

.elementor-13142 .elementor-element.elementor-element-b63e4b5>.elementor-element-populated {
  margin: 0 0 0 15px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 15px;
  padding: 30px 30px 30px 0
}

.elementor-13142 .elementor-element.elementor-element-260ff6c5>.elementor-widget-container {
  margin: 250px 0 0
}

.elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height)
}

.elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .subtitle {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
}

.elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-content {
  font-family: var(--e-global-typography-06ccb68-font-family), Sans-serif;
  font-size: var(--e-global-typography-06ccb68-font-size);
  line-height: var(--e-global-typography-06ccb68-line-height);
  color: var(--e-global-color-855deac)
}

.elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button ul li {
  color: var(--e-global-color-855deac)
}

.elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-content p {
  margin: 20px 0
}

.elementor-13142 .elementor-element.elementor-element-b107ca9>.elementor-widget-container {
  margin: -30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child) {
  padding-bottom: calc(5px/2)
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child) {
  margin-top: calc(5px/2)
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item {
  margin-right: calc(5px/2);
  margin-left: calc(5px/2)
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-items.elementor-inline-items {
  margin-right: calc(-5px/2);
  margin-left: calc(-5px/2)
}

body.rtl .elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after {
  left: calc(-5px/2)
}

body:not(.rtl) .elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after {
  right: calc(-5px/2)
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-icon i {
  color: #0554f2;
  transition: color .3s
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-icon svg {
  fill: #0554f2;
  transition: fill .3s
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 {
  --e-icon-list-icon-size: 20px;
  --icon-vertical-offset: 0px
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-icon {
  padding-right: 10px
}

.elementor-13142 .elementor-element.elementor-element-b107ca9 .elementor-icon-list-text {
  color: #14133b;
  transition: color .3s
}

.elementor-13142 .elementor-element.elementor-element-4446ecaf .rtin-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-4446ecaf .rtin-button {
  margin: 0
}

.elementor-13142 .elementor-element.elementor-element-90328b8>.elementor-element-populated {
  margin: 0;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px
}

.elementor-13142 .elementor-element.elementor-element-7f17e22a:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-7f17e22a>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-7f17e22a {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 0
}

.elementor-13142 .elementor-element.elementor-element-7f17e22a>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-6c11a3bb>.elementor-element-populated {
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-fc06b18>.elementor-widget-container {
  margin: 0;
  padding: 0 150px
}

.elementor-13142 .elementor-element.elementor-element-fc06b18 {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title .rtin-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title .sub-title {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title.style3 .sub-title:before {
  background-color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7c63d79>.elementor-element-populated {
  margin: 10px 10px 10px 5px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 5px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-e42cdc1 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-e42cdc1 .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-e42cdc1 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-e42cdc1 .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-d500b3f>.elementor-element-populated {
  margin: 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-770805e {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-770805e .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-770805e .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-770805e .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-1472512>.elementor-element-populated {
  margin: 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-5f737f6 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-5f737f6 .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-5f737f6 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-5f737f6 .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-69421f7>.elementor-element-populated {
  margin: 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-fbd3573 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-fbd3573 .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-fbd3573 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-fbd3573 .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7c9affa>.elementor-element-populated {
  margin: 10px 10px 10px 5px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 5px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-0f87c2d {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-0f87c2d .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-0f87c2d .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-0f87c2d .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-e794e2e>.elementor-element-populated {
  margin: 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-fe4f086 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-fe4f086 .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-fe4f086 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-fe4f086 .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7d4e2ff>.elementor-element-populated {
  margin: 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-52d614c {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-52d614c .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-52d614c .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-52d614c .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-4201569>.elementor-element-populated {
  margin: 10px;
  --e-column-margin-right: 10px;
  --e-column-margin-left: 10px;
  padding: 10px
}

.elementor-13142 .elementor-element.elementor-element-4cad5fb {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-4cad5fb .info-box .rtin-title {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-4cad5fb .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-4cad5fb .info-box .rtin-item .rtin-icon {
  font-size: 45px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-4ad180c8:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-4ad180c8>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-3407b9a);
}

.elementor-13142 .elementor-element.elementor-element-4ad180c8 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 40px 0
}

.elementor-13142 .elementor-element.elementor-element-4ad180c8>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-59fe998c>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-59fe998c>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f>.elementor-widget-container {
  margin: 0;
  padding: 0 80px
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-title {
  font-size: 40px;
  text-transform: capitalize;
  line-height: 48px;
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .subtitle {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 1px;
  color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button.barshow .subtitle:before {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-content {
  font-family: var(--e-global-typography-06ccb68-font-family), Sans-serif;
  font-size: var(--e-global-typography-06ccb68-font-size);
  line-height: var(--e-global-typography-06ccb68-line-height);
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button ul li {
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-content p {
  margin: 0
}

.elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .button-style-2 {
  margin: 20px 0 0
}

.elementor-13142 .elementor-element.elementor-element-eb32542 {
  --grid-row-gap: 35px;
  --grid-column-gap: 16px
}

.elementor-13142 .elementor-element.elementor-element-eb32542>.elementor-widget-container {
  padding: 50px 0 0
}

.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__thumbnail__link {
  width: 100%
}

.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__meta-data span+span:before {
  content: "â€¢"
}

.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__card {
  border-radius: 10px
}

.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__text {
  margin-top: 20px
}

.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__title,
.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__title a {
  color: var(--e-global-color-4268f8e);
  font-family: "Rubik", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px
}

.elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__excerpt p {
  color: var(--e-global-color-855deac);
  font-family: var(--e-global-typography-06ccb68-font-family), Sans-serif;
  font-size: var(--e-global-typography-06ccb68-font-size);
  line-height: var(--e-global-typography-06ccb68-line-height)
}

.elementor-13142 .elementor-element.elementor-element-77f9727>.elementor-widget-container {
  margin: 50px 15px 0 0
}

.elementor-13142 .elementor-element.elementor-element-77f9727 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-77f9727 .rtin-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-77f9727 .rtin-button .button-style-2 {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-639ed3c3>.elementor-background-overlay {
  background-color: #14133b;
  opacity: .9;
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-639ed3c3 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 40px 0
}

.elementor-13142 .elementor-element.elementor-element-37f909d5>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-37f909d5>.elementor-element-populated {
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-2dc5a398>.elementor-widget-container {
  margin: 0;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-2dc5a398 {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title .rtin-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title .sub-title {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title.style3 .sub-title:before {
  background-color: #fff
}

.elementor-13142 .elementor-element.elementor-element-764ec766 {
  margin-top: 50px;
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-3d31fed>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-8ca81dd {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-8ca81dd .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-8ca81dd .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-8ca81dd .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-352ccb7>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-2eb03115 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-2eb03115 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-2eb03115 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2eb03115 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-9b69cd2>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-df15294 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-df15294 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-df15294 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-df15294 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7ee6cbde>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-b99d7e0 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-b99d7e0 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-b99d7e0 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-b99d7e0 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-4345a62>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-2fb50440 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-2fb50440 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-2fb50440 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2fb50440 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-3666e090>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-2b9bd7b9 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-2b9bd7b9 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-2b9bd7b9 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2b9bd7b9 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-e738301>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-2dd5fab {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-2dd5fab .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-2dd5fab .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2dd5fab .info-box .rtin-item .rtin-icon {
  font-size: 30px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-f666552>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-850ab31 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-item .rtin-text {
  font-size: 12px
}

.elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-item .rtin-icon {
  font-size: 39px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-e9bd61d {
  padding: 30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-c1ba809>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-7a32a75 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-7a32a75 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-7a32a75 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7a32a75 .info-box .rtin-item .rtin-icon {
  font-size: 35px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-29b61193>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-442f39d0 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-442f39d0 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-442f39d0 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-442f39d0 .info-box .rtin-item .rtin-text {
  font-size: 12px
}

.elementor-13142 .elementor-element.elementor-element-442f39d0 .info-box .rtin-item .rtin-icon {
  font-size: 35px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-b04e6ed>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-97657c1 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-97657c1 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-97657c1 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-97657c1 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-cafa711>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-82438a6 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-82438a6 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-82438a6 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-82438a6 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-97da5f7>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-393ad37 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-393ad37 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-393ad37 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-393ad37 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-38cebfc>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-7ec2be1 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-7ec2be1 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-7ec2be1 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-7ec2be1 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-13ba786>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-4a89b1c {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-4a89b1c .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-4a89b1c .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-4a89b1c .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-0e37608>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-8ded160 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-8ded160 .info-box .rtin-title {
  font-size: 14px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-8ded160 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-8ded160 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-222e4fd {
  padding: 40px 0 0
}

.elementor-13142 .elementor-element.elementor-element-732af8e>.elementor-element-populated {
  margin: 0;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px
}

.elementor-13142 .elementor-element.elementor-element-53c34df>.elementor-widget-container {
  margin: 0;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-53c34df {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-53c34df .sec-title .rtin-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height);
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-53c34df .sec-title .sub-title {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing);
  color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-53c34df .sec-title.style3 .sub-title:before {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-2c837f80>.elementor-widget-container {
  margin: 5px 5px 0 8px
}

.elementor-13142 .elementor-element.elementor-element-e7e92dc:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-e7e92dc>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-e7e92dc {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 0 30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-e7e92dc>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-e40a680>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-e40a680>.elementor-element-populated {
  margin: 0;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px
}

.elementor-13142 .elementor-element.elementor-element-0f09b5f>.elementor-widget-container {
  margin: 0;
  padding: 0 5px
}

.elementor-13142 .elementor-element.elementor-element-0f09b5f {
  z-index: 0
}

.elementor-13142 .elementor-element.elementor-element-6de469e:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-6de469e>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: #f5faff
}

.elementor-13142 .elementor-element.elementor-element-6de469e>.elementor-background-overlay {
  opacity: 1;
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-6de469e {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 40px 15px
}

.elementor-13142 .elementor-element.elementor-element-7163276>.elementor-element-populated,
.elementor-13142 .elementor-element.elementor-element-7163276>.elementor-element-populated>.elementor-background-overlay,
.elementor-13142 .elementor-element.elementor-element-7163276>.elementor-background-slideshow {
  border-radius: 15px
}

.elementor-13142 .elementor-element.elementor-element-7163276>.elementor-element-populated {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  margin: 10px 18px 0 15px;
  --e-column-margin-right: 18px;
  --e-column-margin-left: 15px;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-7163276>.elementor-element-populated>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-4d4c2fb>.elementor-element-populated {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s
}

.elementor-13142 .elementor-element.elementor-element-4d4c2fb>.elementor-element-populated>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-d7bc00e {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-d7bc00e .elementor-heading-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height);
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-612de71>.elementor-widget-container {
  margin: -15px 0 0;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-612de71 {
  text-align: center;
  color: #444;
  font-size: 18px;
  line-height: 25px
}

.elementor-13142 .elementor-element.elementor-element-5a70b64 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-5a70b64 .rtin-button .button-style-2 {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-5a70b64 .rtin-button {
  margin: 0
}

.elementor-13142 .elementor-element.elementor-element-486b2b3:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-486b2b3>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-486b2b3 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px 0
}

.elementor-13142 .elementor-element.elementor-element-486b2b3>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-dfaead9>.elementor-element-populated {
  margin: 0 0 0 15px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 15px
}

.elementor-13142 .elementor-element.elementor-element-81b2034>.elementor-widget-container {
  margin: 0;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-81b2034 {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .rtin-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .barshow .title-bar {
  background: #fff
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .subtitle {
  font-family: var(--e-global-typography-fa93f47-font-family), Sans-serif;
  font-size: var(--e-global-typography-fa93f47-font-size);
  text-transform: var(--e-global-typography-fa93f47-text-transform);
  line-height: var(--e-global-typography-fa93f47-line-height);
  letter-spacing: var(--e-global-typography-fa93f47-letter-spacing);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button.barshow .subtitle:before {
  background-color: #fff
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .rtin-content {
  font-size: 18px;
  line-height: 1.6em;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button ul li {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .rtin-content p {
  margin: 24px 0 20px
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .button-style-2 {
  margin: 30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-7f517f4 {
  margin-top: 25px;
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-62f5332>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-444fd8b {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-444fd8b .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-444fd8b .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-444fd8b .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-dac545f>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-5c14138 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-5c14138 .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-5c14138 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-5c14138 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-3eba6b7>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-489ed05 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-489ed05 .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-489ed05 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-489ed05 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-926d8ab>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-2549407 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-2549407 .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-2549407 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-2549407 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-8f93204 {
  margin-top: 30px;
  margin-bottom: 0
}

.elementor-13142 .elementor-element.elementor-element-0a00db7>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-5f12d2e {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-5f12d2e .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-5f12d2e .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-5f12d2e .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-4c3e6c3>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-31447e4 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-31447e4 .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-31447e4 .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-31447e4 .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-f004afb>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-380895b {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-380895b .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-380895b .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-380895b .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-fc19980>.elementor-element-populated {
  padding: 0 15px
}

.elementor-13142 .elementor-element.elementor-element-befa4da {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-befa4da .info-box .rtin-title {
  font-size: 16px;
  color: #fff;
  margin: 0 !important
}

.elementor-13142 .elementor-element.elementor-element-befa4da .info-box .rtin-title a {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-befa4da .info-box .rtin-item .rtin-icon {
  font-size: 40px;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-97ec3a8:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-97ec3a8>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-3407b9a)
}

.elementor-13142 .elementor-element.elementor-element-97ec3a8 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 40px 0
}

.elementor-13142 .elementor-element.elementor-element-97ec3a8>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-2c91f42>.elementor-element-populated {
  margin: 0 18px 0 15px;
  --e-column-margin-right: 18px;
  --e-column-margin-left: 15px
}

.elementor-13142 .elementor-element.elementor-element-9836aa4>.elementor-widget-container {
  margin: 0;
  padding: 0 150px
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 {
  z-index: 2;
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .rtin-title {
  font-size: 40px;
  text-transform: capitalize;
  line-height: 48px;
  color: var(--e-global-color-4268f8e)
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .subtitle {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 1px;
  color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .rtin-content {
  font-size: 18px;
  line-height: 1.6em;
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button ul li {
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .rtin-content p {
  margin: 24px 0 20px
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .button-style-2 {
  margin: 30px 0 0
}

.elementor-13142 .elementor-element.elementor-element-8475745:not(.elementor-motion-effects-element-type-background),
.elementor-13142 .elementor-element.elementor-element-8475745>.elementor-motion-effects-container>.elementor-motion-effects-layer {
  background-color: var(--e-global-color-4268f8e);
  background-image: none;
  background-position: 70px 83px;
  background-repeat: no-repeat;
  background-size: contain
}

.elementor-13142 .elementor-element.elementor-element-8475745>.elementor-background-overlay {
  background-image: none;
  background-position: 95% -141px;
  background-repeat: no-repeat;
  opacity: 1;
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-8475745 {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  padding: 40px 15px
}

.elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-element-populated,
.elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-element-populated>.elementor-background-overlay,
.elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-background-slideshow {
  border-radius: 15px
}

.elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-element-populated {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  margin: 10px 18px 0 15px;
  --e-column-margin-right: 18px;
  --e-column-margin-left: 15px;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-element-populated>.elementor-background-overlay {
  transition: background .3s, border-radius .3s, opacity .3s
}

.elementor-13142 .elementor-element.elementor-element-c380436 {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-c380436 .elementor-heading-title {
  font-family: var(--e-global-typography-c3c33c5-font-family), Sans-serif;
  font-size: var(--e-global-typography-c3c33c5-font-size);
  text-transform: var(--e-global-typography-c3c33c5-text-transform);
  line-height: var(--e-global-typography-c3c33c5-line-height);
  color: #fff
}

.elementor-13142 .elementor-element.elementor-element-d2e6480>.elementor-widget-container {
  margin: -15px 0 0;
  padding: 0
}

.elementor-13142 .elementor-element.elementor-element-d2e6480 {
  text-align: center;
  color: #fff;
  font-family: var(--e-global-typography-06ccb68-font-family), Sans-serif;
  font-size: var(--e-global-typography-06ccb68-font-size);
  line-height: var(--e-global-typography-06ccb68-line-height)
}

.elementor-13142 .elementor-element.elementor-element-497d77f>.elementor-widget-container {
  margin: -5px 0 0
}

.elementor-13142 .elementor-element.elementor-element-497d77f {
  text-align: center
}

.elementor-13142 .elementor-element.elementor-element-497d77f .rtin-button .btn-common {
  text-transform: uppercase
}

.elementor-13142 .elementor-element.elementor-element-497d77f .rtin-button .button-style-2 {
  background-color: var(--e-global-color-255e0ed)
}

.elementor-13142 .elementor-element.elementor-element-497d77f .rtin-button {
  margin: 0
}

.elementor-13142 .elementor-element.elementor-element-31f3a8f {
  padding: 0 0 20px
}

@media(min-width:768px) {
  .elementor-13142 .elementor-element.elementor-element-e372027 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-58e9938 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-1514a1cc {
    width: 30%
  }

  .elementor-13142 .elementor-element.elementor-element-1db0b6ed {
    width: 30%
  }

  .elementor-13142 .elementor-element.elementor-element-b63e4b5 {
    width: 39.666%
  }
}

@media(max-width:1024px) {
  .elementor-13142 .elementor-element.elementor-element-5ca52aae>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 50px
  }

  .elementor-13142 .elementor-element.elementor-element-11531da0 {
    z-index: 0
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32>.elementor-widget-container {
    margin: 0;
    padding: 100px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .rtin-content {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-23ad6492 {
    z-index: 0
  }

  .elementor-13142 .elementor-element.elementor-element-7e61221 {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-e372027>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 5px 5px 5px 2px
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31>.elementor-widget-container {
    margin: 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-3257118>.elementor-widget-container {
    margin: -40px 0 0;
    padding: 0 10px
  }

  .elementor-13142 .elementor-element.elementor-element-3257118 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-3257118 .elementor-heading-title {
    font-size: 45px;
    line-height: 55px
  }

  .elementor-13142 .elementor-element.elementor-element-84997d6>.elementor-widget-container {
    margin: 0;
    padding: 0 0 0 10px
  }

  .elementor-13142 .elementor-element.elementor-element-84997d6 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-4196266>.elementor-widget-container {
    margin: -15px 0 0;
    padding: 0 0 0 10px
  }

  .elementor-13142 .elementor-element.elementor-element-4196266 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-4196266 .elementor-heading-title {
    font-size: 40px
  }

  .elementor-13142 .elementor-element.elementor-element-2de9770c>.elementor-widget-container {
    margin: 0;
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-0544383>.elementor-widget-container {
    margin: -45px 0 0;
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-033ca87 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-033ca87 .rtin-button {
    margin: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-876824c {
    padding: 50px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-738a37a>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-738a37a .sec-title .rtin-title {
    line-height: 48px
  }

  .elementor-13142 .elementor-element.elementor-element-1db0b6ed>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 10px
  }

  .elementor-13142 .elementor-element.elementor-element-b63e4b5>.elementor-element-populated {
    padding: 30px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5>.elementor-widget-container {
    margin: 0;
    padding: 10px 10px 10px 0
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-content {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-4446ecaf .rtin-button {
    margin: 0
  }

  .elementor-13142 .elementor-element.elementor-element-90328b8>.elementor-element-populated {
    padding: 40px 10px 10px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7f17e22a {
    padding: 50px 0
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title .sub-title {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-7c63d79>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-d500b3f>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-1472512>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-69421f7>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7c9affa>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-e794e2e>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7d4e2ff>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-4201569>.elementor-element-populated {
    margin: 0 0 0 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-4ad180c8 {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-title {
    line-height: 48px
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-content {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__title,
  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__title a {
    font-size: 25px;
    line-height: 32px
  }

  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__excerpt p {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-639ed3c3 {
    padding: 50px 0
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title .sub-title {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-764ec766 {
    margin-top: 0;
    margin-bottom: 0
  }

  .elementor-13142 .elementor-element.elementor-element-9b69cd2>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-7ee6cbde>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-4345a62>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-3666e090>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-2dd5fab .info-box .rtin-item .rtin-icon {
    margin: 4px 0 0 !important
  }

  .elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-title {
    margin: 0 !important
  }

  .elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-item .rtin-text {
    margin: 0 !important
  }

  .elementor-13142 .elementor-element.elementor-element-850ab31 .info-box .rtin-item .rtin-icon {
    margin: 0 !important
  }

  .elementor-13142 .elementor-element.elementor-element-cafa711>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-38cebfc>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-0e37608>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-222e4fd {
    padding: 40px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-53c34df>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-53c34df .sec-title .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-53c34df .sec-title .sub-title {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-e7e92dc {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-e40a680>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-0f09b5f>.elementor-widget-container {
    margin: 0;
    padding: 0 0 0 30px
  }

  .elementor-13142 .elementor-element.elementor-element-6de469e {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-7163276>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-d7bc00e .elementor-heading-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-612de71>.elementor-widget-container {
    margin: -11px 0 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-612de71 {
    text-align: center;
    font-size: 15px;
    line-height: 20px
  }

  .elementor-13142 .elementor-element.elementor-element-486b2b3 {
    padding: 60px 0
  }

  .elementor-13142 .elementor-element.elementor-element-c47ce92 {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-dfaead9>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-7f517f4 {
    margin-top: 0;
    margin-bottom: 0
  }

  .elementor-13142 .elementor-element.elementor-element-62f5332>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-dac545f>.elementor-element-populated {
    padding: 0 10px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-3eba6b7>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-926d8ab>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-8f93204 {
    margin-top: 0;
    margin-bottom: 0
  }

  .elementor-13142 .elementor-element.elementor-element-0a00db7>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-4c3e6c3>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-f004afb>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-fc19980>.elementor-element-populated {
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-97ec3a8 {
    padding: 60px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-2c91f42>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 15px
  }

  .elementor-13142 .elementor-element.elementor-element-9836aa4>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-8475745:not(.elementor-motion-effects-element-type-background),
  .elementor-13142 .elementor-element.elementor-element-8475745>.elementor-motion-effects-container>.elementor-motion-effects-layer {
    background-position: 657px 166px
  }

  .elementor-13142 .elementor-element.elementor-element-8475745>.elementor-background-overlay {
    background-position: 3% 74px;
    background-size: contain
  }

  .elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-c380436>.elementor-widget-container {
    margin: 10px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-c380436 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-c380436 .elementor-heading-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-d2e6480>.elementor-widget-container {
    margin: -11px 0 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-d2e6480 {
    text-align: center;
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-497d77f>.elementor-widget-container {
    margin: -20px 0 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-497d77f {
    text-align: center
  }
}

@media(max-width:767px) {
  .elementor-13142 .elementor-element.elementor-element-5ca52aae>.elementor-element-populated {
    margin: 0 0 30px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32>.elementor-widget-container {
    margin: 0;
    padding: 90px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32 {
    text-align: left
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .rtin-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-1f4a1d32 .title-text-button .rtin-content {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-7e61221 {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-e372027>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31>.elementor-widget-container {
    margin: 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .rtin-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-a433f31 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-3257118>.elementor-widget-container {
    margin: -40px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-3257118 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-3257118 .elementor-heading-title {
    font-size: 35px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-84997d6>.elementor-widget-container {
    margin: 0 0 0 2px;
    padding: 0 0 0 10px
  }

  .elementor-13142 .elementor-element.elementor-element-84997d6 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-84997d6 .elementor-heading-title {
    font-size: 30px
  }

  .elementor-13142 .elementor-element.elementor-element-4196266>.elementor-widget-container {
    margin: -20px 0 0 2px;
    padding: 0 0 0 10px
  }

  .elementor-13142 .elementor-element.elementor-element-4196266 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-4196266 .elementor-heading-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-58e9938>.elementor-element-populated {
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-2de9770c>.elementor-widget-container {
    margin: 0;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-2de9770c .title-text-button .rtin-title {
    font-size: 34px
  }

  .elementor-13142 .elementor-element.elementor-element-0544383>.elementor-widget-container {
    margin: 0;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-0544383 .title-text-button .rtin-title {
    font-size: 34px
  }

  .elementor-13142 .elementor-element.elementor-element-033ca87>.elementor-widget-container {
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-033ca87 .rtin-button {
    margin: 0
  }

  .elementor-13142 .elementor-element.elementor-element-876824c {
    padding: 50px 0 40px
  }

  .elementor-13142 .elementor-element.elementor-element-738a37a>.elementor-widget-container {
    margin: 0 0 0 10px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-738a37a {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-738a37a .sec-title .rtin-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-738a37a .sec-title .sub-title {
    font-size: 15px
  }

  .elementor-13142 .elementor-element.elementor-element-1514a1cc>.elementor-element-populated {
    margin: 5px 0 5px 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px;
    padding: 12px
  }

  .elementor-13142 .elementor-element.elementor-element-4d663a5b>.elementor-widget-container {
    margin: -50px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-4d663a5b {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-201cc03c {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-1db0b6ed>.elementor-element-populated {
    margin: 5px 0 5px 5px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 5px;
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-5ee32d9a>.elementor-widget-container {
    margin: -30px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-5ee32d9a {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-5c03fe9d {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-b63e4b5>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5>.elementor-widget-container {
    padding: 30px 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-260ff6c5 .title-text-button .rtin-content {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-b107ca9>.elementor-widget-container {
    margin: -40px 0 0;
    padding: 10px 10px 10px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-4446ecaf>.elementor-widget-container {
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-d53e261 {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-90328b8>.elementor-element-populated {
    padding: 10px 10px 10px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7f17e22a {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-6c11a3bb>.elementor-element-populated {
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18>.elementor-widget-container {
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-fc06b18 .sec-title .sub-title {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-7c63d79>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-e42cdc1>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-d500b3f>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-770805e>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-1472512>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-5f737f6>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-69421f7>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-fbd3573>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7c9affa>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-0f87c2d>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-e794e2e>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-fe4f086>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7d4e2ff>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-52d614c>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-4201569>.elementor-element-populated {
    margin: 0 0 20px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-4cad5fb>.elementor-widget-container {
    padding: 5px 0 5px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-4ad180c8 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-59fe998c>.elementor-element-populated {
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f>.elementor-widget-container {
    margin: 0 0 0 -10px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .subtitle {
    font-size: 15px
  }

  .elementor-13142 .elementor-element.elementor-element-ba2b97f .title-text-button .rtin-content {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__thumbnail__link {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__title,
  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__title a {
    font-size: 22px;
    line-height: 28px
  }

  .elementor-13142 .elementor-element.elementor-element-eb32542 .elementor-post__excerpt p {
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-639ed3c3 {
    padding: 40px 0
  }

  .elementor-13142 .elementor-element.elementor-element-37f909d5>.elementor-element-populated {
    padding: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398>.elementor-widget-container {
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-2dc5a398 .sec-title .sub-title {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-764ec766 {
    margin-top: 0;
    margin-bottom: 0
  }

  .elementor-13142 .elementor-element.elementor-element-3d31fed>.elementor-element-populated {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-8ca81dd>.elementor-widget-container {
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-352ccb7>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-2eb03115>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-9b69cd2>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-7ee6cbde>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-4345a62>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-3666e090>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-e738301>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-f666552>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-c1ba809>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-29b61193>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-b04e6ed>.elementor-element-populated {
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-cafa711>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-97da5f7>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-38cebfc>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-13ba786>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-0e37608>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 0 0 5px
  }

  .elementor-13142 .elementor-element.elementor-element-222e4fd {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-732af8e>.elementor-element-populated {
    padding: 5px
  }

  .elementor-13142 .elementor-element.elementor-element-53c34df>.elementor-widget-container {
    padding: 50px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-53c34df .sec-title .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-53c34df .sec-title .sub-title {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-2c837f80>.elementor-widget-container {
    margin: 0;
    padding: 0 0 0 2px
  }

  .elementor-13142 .elementor-element.elementor-element-e7e92dc {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 0 20px 5px
  }

  .elementor-13142 .elementor-element.elementor-element-e40a680>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-0f09b5f>.elementor-widget-container {
    margin: 0;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-6de469e {
    padding: 30px 0
  }

  .elementor-13142 .elementor-element.elementor-element-7163276>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-4d4c2fb>.elementor-element-populated,
  .elementor-13142 .elementor-element.elementor-element-4d4c2fb>.elementor-element-populated>.elementor-background-overlay,
  .elementor-13142 .elementor-element.elementor-element-4d4c2fb>.elementor-background-slideshow {
    border-radius: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-4d4c2fb>.elementor-element-populated {
    padding: 0 0 0 6px
  }

  .elementor-13142 .elementor-element.elementor-element-d7bc00e>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-d7bc00e .elementor-heading-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-612de71>.elementor-widget-container {
    margin: 0;
    padding: 0 20px
  }

  .elementor-13142 .elementor-element.elementor-element-612de71 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-486b2b3 {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-c47ce92 {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-dfaead9>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034>.elementor-widget-container {
    padding: 50px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .rtin-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-81b2034 .title-text-button .subtitle {
    font-size: var(--e-global-typography-fa93f47-font-size);
    line-height: var(--e-global-typography-fa93f47-line-height);
    letter-spacing: var(--e-global-typography-fa93f47-letter-spacing)
  }

  .elementor-13142 .elementor-element.elementor-element-7f517f4 {
    margin-top: 0;
    margin-bottom: 0
  }

  .elementor-13142 .elementor-element.elementor-element-62f5332>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-dac545f>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 10px 0 15px
  }

  .elementor-13142 .elementor-element.elementor-element-3eba6b7>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-926d8ab>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-8f93204 {
    margin-top: 0;
    margin-bottom: 50px
  }

  .elementor-13142 .elementor-element.elementor-element-0a00db7>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-4c3e6c3>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-f004afb>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-fc19980>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px
  }

  .elementor-13142 .elementor-element.elementor-element-97ec3a8 {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-2c91f42>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-9836aa4>.elementor-widget-container {
    padding: 50px 0 0
  }

  .elementor-13142 .elementor-element.elementor-element-9836aa4 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .rtin-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .subtitle {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 1px
  }

  .elementor-13142 .elementor-element.elementor-element-9836aa4 .title-text-button .rtin-content p {
    margin: 0
  }

  .elementor-13142 .elementor-element.elementor-element-d5e8d4e>.elementor-widget-container {
    padding: 10px 10px 10px 15px
  }

  .elementor-13142 .elementor-element.elementor-element-8475745:not(.elementor-motion-effects-element-type-background),
  .elementor-13142 .elementor-element.elementor-element-8475745>.elementor-motion-effects-container>.elementor-motion-effects-layer {
    background-position: 100px 0;
    background-size: 100px auto
  }

  .elementor-13142 .elementor-element.elementor-element-8475745>.elementor-background-overlay {
    background-position: 100% 504px;
    background-size: 100px auto
  }

  .elementor-13142 .elementor-element.elementor-element-6fb7c3f>.elementor-element-populated {
    margin: 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-6698371 {
    margin-top: 10px;
    margin-bottom: 10px
  }

  .elementor-13142 .elementor-element.elementor-element-c380436>.elementor-widget-container {
    margin: 0
  }

  .elementor-13142 .elementor-element.elementor-element-c380436 {
    text-align: center
  }

  .elementor-13142 .elementor-element.elementor-element-c380436 .elementor-heading-title {
    font-size: var(--e-global-typography-c3c33c5-font-size);
    line-height: var(--e-global-typography-c3c33c5-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-d2e6480>.elementor-widget-container {
    margin: 0
  }

  .elementor-13142 .elementor-element.elementor-element-d2e6480 {
    text-align: center;
    font-size: var(--e-global-typography-06ccb68-font-size);
    line-height: var(--e-global-typography-06ccb68-line-height)
  }

  .elementor-13142 .elementor-element.elementor-element-497d77f>.elementor-widget-container {
    padding: 0
  }

  .elementor-13142 .elementor-element.elementor-element-497d77f {
    text-align: center
  }
}

@media(max-width:1024px) and (min-width:768px) {
  .elementor-13142 .elementor-element.elementor-element-5ca52aae {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-a5c55e6 {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-e372027 {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-58e9938 {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-1514a1cc {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-1db0b6ed {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-b63e4b5 {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-7c63d79 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-d500b3f {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-1472512 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-69421f7 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-7c9affa {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-e794e2e {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-7d4e2ff {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-4201569 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-3d31fed {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-352ccb7 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-9b69cd2 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-7ee6cbde {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-4345a62 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-3666e090 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-e738301 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-f666552 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-c1ba809 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-29b61193 {
    width: 33.3333%
  }

  .elementor-13142 .elementor-element.elementor-element-b04e6ed {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-cafa711 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-97da5f7 {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-38cebfc {
    width: 33.333%
  }

  .elementor-13142 .elementor-element.elementor-element-13ba786 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-0e37608 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-dfaead9 {
    width: 100%
  }

  .elementor-13142 .elementor-element.elementor-element-62f5332 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-dac545f {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-3eba6b7 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-926d8ab {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-0a00db7 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-4c3e6c3 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-f004afb {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-fc19980 {
    width: 50%
  }

  .elementor-13142 .elementor-element.elementor-element-150d9e3 {
    width: 100%
  }
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -.0667em
}

.fa-xs {
  font-size: .75em
}

.fa-sm {
  font-size: .875em
}

.fa-1x {
  font-size: 1em
}

.fa-2x {
  font-size: 2em
}

.fa-3x {
  font-size: 3em
}

.fa-4x {
  font-size: 4em
}

.fa-5x {
  font-size: 5em
}

.fa-6x {
  font-size: 6em
}

.fa-7x {
  font-size: 7em
}

.fa-8x {
  font-size: 8em
}

.fa-9x {
  font-size: 9em
}

.fa-10x {
  font-size: 10em
}

.fa-fw {
  text-align: center;
  width: 1.25em
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0
}

.fa-ul>li {
  position: relative
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit
}

.fa-border {
  border: .08em solid #eee;
  border-radius: .1em;
  padding: .2em .25em .15em
}

.fa-pull-left {
  float: left
}

.fa-pull-right {
  float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: .3em
}

.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite
}

.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg)
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%
}

.fa-stack-1x {
  line-height: inherit
}

.fa-stack-2x {
  font-size: 2em
}

.fa-inverse {
  color: #fff
}

.fa-500px:before {
  content: "\f26e"
}

.fa-accessible-icon:before {
  content: "\f368"
}

.fa-accusoft:before {
  content: "\f369"
}

.fa-acquisitions-incorporated:before {
  content: "\f6af"
}

.fa-ad:before {
  content: "\f641"
}

.fa-address-book:before {
  content: "\f2b9"
}

.fa-address-card:before {
  content: "\f2bb"
}

.fa-adjust:before {
  content: "\f042"
}

.fa-adn:before {
  content: "\f170"
}

.fa-adversal:before {
  content: "\f36a"
}

.fa-affiliatetheme:before {
  content: "\f36b"
}

.fa-air-freshener:before {
  content: "\f5d0"
}

.fa-airbnb:before {
  content: "\f834"
}

.fa-algolia:before {
  content: "\f36c"
}

.fa-align-center:before {
  content: "\f037"
}

.fa-align-justify:before {
  content: "\f039"
}

.fa-align-left:before {
  content: "\f036"
}

.fa-align-right:before {
  content: "\f038"
}

.fa-alipay:before {
  content: "\f642"
}

.fa-allergies:before {
  content: "\f461"
}

.fa-amazon:before {
  content: "\f270"
}

.fa-amazon-pay:before {
  content: "\f42c"
}

.fa-ambulance:before {
  content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"
}

.fa-amilia:before {
  content: "\f36d"
}

.fa-anchor:before {
  content: "\f13d"
}

.fa-android:before {
  content: "\f17b"
}

.fa-angellist:before {
  content: "\f209"
}

.fa-angle-double-down:before {
  content: "\f103"
}

.fa-angle-double-left:before {
  content: "\f100"
}

.fa-angle-double-right:before {
  content: "\f101"
}

.fa-angle-double-up:before {
  content: "\f102"
}

.fa-angle-down:before {
  content: "\f107"
}

.fa-angle-left:before {
  content: "\f104"
}

.fa-angle-right:before {
  content: "\f105"
}

.fa-angle-up:before {
  content: "\f106"
}

.fa-angry:before {
  content: "\f556"
}

.fa-angrycreative:before {
  content: "\f36e"
}

.fa-angular:before {
  content: "\f420"
}

.fa-ankh:before {
  content: "\f644"
}

.fa-app-store:before {
  content: "\f36f"
}

.fa-app-store-ios:before {
  content: "\f370"
}

.fa-apper:before {
  content: "\f371"
}

.fa-apple:before {
  content: "\f179"
}

.fa-apple-alt:before {
  content: "\f5d1"
}

.fa-apple-pay:before {
  content: "\f415"
}

.fa-archive:before {
  content: "\f187"
}

.fa-archway:before {
  content: "\f557"
}

.fa-arrow-alt-circle-down:before {
  content: "\f358"
}

.fa-arrow-alt-circle-left:before {
  content: "\f359"
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b"
}

.fa-arrow-circle-down:before {
  content: "\f0ab"
}

.fa-arrow-circle-left:before {
  content: "\f0a8"
}

.fa-arrow-circle-right:before {
  content: "\f0a9"
}

.fa-arrow-circle-up:before {
  content: "\f0aa"
}

.fa-arrow-down:before {
  content: "\f063"
}

.fa-arrow-left:before {
  content: "\f060"
}

.fa-arrow-right:before {
  content: "\f061"
}

.fa-arrow-up:before {
  content: "\f062"
}

.fa-arrows-alt:before {
  content: "\f0b2"
}

.fa-arrows-alt-h:before {
  content: "\f337"
}

.fa-arrows-alt-v:before {
  content: "\f338"
}

.fa-artstation:before {
  content: "\f77a"
}

.fa-assistive-listening-systems:before {
  content: "\f2a2"
}

.fa-asterisk:before {
  content: "\f069"
}

.fa-asymmetrik:before {
  content: "\f372"
}

.fa-at:before {
  content: "\f1fa"
}

.fa-atlas:before {
  content: "\f558"
}

.fa-atlassian:before {
  content: "\f77b"
}

.fa-atom:before {
  content: "\f5d2"
}

.fa-audible:before {
  content: "\f373"
}

.fa-audio-description:before {
  content: "\f29e"
}

.fa-autoprefixer:before {
  content: "\f41c"
}

.fa-avianex:before {
  content: "\f374"
}

.fa-aviato:before {
  content: "\f421"
}

.fa-award:before {
  content: "\f559"
}

.fa-aws:before {
  content: "\f375"
}

.fa-baby:before {
  content: "\f77c"
}

.fa-baby-carriage:before {
  content: "\f77d"
}

.fa-backspace:before {
  content: "\f55a"
}

.fa-backward:before {
  content: "\f04a"
}

.fa-bacon:before {
  content: "\f7e5"
}

.fa-bacteria:before {
  content: "\e059"
}

.fa-bacterium:before {
  content: "\e05a"
}

.fa-bahai:before {
  content: "\f666"
}

.fa-balance-scale:before {
  content: "\f24e"
}

.fa-balance-scale-left:before {
  content: "\f515"
}

.fa-balance-scale-right:before {
  content: "\f516"
}

.fa-ban:before {
  content: "\f05e"
}

.fa-band-aid:before {
  content: "\f462"
}

.fa-bandcamp:before {
  content: "\f2d5"
}

.fa-barcode:before {
  content: "\f02a"
}

.fa-bars:before {
  content: "\f0c9"
}

.fa-baseball-ball:before {
  content: "\f433"
}

.fa-basketball-ball:before {
  content: "\f434"
}

.fa-bath:before {
  content: "\f2cd"
}

.fa-battery-empty:before {
  content: "\f244"
}

.fa-battery-full:before {
  content: "\f240"
}

.fa-battery-half:before {
  content: "\f242"
}

.fa-battery-quarter:before {
  content: "\f243"
}

.fa-battery-three-quarters:before {
  content: "\f241"
}

.fa-battle-net:before {
  content: "\f835"
}

.fa-bed:before {
  content: "\f236"
}

.fa-beer:before {
  content: "\f0fc"
}

.fa-behance:before {
  content: "\f1b4"
}

.fa-behance-square:before {
  content: "\f1b5"
}

.fa-bell:before {
  content: "\f0f3"
}

.fa-bell-slash:before {
  content: "\f1f6"
}

.fa-bezier-curve:before {
  content: "\f55b"
}

.fa-bible:before {
  content: "\f647"
}

.fa-bicycle:before {
  content: "\f206"
}

.fa-biking:before {
  content: "\f84a"
}

.fa-bimobject:before {
  content: "\f378"
}

.fa-binoculars:before {
  content: "\f1e5"
}

.fa-biohazard:before {
  content: "\f780"
}

.fa-birthday-cake:before {
  content: "\f1fd"
}

.fa-bitbucket:before {
  content: "\f171"
}

.fa-bitcoin:before {
  content: "\f379"
}

.fa-bity:before {
  content: "\f37a"
}

.fa-black-tie:before {
  content: "\f27e"
}

.fa-blackberry:before {
  content: "\f37b"
}

.fa-blender:before {
  content: "\f517"
}

.fa-blender-phone:before {
  content: "\f6b6"
}

.fa-blind:before {
  content: "\f29d"
}

.fa-blog:before {
  content: "\f781"
}

.fa-blogger:before {
  content: "\f37c"
}

.fa-blogger-b:before {
  content: "\f37d"
}

.fa-bluetooth:before {
  content: "\f293"
}

.fa-bluetooth-b:before {
  content: "\f294"
}

.fa-bold:before {
  content: "\f032"
}

.fa-bolt:before {
  content: "\f0e7"
}

.fa-bomb:before {
  content: "\f1e2"
}

.fa-bone:before {
  content: "\f5d7"
}

.fa-bong:before {
  content: "\f55c"
}

.fa-book:before {
  content: "\f02d"
}

.fa-book-dead:before {
  content: "\f6b7"
}

.fa-book-medical:before {
  content: "\f7e6"
}

.fa-book-open:before {
  content: "\f518"
}

.fa-book-reader:before {
  content: "\f5da"
}

.fa-bookmark:before {
  content: "\f02e"
}

.fa-bootstrap:before {
  content: "\f836"
}

.fa-border-all:before {
  content: "\f84c"
}

.fa-border-none:before {
  content: "\f850"
}

.fa-border-style:before {
  content: "\f853"
}

.fa-bowling-ball:before {
  content: "\f436"
}

.fa-box:before {
  content: "\f466"
}

.fa-box-open:before {
  content: "\f49e"
}

.fa-box-tissue:before {
  content: "\e05b"
}

.fa-boxes:before {
  content: "\f468"
}

.fa-braille:before {
  content: "\f2a1"
}

.fa-brain:before {
  content: "\f5dc"
}

.fa-bread-slice:before {
  content: "\f7ec"
}

.fa-briefcase:before {
  content: "\f0b1"
}

.fa-briefcase-medical:before {
  content: "\f469"
}

.fa-broadcast-tower:before {
  content: "\f519"
}

.fa-broom:before {
  content: "\f51a"
}

.fa-brush:before {
  content: "\f55d"
}

.fa-btc:before {
  content: "\f15a"
}

.fa-buffer:before {
  content: "\f837"
}

.fa-bug:before {
  content: "\f188"
}

.fa-building:before {
  content: "\f1ad"
}

.fa-bullhorn:before {
  content: "\f0a1"
}

.fa-bullseye:before {
  content: "\f140"
}

.fa-burn:before {
  content: "\f46a"
}

.fa-buromobelexperte:before {
  content: "\f37f"
}

.fa-bus:before {
  content: "\f207"
}

.fa-bus-alt:before {
  content: "\f55e"
}

.fa-business-time:before {
  content: "\f64a"
}

.fa-buy-n-large:before {
  content: "\f8a6"
}

.fa-buysellads:before {
  content: "\f20d"
}

.fa-calculator:before {
  content: "\f1ec"
}

.fa-calendar:before {
  content: "\f133"
}

.fa-calendar-alt:before {
  content: "\f073"
}

.fa-calendar-check:before {
  content: "\f274"
}

.fa-calendar-day:before {
  content: "\f783"
}

.fa-calendar-minus:before {
  content: "\f272"
}

.fa-calendar-plus:before {
  content: "\f271"
}

.fa-calendar-times:before {
  content: "\f273"
}

.fa-calendar-week:before {
  content: "\f784"
}

.fa-camera:before {
  content: "\f030"
}

.fa-camera-retro:before {
  content: "\f083"
}

.fa-campground:before {
  content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
  content: "\f785"
}

.fa-candy-cane:before {
  content: "\f786"
}

.fa-cannabis:before {
  content: "\f55f"
}

.fa-capsules:before {
  content: "\f46b"
}

.fa-car:before {
  content: "\f1b9"
}

.fa-car-alt:before {
  content: "\f5de"
}

.fa-car-battery:before {
  content: "\f5df"
}

.fa-car-crash:before {
  content: "\f5e1"
}

.fa-car-side:before {
  content: "\f5e4"
}

.fa-caravan:before {
  content: "\f8ff"
}

.fa-caret-down:before {
  content: "\f0d7"
}

.fa-caret-left:before {
  content: "\f0d9"
}

.fa-caret-right:before {
  content: "\f0da"
}

.fa-caret-square-down:before {
  content: "\f150"
}

.fa-caret-square-left:before {
  content: "\f191"
}

.fa-caret-square-right:before {
  content: "\f152"
}

.fa-caret-square-up:before {
  content: "\f151"
}

.fa-caret-up:before {
  content: "\f0d8"
}

.fa-carrot:before {
  content: "\f787"
}

.fa-cart-arrow-down:before {
  content: "\f218"
}

.fa-cart-plus:before {
  content: "\f217"
}

.fa-cash-register:before {
  content: "\f788"
}

.fa-cat:before {
  content: "\f6be"
}

.fa-cc-amazon-pay:before {
  content: "\f42d"
}

.fa-cc-amex:before {
  content: "\f1f3"
}

.fa-cc-apple-pay:before {
  content: "\f416"
}

.fa-cc-diners-club:before {
  content: "\f24c"
}

.fa-cc-discover:before {
  content: "\f1f2"
}

.fa-cc-jcb:before {
  content: "\f24b"
}

.fa-cc-mastercard:before {
  content: "\f1f1"
}

.fa-cc-paypal:before {
  content: "\f1f4"
}

.fa-cc-stripe:before {
  content: "\f1f5"
}

.fa-cc-visa:before {
  content: "\f1f0"
}

.fa-centercode:before {
  content: "\f380"
}

.fa-centos:before {
  content: "\f789"
}

.fa-certificate:before {
  content: "\f0a3"
}

.fa-chair:before {
  content: "\f6c0"
}

.fa-chalkboard:before {
  content: "\f51b"
}

.fa-chalkboard-teacher:before {
  content: "\f51c"
}

.fa-charging-station:before {
  content: "\f5e7"
}

.fa-chart-area:before {
  content: "\f1fe"
}

.fa-chart-bar:before {
  content: "\f080"
}

.fa-chart-line:before {
  content: "\f201"
}

.fa-chart-pie:before {
  content: "\f200"
}

.fa-check:before {
  content: "\f00c"
}

.fa-check-circle:before {
  content: "\f058"
}

.fa-check-double:before {
  content: "\f560"
}

.fa-check-square:before {
  content: "\f14a"
}

.fa-cheese:before {
  content: "\f7ef"
}

.fa-chess:before {
  content: "\f439"
}

.fa-chess-bishop:before {
  content: "\f43a"
}

.fa-chess-board:before {
  content: "\f43c"
}

.fa-chess-king:before {
  content: "\f43f"
}

.fa-chess-knight:before {
  content: "\f441"
}

.fa-chess-pawn:before {
  content: "\f443"
}

.fa-chess-queen:before {
  content: "\f445"
}

.fa-chess-rook:before {
  content: "\f447"
}

.fa-chevron-circle-down:before {
  content: "\f13a"
}

.fa-chevron-circle-left:before {
  content: "\f137"
}

.fa-chevron-circle-right:before {
  content: "\f138"
}

.fa-chevron-circle-up:before {
  content: "\f139"
}

.fa-chevron-down:before {
  content: "\f078"
}

.fa-chevron-left:before {
  content: "\f053"
}

.fa-chevron-right:before {
  content: "\f054"
}

.fa-chevron-up:before {
  content: "\f077"
}

.fa-child:before {
  content: "\f1ae"
}

.fa-chrome:before {
  content: "\f268"
}

.fa-chromecast:before {
  content: "\f838"
}

.fa-church:before {
  content: "\f51d"
}

.fa-circle:before {
  content: "\f111"
}

.fa-circle-notch:before {
  content: "\f1ce"
}

.fa-city:before {
  content: "\f64f"
}

.fa-clinic-medical:before {
  content: "\f7f2"
}

.fa-clipboard:before {
  content: "\f328"
}

.fa-clipboard-check:before {
  content: "\f46c"
}

.fa-clipboard-list:before {
  content: "\f46d"
}

.fa-clock:before {
  content: "\f017"
}

.fa-clone:before {
  content: "\f24d"
}

.fa-closed-captioning:before {
  content: "\f20a"
}

.fa-cloud:before {
  content: "\f0c2"
}

.fa-cloud-download-alt:before {
  content: "\f381"
}

.fa-cloud-meatball:before {
  content: "\f73b"
}

.fa-cloud-moon:before {
  content: "\f6c3"
}

.fa-cloud-moon-rain:before {
  content: "\f73c"
}

.fa-cloud-rain:before {
  content: "\f73d"
}

.fa-cloud-showers-heavy:before {
  content: "\f740"
}

.fa-cloud-sun:before {
  content: "\f6c4"
}

.fa-cloud-sun-rain:before {
  content: "\f743"
}

.fa-cloud-upload-alt:before {
  content: "\f382"
}

.fa-cloudflare:before {
  content: "\e07d"
}

.fa-cloudscale:before {
  content: "\f383"
}

.fa-cloudsmith:before {
  content: "\f384"
}

.fa-cloudversify:before {
  content: "\f385"
}

.fa-cocktail:before {
  content: "\f561"
}

.fa-code:before {
  content: "\f121"
}

.fa-code-branch:before {
  content: "\f126"
}

.fa-codepen:before {
  content: "\f1cb"
}

.fa-codiepie:before {
  content: "\f284"
}

.fa-coffee:before {
  content: "\f0f4"
}

.fa-cog:before {
  content: "\f013"
}

.fa-cogs:before {
  content: "\f085"
}

.fa-coins:before {
  content: "\f51e"
}

.fa-columns:before {
  content: "\f0db"
}

.fa-comment:before {
  content: "\f075"
}

.fa-comment-alt:before {
  content: "\f27a"
}

.fa-comment-dollar:before {
  content: "\f651"
}

.fa-comment-dots:before {
  content: "\f4ad"
}

.fa-comment-medical:before {
  content: "\f7f5"
}

.fa-comment-slash:before {
  content: "\f4b3"
}

.fa-comments:before {
  content: "\f086"
}

.fa-comments-dollar:before {
  content: "\f653"
}

.fa-compact-disc:before {
  content: "\f51f"
}

.fa-compass:before {
  content: "\f14e"
}

.fa-compress:before {
  content: "\f066"
}

.fa-compress-alt:before {
  content: "\f422"
}

.fa-compress-arrows-alt:before {
  content: "\f78c"
}

.fa-concierge-bell:before {
  content: "\f562"
}

.fa-confluence:before {
  content: "\f78d"
}

.fa-connectdevelop:before {
  content: "\f20e"
}

.fa-contao:before {
  content: "\f26d"
}

.fa-cookie:before {
  content: "\f563"
}

.fa-cookie-bite:before {
  content: "\f564"
}

.fa-copy:before {
  content: "\f0c5"
}

.fa-copyright:before {
  content: "\f1f9"
}

.fa-cotton-bureau:before {
  content: "\f89e"
}

.fa-couch:before {
  content: "\f4b8"
}

.fa-cpanel:before {
  content: "\f388"
}

.fa-creative-commons:before {
  content: "\f25e"
}

.fa-creative-commons-by:before {
  content: "\f4e7"
}

.fa-creative-commons-nc:before {
  content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"
}

.fa-creative-commons-nd:before {
  content: "\f4eb"
}

.fa-creative-commons-pd:before {
  content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"
}

.fa-creative-commons-remix:before {
  content: "\f4ee"
}

.fa-creative-commons-sa:before {
  content: "\f4ef"
}

.fa-creative-commons-sampling:before {
  content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"
}

.fa-creative-commons-share:before {
  content: "\f4f2"
}

.fa-creative-commons-zero:before {
  content: "\f4f3"
}

.fa-credit-card:before {
  content: "\f09d"
}

.fa-critical-role:before {
  content: "\f6c9"
}

.fa-crop:before {
  content: "\f125"
}

.fa-crop-alt:before {
  content: "\f565"
}

.fa-cross:before {
  content: "\f654"
}

.fa-crosshairs:before {
  content: "\f05b"
}

.fa-crow:before {
  content: "\f520"
}

.fa-crown:before {
  content: "\f521"
}

.fa-crutch:before {
  content: "\f7f7"
}

.fa-css3:before {
  content: "\f13c"
}

.fa-css3-alt:before {
  content: "\f38b"
}

.fa-cube:before {
  content: "\f1b2"
}

.fa-cubes:before {
  content: "\f1b3"
}

.fa-cut:before {
  content: "\f0c4"
}

.fa-cuttlefish:before {
  content: "\f38c"
}

.fa-d-and-d:before {
  content: "\f38d"
}

.fa-d-and-d-beyond:before {
  content: "\f6ca"
}

.fa-dailymotion:before {
  content: "\e052"
}

.fa-dashcube:before {
  content: "\f210"
}

.fa-database:before {
  content: "\f1c0"
}

.fa-deaf:before {
  content: "\f2a4"
}

.fa-deezer:before {
  content: "\e077"
}

.fa-delicious:before {
  content: "\f1a5"
}

.fa-democrat:before {
  content: "\f747"
}

.fa-deploydog:before {
  content: "\f38e"
}

.fa-deskpro:before {
  content: "\f38f"
}

.fa-desktop:before {
  content: "\f108"
}

.fa-dev:before {
  content: "\f6cc"
}

.fa-deviantart:before {
  content: "\f1bd"
}

.fa-dharmachakra:before {
  content: "\f655"
}

.fa-dhl:before {
  content: "\f790"
}

.fa-diagnoses:before {
  content: "\f470"
}

.fa-diaspora:before {
  content: "\f791"
}

.fa-dice:before {
  content: "\f522"
}

.fa-dice-d20:before {
  content: "\f6cf"
}

.fa-dice-d6:before {
  content: "\f6d1"
}

.fa-dice-five:before {
  content: "\f523"
}

.fa-dice-four:before {
  content: "\f524"
}

.fa-dice-one:before {
  content: "\f525"
}

.fa-dice-six:before {
  content: "\f526"
}

.fa-dice-three:before {
  content: "\f527"
}

.fa-dice-two:before {
  content: "\f528"
}

.fa-digg:before {
  content: "\f1a6"
}

.fa-digital-ocean:before {
  content: "\f391"
}

.fa-digital-tachograph:before {
  content: "\f566"
}

.fa-directions:before {
  content: "\f5eb"
}

.fa-discord:before {
  content: "\f392"
}

.fa-discourse:before {
  content: "\f393"
}

.fa-disease:before {
  content: "\f7fa"
}

.fa-divide:before {
  content: "\f529"
}

.fa-dizzy:before {
  content: "\f567"
}

.fa-dna:before {
  content: "\f471"
}

.fa-dochub:before {
  content: "\f394"
}

.fa-docker:before {
  content: "\f395"
}

.fa-dog:before {
  content: "\f6d3"
}

.fa-dollar-sign:before {
  content: "\f155"
}

.fa-dolly:before {
  content: "\f472"
}

.fa-dolly-flatbed:before {
  content: "\f474"
}

.fa-donate:before {
  content: "\f4b9"
}

.fa-door-closed:before {
  content: "\f52a"
}

.fa-door-open:before {
  content: "\f52b"
}

.fa-dot-circle:before {
  content: "\f192"
}

.fa-dove:before {
  content: "\f4ba"
}

.fa-download:before {
  content: "\f019"
}

.fa-draft2digital:before {
  content: "\f396"
}

.fa-drafting-compass:before {
  content: "\f568"
}

.fa-dragon:before {
  content: "\f6d5"
}

.fa-draw-polygon:before {
  content: "\f5ee"
}

.fa-dribbble:before {
  content: "\f17d"
}

.fa-dribbble-square:before {
  content: "\f397"
}

.fa-dropbox:before {
  content: "\f16b"
}

.fa-drum:before {
  content: "\f569"
}

.fa-drum-steelpan:before {
  content: "\f56a"
}

.fa-drumstick-bite:before {
  content: "\f6d7"
}

.fa-drupal:before {
  content: "\f1a9"
}

.fa-dumbbell:before {
  content: "\f44b"
}

.fa-dumpster:before {
  content: "\f793"
}

.fa-dumpster-fire:before {
  content: "\f794"
}

.fa-dungeon:before {
  content: "\f6d9"
}

.fa-dyalog:before {
  content: "\f399"
}

.fa-earlybirds:before {
  content: "\f39a"
}

.fa-ebay:before {
  content: "\f4f4"
}

.fa-edge:before {
  content: "\f282"
}

.fa-edge-legacy:before {
  content: "\e078"
}

.fa-edit:before {
  content: "\f044"
}

.fa-egg:before {
  content: "\f7fb"
}

.fa-eject:before {
  content: "\f052"
}

.fa-elementor:before {
  content: "\f430"
}

.fa-ellipsis-h:before {
  content: "\f141"
}

.fa-ellipsis-v:before {
  content: "\f142"
}

.fa-ello:before {
  content: "\f5f1"
}

.fa-ember:before {
  content: "\f423"
}

.fa-empire:before {
  content: "\f1d1"
}

.fa-envelope:before {
  content: "\f0e0"
}

.fa-envelope-open:before {
  content: "\f2b6"
}

.fa-envelope-open-text:before {
  content: "\f658"
}

.fa-envelope-square:before {
  content: "\f199"
}

.fa-envira:before {
  content: "\f299"
}

.fa-equals:before {
  content: "\f52c"
}

.fa-eraser:before {
  content: "\f12d"
}

.fa-erlang:before {
  content: "\f39d"
}

.fa-ethereum:before {
  content: "\f42e"
}

.fa-ethernet:before {
  content: "\f796"
}

.fa-etsy:before {
  content: "\f2d7"
}

.fa-euro-sign:before {
  content: "\f153"
}

.fa-evernote:before {
  content: "\f839"
}

.fa-exchange-alt:before {
  content: "\f362"
}

.fa-exclamation:before {
  content: "\f12a"
}

.fa-exclamation-circle:before {
  content: "\f06a"
}

.fa-exclamation-triangle:before {
  content: "\f071"
}

.fa-expand:before {
  content: "\f065"
}

.fa-expand-alt:before {
  content: "\f424"
}

.fa-expand-arrows-alt:before {
  content: "\f31e"
}

.fa-expeditedssl:before {
  content: "\f23e"
}

.fa-external-link-alt:before {
  content: "\f35d"
}

.fa-external-link-square-alt:before {
  content: "\f360"
}

.fa-eye:before {
  content: "\f06e"
}

.fa-eye-dropper:before {
  content: "\f1fb"
}

.fa-eye-slash:before {
  content: "\f070"
}

.fa-facebook:before {
  content: "\f09a"
}

.fa-facebook-f:before {
  content: "\f39e"
}

.fa-facebook-messenger:before {
  content: "\f39f"
}

.fa-facebook-square:before {
  content: "\f082"
}

.fa-fan:before {
  content: "\f863"
}

.fa-fantasy-flight-games:before {
  content: "\f6dc"
}

.fa-fast-backward:before {
  content: "\f049"
}

.fa-fast-forward:before {
  content: "\f050"
}

.fa-faucet:before {
  content: "\e005"
}

.fa-fax:before {
  content: "\f1ac"
}

.fa-feather:before {
  content: "\f52d"
}

.fa-feather-alt:before {
  content: "\f56b"
}

.fa-fedex:before {
  content: "\f797"
}

.fa-fedora:before {
  content: "\f798"
}

.fa-female:before {
  content: "\f182"
}

.fa-fighter-jet:before {
  content: "\f0fb"
}

.fa-figma:before {
  content: "\f799"
}

.fa-file:before {
  content: "\f15b"
}

.fa-file-alt:before {
  content: "\f15c"
}

.fa-file-archive:before {
  content: "\f1c6"
}

.fa-file-audio:before {
  content: "\f1c7"
}

.fa-file-code:before {
  content: "\f1c9"
}

.fa-file-contract:before {
  content: "\f56c"
}

.fa-file-csv:before {
  content: "\f6dd"
}

.fa-file-download:before {
  content: "\f56d"
}

.fa-file-excel:before {
  content: "\f1c3"
}

.fa-file-export:before {
  content: "\f56e"
}

.fa-file-image:before {
  content: "\f1c5"
}

.fa-file-import:before {
  content: "\f56f"
}

.fa-file-invoice:before {
  content: "\f570"
}

.fa-file-invoice-dollar:before {
  content: "\f571"
}

.fa-file-medical:before {
  content: "\f477"
}

.fa-file-medical-alt:before {
  content: "\f478"
}

.fa-file-pdf:before {
  content: "\f1c1"
}

.fa-file-powerpoint:before {
  content: "\f1c4"
}

.fa-file-prescription:before {
  content: "\f572"
}

.fa-file-signature:before {
  content: "\f573"
}

.fa-file-upload:before {
  content: "\f574"
}

.fa-file-video:before {
  content: "\f1c8"
}

.fa-file-word:before {
  content: "\f1c2"
}

.fa-fill:before {
  content: "\f575"
}

.fa-fill-drip:before {
  content: "\f576"
}

.fa-film:before {
  content: "\f008"
}

.fa-filter:before {
  content: "\f0b0"
}

.fa-fingerprint:before {
  content: "\f577"
}

.fa-fire:before {
  content: "\f06d"
}

.fa-fire-alt:before {
  content: "\f7e4"
}

.fa-fire-extinguisher:before {
  content: "\f134"
}

.fa-firefox:before {
  content: "\f269"
}

.fa-firefox-browser:before {
  content: "\e007"
}

.fa-first-aid:before {
  content: "\f479"
}

.fa-first-order:before {
  content: "\f2b0"
}

.fa-first-order-alt:before {
  content: "\f50a"
}

.fa-firstdraft:before {
  content: "\f3a1"
}

.fa-fish:before {
  content: "\f578"
}

.fa-fist-raised:before {
  content: "\f6de"
}

.fa-flag:before {
  content: "\f024"
}

.fa-flag-checkered:before {
  content: "\f11e"
}

.fa-flag-usa:before {
  content: "\f74d"
}

.fa-flask:before {
  content: "\f0c3"
}

.fa-flickr:before {
  content: "\f16e"
}

.fa-flipboard:before {
  content: "\f44d"
}

.fa-flushed:before {
  content: "\f579"
}

.fa-fly:before {
  content: "\f417"
}

.fa-folder:before {
  content: "\f07b"
}

.fa-folder-minus:before {
  content: "\f65d"
}

.fa-folder-open:before {
  content: "\f07c"
}

.fa-folder-plus:before {
  content: "\f65e"
}

.fa-font:before {
  content: "\f031"
}

.fa-font-awesome:before {
  content: "\f2b4"
}

.fa-font-awesome-alt:before {
  content: "\f35c"
}

.fa-font-awesome-flag:before {
  content: "\f425"
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6"
}

.fa-fonticons:before {
  content: "\f280"
}

.fa-fonticons-fi:before {
  content: "\f3a2"
}

.fa-football-ball:before {
  content: "\f44e"
}

.fa-fort-awesome:before {
  content: "\f286"
}

.fa-fort-awesome-alt:before {
  content: "\f3a3"
}

.fa-forumbee:before {
  content: "\f211"
}

.fa-forward:before {
  content: "\f04e"
}

.fa-foursquare:before {
  content: "\f180"
}

.fa-free-code-camp:before {
  content: "\f2c5"
}

.fa-freebsd:before {
  content: "\f3a4"
}

.fa-frog:before {
  content: "\f52e"
}

.fa-frown:before {
  content: "\f119"
}

.fa-frown-open:before {
  content: "\f57a"
}

.fa-fulcrum:before {
  content: "\f50b"
}

.fa-funnel-dollar:before {
  content: "\f662"
}

.fa-futbol:before {
  content: "\f1e3"
}

.fa-galactic-republic:before {
  content: "\f50c"
}

.fa-galactic-senate:before {
  content: "\f50d"
}

.fa-gamepad:before {
  content: "\f11b"
}

.fa-gas-pump:before {
  content: "\f52f"
}

.fa-gavel:before {
  content: "\f0e3"
}

.fa-gem:before {
  content: "\f3a5"
}

.fa-genderless:before {
  content: "\f22d"
}

.fa-get-pocket:before {
  content: "\f265"
}

.fa-gg:before {
  content: "\f260"
}

.fa-gg-circle:before {
  content: "\f261"
}

.fa-ghost:before {
  content: "\f6e2"
}

.fa-gift:before {
  content: "\f06b"
}

.fa-gifts:before {
  content: "\f79c"
}

.fa-git:before {
  content: "\f1d3"
}

.fa-git-alt:before {
  content: "\f841"
}

.fa-git-square:before {
  content: "\f1d2"
}

.fa-github:before {
  content: "\f09b"
}

.fa-github-alt:before {
  content: "\f113"
}

.fa-github-square:before {
  content: "\f092"
}

.fa-gitkraken:before {
  content: "\f3a6"
}

.fa-gitlab:before {
  content: "\f296"
}

.fa-gitter:before {
  content: "\f426"
}

.fa-glass-cheers:before {
  content: "\f79f"
}

.fa-glass-martini:before {
  content: "\f000"
}

.fa-glass-martini-alt:before {
  content: "\f57b"
}

.fa-glass-whiskey:before {
  content: "\f7a0"
}

.fa-glasses:before {
  content: "\f530"
}

.fa-glide:before {
  content: "\f2a5"
}

.fa-glide-g:before {
  content: "\f2a6"
}

.fa-globe:before {
  content: "\f0ac"
}

.fa-globe-africa:before {
  content: "\f57c"
}

.fa-globe-americas:before {
  content: "\f57d"
}

.fa-globe-asia:before {
  content: "\f57e"
}

.fa-globe-europe:before {
  content: "\f7a2"
}

.fa-gofore:before {
  content: "\f3a7"
}

.fa-golf-ball:before {
  content: "\f450"
}

.fa-goodreads:before {
  content: "\f3a8"
}

.fa-goodreads-g:before {
  content: "\f3a9"
}

.fa-google:before {
  content: "\f1a0"
}

.fa-google-drive:before {
  content: "\f3aa"
}

.fa-google-pay:before {
  content: "\e079"
}

.fa-google-play:before {
  content: "\f3ab"
}

.fa-google-plus:before {
  content: "\f2b3"
}

.fa-google-plus-g:before {
  content: "\f0d5"
}

.fa-google-plus-square:before {
  content: "\f0d4"
}

.fa-google-wallet:before {
  content: "\f1ee"
}

.fa-gopuram:before {
  content: "\f664"
}

.fa-graduation-cap:before {
  content: "\f19d"
}

.fa-gratipay:before {
  content: "\f184"
}

.fa-grav:before {
  content: "\f2d6"
}

.fa-greater-than:before {
  content: "\f531"
}

.fa-greater-than-equal:before {
  content: "\f532"
}

.fa-grimace:before {
  content: "\f57f"
}

.fa-grin:before {
  content: "\f580"
}

.fa-grin-alt:before {
  content: "\f581"
}

.fa-grin-beam:before {
  content: "\f582"
}

.fa-grin-beam-sweat:before {
  content: "\f583"
}

.fa-grin-hearts:before {
  content: "\f584"
}

.fa-grin-squint:before {
  content: "\f585"
}

.fa-grin-squint-tears:before {
  content: "\f586"
}

.fa-grin-stars:before {
  content: "\f587"
}

.fa-grin-tears:before {
  content: "\f588"
}

.fa-grin-tongue:before {
  content: "\f589"
}

.fa-grin-tongue-squint:before {
  content: "\f58a"
}

.fa-grin-tongue-wink:before {
  content: "\f58b"
}

.fa-grin-wink:before {
  content: "\f58c"
}

.fa-grip-horizontal:before {
  content: "\f58d"
}

.fa-grip-lines:before {
  content: "\f7a4"
}

.fa-grip-lines-vertical:before {
  content: "\f7a5"
}

.fa-grip-vertical:before {
  content: "\f58e"
}

.fa-gripfire:before {
  content: "\f3ac"
}

.fa-grunt:before {
  content: "\f3ad"
}

.fa-guilded:before {
  content: "\e07e"
}

.fa-guitar:before {
  content: "\f7a6"
}

.fa-gulp:before {
  content: "\f3ae"
}

.fa-h-square:before {
  content: "\f0fd"
}

.fa-hacker-news:before {
  content: "\f1d4"
}

.fa-hacker-news-square:before {
  content: "\f3af"
}

.fa-hackerrank:before {
  content: "\f5f7"
}

.fa-hamburger:before {
  content: "\f805"
}

.fa-hammer:before {
  content: "\f6e3"
}

.fa-hamsa:before {
  content: "\f665"
}

.fa-hand-holding:before {
  content: "\f4bd"
}

.fa-hand-holding-heart:before {
  content: "\f4be"
}

.fa-hand-holding-medical:before {
  content: "\e05c"
}

.fa-hand-holding-usd:before {
  content: "\f4c0"
}

.fa-hand-holding-water:before {
  content: "\f4c1"
}

.fa-hand-lizard:before {
  content: "\f258"
}

.fa-hand-middle-finger:before {
  content: "\f806"
}

.fa-hand-paper:before {
  content: "\f256"
}

.fa-hand-peace:before {
  content: "\f25b"
}

.fa-hand-point-down:before {
  content: "\f0a7"
}

.fa-hand-point-left:before {
  content: "\f0a5"
}

.fa-hand-point-right:before {
  content: "\f0a4"
}

.fa-hand-point-up:before {
  content: "\f0a6"
}

.fa-hand-pointer:before {
  content: "\f25a"
}

.fa-hand-rock:before {
  content: "\f255"
}

.fa-hand-scissors:before {
  content: "\f257"
}

.fa-hand-sparkles:before {
  content: "\e05d"
}

.fa-hand-spock:before {
  content: "\f259"
}

.fa-hands:before {
  content: "\f4c2"
}

.fa-hands-helping:before {
  content: "\f4c4"
}

.fa-hands-wash:before {
  content: "\e05e"
}

.fa-handshake:before {
  content: "\f2b5"
}

.fa-handshake-alt-slash:before {
  content: "\e05f"
}

.fa-handshake-slash:before {
  content: "\e060"
}

.fa-hanukiah:before {
  content: "\f6e6"
}

.fa-hard-hat:before {
  content: "\f807"
}

.fa-hashtag:before {
  content: "\f292"
}

.fa-hat-cowboy:before {
  content: "\f8c0"
}

.fa-hat-cowboy-side:before {
  content: "\f8c1"
}

.fa-hat-wizard:before {
  content: "\f6e8"
}

.fa-hdd:before {
  content: "\f0a0"
}

.fa-head-side-cough:before {
  content: "\e061"
}

.fa-head-side-cough-slash:before {
  content: "\e062"
}

.fa-head-side-mask:before {
  content: "\e063"
}

.fa-head-side-virus:before {
  content: "\e064"
}

.fa-heading:before {
  content: "\f1dc"
}

.fa-headphones:before {
  content: "\f025"
}

.fa-headphones-alt:before {
  content: "\f58f"
}

.fa-headset:before {
  content: "\f590"
}

.fa-heart:before {
  content: "\f004"
}

.fa-heart-broken:before {
  content: "\f7a9"
}

.fa-heartbeat:before {
  content: "\f21e"
}

.fa-helicopter:before {
  content: "\f533"
}

.fa-highlighter:before {
  content: "\f591"
}

.fa-hiking:before {
  content: "\f6ec"
}

.fa-hippo:before {
  content: "\f6ed"
}

.fa-hips:before {
  content: "\f452"
}

.fa-hire-a-helper:before {
  content: "\f3b0"
}

.fa-history:before {
  content: "\f1da"
}

.fa-hive:before {
  content: "\e07f"
}

.fa-hockey-puck:before {
  content: "\f453"
}

.fa-holly-berry:before {
  content: "\f7aa"
}

.fa-home:before {
  content: "\f015"
}

.fa-hooli:before {
  content: "\f427"
}

.fa-hornbill:before {
  content: "\f592"
}

.fa-horse:before {
  content: "\f6f0"
}

.fa-horse-head:before {
  content: "\f7ab"
}

.fa-hospital:before {
  content: "\f0f8"
}

.fa-hospital-alt:before {
  content: "\f47d"
}

.fa-hospital-symbol:before {
  content: "\f47e"
}

.fa-hospital-user:before {
  content: "\f80d"
}

.fa-hot-tub:before {
  content: "\f593"
}

.fa-hotdog:before {
  content: "\f80f"
}

.fa-hotel:before {
  content: "\f594"
}

.fa-hotjar:before {
  content: "\f3b1"
}

.fa-hourglass:before {
  content: "\f254"
}

.fa-hourglass-end:before {
  content: "\f253"
}

.fa-hourglass-half:before {
  content: "\f252"
}

.fa-hourglass-start:before {
  content: "\f251"
}

.fa-house-damage:before {
  content: "\f6f1"
}

.fa-house-user:before {
  content: "\e065"
}

.fa-houzz:before {
  content: "\f27c"
}

.fa-hryvnia:before {
  content: "\f6f2"
}

.fa-html5:before {
  content: "\f13b"
}

.fa-hubspot:before {
  content: "\f3b2"
}

.fa-i-cursor:before {
  content: "\f246"
}

.fa-ice-cream:before {
  content: "\f810"
}

.fa-icicles:before {
  content: "\f7ad"
}

.fa-icons:before {
  content: "\f86d"
}

.fa-id-badge:before {
  content: "\f2c1"
}

.fa-id-card:before {
  content: "\f2c2"
}

.fa-id-card-alt:before {
  content: "\f47f"
}

.fa-ideal:before {
  content: "\e013"
}

.fa-igloo:before {
  content: "\f7ae"
}

.fa-image:before {
  content: "\f03e"
}

.fa-images:before {
  content: "\f302"
}

.fa-imdb:before {
  content: "\f2d8"
}

.fa-inbox:before {
  content: "\f01c"
}

.fa-indent:before {
  content: "\f03c"
}

.fa-industry:before {
  content: "\f275"
}

.fa-infinity:before {
  content: "\f534"
}

.fa-info:before {
  content: "\f129"
}

.fa-info-circle:before {
  content: "\f05a"
}

.fa-innosoft:before {
  content: "\e080"
}

.fa-instagram:before {
  content: "\f16d"
}

.fa-instagram-square:before {
  content: "\e055"
}

.fa-instalod:before {
  content: "\e081"
}

.fa-intercom:before {
  content: "\f7af"
}

.fa-internet-explorer:before {
  content: "\f26b"
}

.fa-invision:before {
  content: "\f7b0"
}

.fa-ioxhost:before {
  content: "\f208"
}

.fa-italic:before {
  content: "\f033"
}

.fa-itch-io:before {
  content: "\f83a"
}

.fa-itunes:before {
  content: "\f3b4"
}

.fa-itunes-note:before {
  content: "\f3b5"
}

.fa-java:before {
  content: "\f4e4"
}

.fa-jedi:before {
  content: "\f669"
}

.fa-jedi-order:before {
  content: "\f50e"
}

.fa-jenkins:before {
  content: "\f3b6"
}

.fa-jira:before {
  content: "\f7b1"
}

.fa-joget:before {
  content: "\f3b7"
}

.fa-joint:before {
  content: "\f595"
}

.fa-joomla:before {
  content: "\f1aa"
}

.fa-journal-whills:before {
  content: "\f66a"
}

.fa-js:before {
  content: "\f3b8"
}

.fa-js-square:before {
  content: "\f3b9"
}

.fa-jsfiddle:before {
  content: "\f1cc"
}

.fa-kaaba:before {
  content: "\f66b"
}

.fa-kaggle:before {
  content: "\f5fa"
}

.fa-key:before {
  content: "\f084"
}

.fa-keybase:before {
  content: "\f4f5"
}

.fa-keyboard:before {
  content: "\f11c"
}

.fa-keycdn:before {
  content: "\f3ba"
}

.fa-khanda:before {
  content: "\f66d"
}

.fa-kickstarter:before {
  content: "\f3bb"
}

.fa-kickstarter-k:before {
  content: "\f3bc"
}

.fa-kiss:before {
  content: "\f596"
}

.fa-kiss-beam:before {
  content: "\f597"
}

.fa-kiss-wink-heart:before {
  content: "\f598"
}

.fa-kiwi-bird:before {
  content: "\f535"
}

.fa-korvue:before {
  content: "\f42f"
}

.fa-landmark:before {
  content: "\f66f"
}

.fa-language:before {
  content: "\f1ab"
}

.fa-laptop:before {
  content: "\f109"
}

.fa-laptop-code:before {
  content: "\f5fc"
}

.fa-laptop-house:before {
  content: "\e066"
}

.fa-laptop-medical:before {
  content: "\f812"
}

.fa-laravel:before {
  content: "\f3bd"
}

.fa-lastfm:before {
  content: "\f202"
}

.fa-lastfm-square:before {
  content: "\f203"
}

.fa-laugh:before {
  content: "\f599"
}

.fa-laugh-beam:before {
  content: "\f59a"
}

.fa-laugh-squint:before {
  content: "\f59b"
}

.fa-laugh-wink:before {
  content: "\f59c"
}

.fa-layer-group:before {
  content: "\f5fd"
}

.fa-leaf:before {
  content: "\f06c"
}

.fa-leanpub:before {
  content: "\f212"
}

.fa-lemon:before {
  content: "\f094"
}

.fa-less:before {
  content: "\f41d"
}

.fa-less-than:before {
  content: "\f536"
}

.fa-less-than-equal:before {
  content: "\f537"
}

.fa-level-down-alt:before {
  content: "\f3be"
}

.fa-level-up-alt:before {
  content: "\f3bf"
}

.fa-life-ring:before {
  content: "\f1cd"
}

.fa-lightbulb:before {
  content: "\f0eb"
}

.fa-line:before {
  content: "\f3c0"
}

.fa-link:before {
  content: "\f0c1"
}

.fa-linkedin:before {
  content: "\f08c"
}

.fa-linkedin-in:before {
  content: "\f0e1"
}

.fa-linode:before {
  content: "\f2b8"
}

.fa-linux:before {
  content: "\f17c"
}

.fa-lira-sign:before {
  content: "\f195"
}

.fa-list:before {
  content: "\f03a"
}

.fa-list-alt:before {
  content: "\f022"
}

.fa-list-ol:before {
  content: "\f0cb"
}

.fa-list-ul:before {
  content: "\f0ca"
}

.fa-location-arrow:before {
  content: "\f124"
}

.fa-lock:before {
  content: "\f023"
}

.fa-lock-open:before {
  content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
  content: "\f309"
}

.fa-long-arrow-alt-left:before {
  content: "\f30a"
}

.fa-long-arrow-alt-right:before {
  content: "\f30b"
}

.fa-long-arrow-alt-up:before {
  content: "\f30c"
}

.fa-low-vision:before {
  content: "\f2a8"
}

.fa-luggage-cart:before {
  content: "\f59d"
}

.fa-lungs:before {
  content: "\f604"
}

.fa-lungs-virus:before {
  content: "\e067"
}

.fa-lyft:before {
  content: "\f3c3"
}

.fa-magento:before {
  content: "\f3c4"
}

.fa-magic:before {
  content: "\f0d0"
}

.fa-magnet:before {
  content: "\f076"
}

.fa-mail-bulk:before {
  content: "\f674"
}

.fa-mailchimp:before {
  content: "\f59e"
}

.fa-male:before {
  content: "\f183"
}

.fa-mandalorian:before {
  content: "\f50f"
}

.fa-map:before {
  content: "\f279"
}

.fa-map-marked:before {
  content: "\f59f"
}

.fa-map-marked-alt:before {
  content: "\f5a0"
}

.fa-map-marker:before {
  content: "\f041"
}

.fa-map-marker-alt:before {
  content: "\f3c5"
}

.fa-map-pin:before {
  content: "\f276"
}

.fa-map-signs:before {
  content: "\f277"
}

.fa-markdown:before {
  content: "\f60f"
}

.fa-marker:before {
  content: "\f5a1"
}

.fa-mars:before {
  content: "\f222"
}

.fa-mars-double:before {
  content: "\f227"
}

.fa-mars-stroke:before {
  content: "\f229"
}

.fa-mars-stroke-h:before {
  content: "\f22b"
}

.fa-mars-stroke-v:before {
  content: "\f22a"
}

.fa-mask:before {
  content: "\f6fa"
}

.fa-mastodon:before {
  content: "\f4f6"
}

.fa-maxcdn:before {
  content: "\f136"
}

.fa-mdb:before {
  content: "\f8ca"
}

.fa-medal:before {
  content: "\f5a2"
}

.fa-medapps:before {
  content: "\f3c6"
}

.fa-medium:before {
  content: "\f23a"
}

.fa-medium-m:before {
  content: "\f3c7"
}

.fa-medkit:before {
  content: "\f0fa"
}

.fa-medrt:before {
  content: "\f3c8"
}

.fa-meetup:before {
  content: "\f2e0"
}

.fa-megaport:before {
  content: "\f5a3"
}

.fa-meh:before {
  content: "\f11a"
}

.fa-meh-blank:before {
  content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5"
}

.fa-memory:before {
  content: "\f538"
}

.fa-mendeley:before {
  content: "\f7b3"
}

.fa-menorah:before {
  content: "\f676"
}

.fa-mercury:before {
  content: "\f223"
}

.fa-meteor:before {
  content: "\f753"
}

.fa-microblog:before {
  content: "\e01a"
}

.fa-microchip:before {
  content: "\f2db"
}

.fa-microphone:before {
  content: "\f130"
}

.fa-microphone-alt:before {
  content: "\f3c9"
}

.fa-microphone-alt-slash:before {
  content: "\f539"
}

.fa-microphone-slash:before {
  content: "\f131"
}

.fa-microscope:before {
  content: "\f610"
}

.fa-microsoft:before {
  content: "\f3ca"
}

.fa-minus:before {
  content: "\f068"
}

.fa-minus-circle:before {
  content: "\f056"
}

.fa-minus-square:before {
  content: "\f146"
}

.fa-mitten:before {
  content: "\f7b5"
}

.fa-mix:before {
  content: "\f3cb"
}

.fa-mixcloud:before {
  content: "\f289"
}

.fa-mixer:before {
  content: "\e056"
}

.fa-mizuni:before {
  content: "\f3cc"
}

.fa-mobile:before {
  content: "\f10b"
}

.fa-mobile-alt:before {
  content: "\f3cd"
}

.fa-modx:before {
  content: "\f285"
}

.fa-monero:before {
  content: "\f3d0"
}

.fa-money-bill:before {
  content: "\f0d6"
}

.fa-money-bill-alt:before {
  content: "\f3d1"
}

.fa-money-bill-wave:before {
  content: "\f53a"
}

.fa-money-bill-wave-alt:before {
  content: "\f53b"
}

.fa-money-check:before {
  content: "\f53c"
}

.fa-money-check-alt:before {
  content: "\f53d"
}

.fa-monument:before {
  content: "\f5a6"
}

.fa-moon:before {
  content: "\f186"
}

.fa-mortar-pestle:before {
  content: "\f5a7"
}

.fa-mosque:before {
  content: "\f678"
}

.fa-motorcycle:before {
  content: "\f21c"
}

.fa-mountain:before {
  content: "\f6fc"
}

.fa-mouse:before {
  content: "\f8cc"
}

.fa-mouse-pointer:before {
  content: "\f245"
}

.fa-mug-hot:before {
  content: "\f7b6"
}

.fa-music:before {
  content: "\f001"
}

.fa-napster:before {
  content: "\f3d2"
}

.fa-neos:before {
  content: "\f612"
}

.fa-network-wired:before {
  content: "\f6ff"
}

.fa-neuter:before {
  content: "\f22c"
}

.fa-newspaper:before {
  content: "\f1ea"
}

.fa-nimblr:before {
  content: "\f5a8"
}

.fa-node:before {
  content: "\f419"
}

.fa-node-js:before {
  content: "\f3d3"
}

.fa-not-equal:before {
  content: "\f53e"
}

.fa-notes-medical:before {
  content: "\f481"
}

.fa-npm:before {
  content: "\f3d4"
}

.fa-ns8:before {
  content: "\f3d5"
}

.fa-nutritionix:before {
  content: "\f3d6"
}

.fa-object-group:before {
  content: "\f247"
}

.fa-object-ungroup:before {
  content: "\f248"
}

.fa-octopus-deploy:before {
  content: "\e082"
}

.fa-odnoklassniki:before {
  content: "\f263"
}

.fa-odnoklassniki-square:before {
  content: "\f264"
}

.fa-oil-can:before {
  content: "\f613"
}

.fa-old-republic:before {
  content: "\f510"
}

.fa-om:before {
  content: "\f679"
}

.fa-opencart:before {
  content: "\f23d"
}

.fa-openid:before {
  content: "\f19b"
}

.fa-opera:before {
  content: "\f26a"
}

.fa-optin-monster:before {
  content: "\f23c"
}

.fa-orcid:before {
  content: "\f8d2"
}

.fa-osi:before {
  content: "\f41a"
}

.fa-otter:before {
  content: "\f700"
}

.fa-outdent:before {
  content: "\f03b"
}

.fa-page4:before {
  content: "\f3d7"
}

.fa-pagelines:before {
  content: "\f18c"
}

.fa-pager:before {
  content: "\f815"
}

.fa-paint-brush:before {
  content: "\f1fc"
}

.fa-paint-roller:before {
  content: "\f5aa"
}

.fa-palette:before {
  content: "\f53f"
}

.fa-palfed:before {
  content: "\f3d8"
}

.fa-pallet:before {
  content: "\f482"
}

.fa-paper-plane:before {
  content: "\f1d8"
}

.fa-paperclip:before {
  content: "\f0c6"
}

.fa-parachute-box:before {
  content: "\f4cd"
}

.fa-paragraph:before {
  content: "\f1dd"
}

.fa-parking:before {
  content: "\f540"
}

.fa-passport:before {
  content: "\f5ab"
}

.fa-pastafarianism:before {
  content: "\f67b"
}

.fa-paste:before {
  content: "\f0ea"
}

.fa-patreon:before {
  content: "\f3d9"
}

.fa-pause:before {
  content: "\f04c"
}

.fa-pause-circle:before {
  content: "\f28b"
}

.fa-paw:before {
  content: "\f1b0"
}

.fa-paypal:before {
  content: "\f1ed"
}

.fa-peace:before {
  content: "\f67c"
}

.fa-pen:before {
  content: "\f304"
}

.fa-pen-alt:before {
  content: "\f305"
}

.fa-pen-fancy:before {
  content: "\f5ac"
}

.fa-pen-nib:before {
  content: "\f5ad"
}

.fa-pen-square:before {
  content: "\f14b"
}

.fa-pencil-alt:before {
  content: "\f303"
}

.fa-pencil-ruler:before {
  content: "\f5ae"
}

.fa-penny-arcade:before {
  content: "\f704"
}

.fa-people-arrows:before {
  content: "\e068"
}

.fa-people-carry:before {
  content: "\f4ce"
}

.fa-pepper-hot:before {
  content: "\f816"
}

.fa-perbyte:before {
  content: "\e083"
}

.fa-percent:before {
  content: "\f295"
}

.fa-percentage:before {
  content: "\f541"
}

.fa-periscope:before {
  content: "\f3da"
}

.fa-person-booth:before {
  content: "\f756"
}

.fa-phabricator:before {
  content: "\f3db"
}

.fa-phoenix-framework:before {
  content: "\f3dc"
}

.fa-phoenix-squadron:before {
  content: "\f511"
}

.fa-phone:before {
  content: "\f095"
}

.fa-phone-alt:before {
  content: "\f879"
}

.fa-phone-slash:before {
  content: "\f3dd"
}

.fa-phone-square:before {
  content: "\f098"
}

.fa-phone-square-alt:before {
  content: "\f87b"
}

.fa-phone-volume:before {
  content: "\f2a0"
}

.fa-photo-video:before {
  content: "\f87c"
}

.fa-php:before {
  content: "\f457"
}

.fa-pied-piper:before {
  content: "\f2ae"
}

.fa-pied-piper-alt:before {
  content: "\f1a8"
}

.fa-pied-piper-hat:before {
  content: "\f4e5"
}

.fa-pied-piper-pp:before {
  content: "\f1a7"
}

.fa-pied-piper-square:before {
  content: "\e01e"
}

.fa-piggy-bank:before {
  content: "\f4d3"
}

.fa-pills:before {
  content: "\f484"
}

.fa-pinterest:before {
  content: "\f0d2"
}

.fa-pinterest-p:before {
  content: "\f231"
}

.fa-pinterest-square:before {
  content: "\f0d3"
}

.fa-pizza-slice:before {
  content: "\f818"
}

.fa-place-of-worship:before {
  content: "\f67f"
}

.fa-plane:before {
  content: "\f072"
}

.fa-plane-arrival:before {
  content: "\f5af"
}

.fa-plane-departure:before {
  content: "\f5b0"
}

.fa-plane-slash:before {
  content: "\e069"
}

.fa-play:before {
  content: "\f04b"
}

.fa-play-circle:before {
  content: "\f144"
}

.fa-playstation:before {
  content: "\f3df"
}

.fa-plug:before {
  content: "\f1e6"
}

.fa-plus:before {
  content: "\f067"
}

.fa-plus-circle:before {
  content: "\f055"
}

.fa-plus-square:before {
  content: "\f0fe"
}

.fa-podcast:before {
  content: "\f2ce"
}

.fa-poll:before {
  content: "\f681"
}

.fa-poll-h:before {
  content: "\f682"
}

.fa-poo:before {
  content: "\f2fe"
}

.fa-poo-storm:before {
  content: "\f75a"
}

.fa-poop:before {
  content: "\f619"
}

.fa-portrait:before {
  content: "\f3e0"
}

.fa-pound-sign:before {
  content: "\f154"
}

.fa-power-off:before {
  content: "\f011"
}

.fa-pray:before {
  content: "\f683"
}

.fa-praying-hands:before {
  content: "\f684"
}

.fa-prescription:before {
  content: "\f5b1"
}

.fa-prescription-bottle:before {
  content: "\f485"
}

.fa-prescription-bottle-alt:before {
  content: "\f486"
}

.fa-print:before {
  content: "\f02f"
}

.fa-procedures:before {
  content: "\f487"
}

.fa-product-hunt:before {
  content: "\f288"
}

.fa-project-diagram:before {
  content: "\f542"
}

.fa-pump-medical:before {
  content: "\e06a"
}

.fa-pump-soap:before {
  content: "\e06b"
}

.fa-pushed:before {
  content: "\f3e1"
}

.fa-puzzle-piece:before {
  content: "\f12e"
}

.fa-python:before {
  content: "\f3e2"
}

.fa-qq:before {
  content: "\f1d6"
}

.fa-qrcode:before {
  content: "\f029"
}

.fa-question:before {
  content: "\f128"
}

.fa-question-circle:before {
  content: "\f059"
}

.fa-quidditch:before {
  content: "\f458"
}

.fa-quinscape:before {
  content: "\f459"
}

.fa-quora:before {
  content: "\f2c4"
}

.fa-quote-left:before {
  content: "\f10d"
}

.fa-quote-right:before {
  content: "\f10e"
}

.fa-quran:before {
  content: "\f687"
}

.fa-r-project:before {
  content: "\f4f7"
}

.fa-radiation:before {
  content: "\f7b9"
}

.fa-radiation-alt:before {
  content: "\f7ba"
}

.fa-rainbow:before {
  content: "\f75b"
}

.fa-random:before {
  content: "\f074"
}

.fa-raspberry-pi:before {
  content: "\f7bb"
}

.fa-ravelry:before {
  content: "\f2d9"
}

.fa-react:before {
  content: "\f41b"
}

.fa-reacteurope:before {
  content: "\f75d"
}

.fa-readme:before {
  content: "\f4d5"
}

.fa-rebel:before {
  content: "\f1d0"
}

.fa-receipt:before {
  content: "\f543"
}

.fa-record-vinyl:before {
  content: "\f8d9"
}

.fa-recycle:before {
  content: "\f1b8"
}

.fa-red-river:before {
  content: "\f3e3"
}

.fa-reddit:before {
  content: "\f1a1"
}

.fa-reddit-alien:before {
  content: "\f281"
}

.fa-reddit-square:before {
  content: "\f1a2"
}

.fa-redhat:before {
  content: "\f7bc"
}

.fa-redo:before {
  content: "\f01e"
}

.fa-redo-alt:before {
  content: "\f2f9"
}

.fa-registered:before {
  content: "\f25d"
}

.fa-remove-format:before {
  content: "\f87d"
}

.fa-renren:before {
  content: "\f18b"
}

.fa-reply:before {
  content: "\f3e5"
}

.fa-reply-all:before {
  content: "\f122"
}

.fa-replyd:before {
  content: "\f3e6"
}

.fa-republican:before {
  content: "\f75e"
}

.fa-researchgate:before {
  content: "\f4f8"
}

.fa-resolving:before {
  content: "\f3e7"
}

.fa-restroom:before {
  content: "\f7bd"
}

.fa-retweet:before {
  content: "\f079"
}

.fa-rev:before {
  content: "\f5b2"
}

.fa-ribbon:before {
  content: "\f4d6"
}

.fa-ring:before {
  content: "\f70b"
}

.fa-road:before {
  content: "\f018"
}

.fa-robot:before {
  content: "\f544"
}

.fa-rocket:before {
  content: "\f135"
}

.fa-rocketchat:before {
  content: "\f3e8"
}

.fa-rockrms:before {
  content: "\f3e9"
}

.fa-route:before {
  content: "\f4d7"
}

.fa-rss:before {
  content: "\f09e"
}

.fa-rss-square:before {
  content: "\f143"
}

.fa-ruble-sign:before {
  content: "\f158"
}

.fa-ruler:before {
  content: "\f545"
}

.fa-ruler-combined:before {
  content: "\f546"
}

.fa-ruler-horizontal:before {
  content: "\f547"
}

.fa-ruler-vertical:before {
  content: "\f548"
}

.fa-running:before {
  content: "\f70c"
}

.fa-rupee-sign:before {
  content: "\f156"
}

.fa-rust:before {
  content: "\e07a"
}

.fa-sad-cry:before {
  content: "\f5b3"
}

.fa-sad-tear:before {
  content: "\f5b4"
}

.fa-safari:before {
  content: "\f267"
}

.fa-salesforce:before {
  content: "\f83b"
}

.fa-sass:before {
  content: "\f41e"
}

.fa-satellite:before {
  content: "\f7bf"
}

.fa-satellite-dish:before {
  content: "\f7c0"
}

.fa-save:before {
  content: "\f0c7"
}

.fa-schlix:before {
  content: "\f3ea"
}

.fa-school:before {
  content: "\f549"
}

.fa-screwdriver:before {
  content: "\f54a"
}

.fa-scribd:before {
  content: "\f28a"
}

.fa-scroll:before {
  content: "\f70e"
}

.fa-sd-card:before {
  content: "\f7c2"
}

.fa-search:before {
  content: "\f002"
}

.fa-search-dollar:before {
  content: "\f688"
}

.fa-search-location:before {
  content: "\f689"
}

.fa-search-minus:before {
  content: "\f010"
}

.fa-search-plus:before {
  content: "\f00e"
}

.fa-searchengin:before {
  content: "\f3eb"
}

.fa-seedling:before {
  content: "\f4d8"
}

.fa-sellcast:before {
  content: "\f2da"
}

.fa-sellsy:before {
  content: "\f213"
}

.fa-server:before {
  content: "\f233"
}

.fa-servicestack:before {
  content: "\f3ec"
}

.fa-shapes:before {
  content: "\f61f"
}

.fa-share:before {
  content: "\f064"
}

.fa-share-alt:before {
  content: "\f1e0"
}

.fa-share-alt-square:before {
  content: "\f1e1"
}

.fa-share-square:before {
  content: "\f14d"
}

.fa-shekel-sign:before {
  content: "\f20b"
}

.fa-shield-alt:before {
  content: "\f3ed"
}

.fa-shield-virus:before {
  content: "\e06c"
}

.fa-ship:before {
  content: "\f21a"
}

.fa-shipping-fast:before {
  content: "\f48b"
}

.fa-shirtsinbulk:before {
  content: "\f214"
}

.fa-shoe-prints:before {
  content: "\f54b"
}

.fa-shopify:before {
  content: "\e057"
}

.fa-shopping-bag:before {
  content: "\f290"
}

.fa-shopping-basket:before {
  content: "\f291"
}

.fa-shopping-cart:before {
  content: "\f07a"
}

.fa-shopware:before {
  content: "\f5b5"
}

.fa-shower:before {
  content: "\f2cc"
}

.fa-shuttle-van:before {
  content: "\f5b6"
}

.fa-sign:before {
  content: "\f4d9"
}

.fa-sign-in-alt:before {
  content: "\f2f6"
}

.fa-sign-language:before {
  content: "\f2a7"
}

.fa-sign-out-alt:before {
  content: "\f2f5"
}

.fa-signal:before {
  content: "\f012"
}

.fa-signature:before {
  content: "\f5b7"
}

.fa-sim-card:before {
  content: "\f7c4"
}

.fa-simplybuilt:before {
  content: "\f215"
}

.fa-sink:before {
  content: "\e06d"
}

.fa-sistrix:before {
  content: "\f3ee"
}

.fa-sitemap:before {
  content: "\f0e8"
}

.fa-sith:before {
  content: "\f512"
}

.fa-skating:before {
  content: "\f7c5"
}

.fa-sketch:before {
  content: "\f7c6"
}

.fa-skiing:before {
  content: "\f7c9"
}

.fa-skiing-nordic:before {
  content: "\f7ca"
}

.fa-skull:before {
  content: "\f54c"
}

.fa-skull-crossbones:before {
  content: "\f714"
}

.fa-skyatlas:before {
  content: "\f216"
}

.fa-skype:before {
  content: "\f17e"
}

.fa-slack:before {
  content: "\f198"
}

.fa-slack-hash:before {
  content: "\f3ef"
}

.fa-slash:before {
  content: "\f715"
}

.fa-sleigh:before {
  content: "\f7cc"
}

.fa-sliders-h:before {
  content: "\f1de"
}

.fa-slideshare:before {
  content: "\f1e7"
}

.fa-smile:before {
  content: "\f118"
}

.fa-smile-beam:before {
  content: "\f5b8"
}

.fa-smile-wink:before {
  content: "\f4da"
}

.fa-smog:before {
  content: "\f75f"
}

.fa-smoking:before {
  content: "\f48d"
}

.fa-smoking-ban:before {
  content: "\f54d"
}

.fa-sms:before {
  content: "\f7cd"
}

.fa-snapchat:before {
  content: "\f2ab"
}

.fa-snapchat-ghost:before {
  content: "\f2ac"
}

.fa-snapchat-square:before {
  content: "\f2ad"
}

.fa-snowboarding:before {
  content: "\f7ce"
}

.fa-snowflake:before {
  content: "\f2dc"
}

.fa-snowman:before {
  content: "\f7d0"
}

.fa-snowplow:before {
  content: "\f7d2"
}

.fa-soap:before {
  content: "\e06e"
}

.fa-socks:before {
  content: "\f696"
}

.fa-solar-panel:before {
  content: "\f5ba"
}

.fa-sort:before {
  content: "\f0dc"
}

.fa-sort-alpha-down:before {
  content: "\f15d"
}

.fa-sort-alpha-down-alt:before {
  content: "\f881"
}

.fa-sort-alpha-up:before {
  content: "\f15e"
}

.fa-sort-alpha-up-alt:before {
  content: "\f882"
}

.fa-sort-amount-down:before {
  content: "\f160"
}

.fa-sort-amount-down-alt:before {
  content: "\f884"
}

.fa-sort-amount-up:before {
  content: "\f161"
}

.fa-sort-amount-up-alt:before {
  content: "\f885"
}

.fa-sort-down:before {
  content: "\f0dd"
}

.fa-sort-numeric-down:before {
  content: "\f162"
}

.fa-sort-numeric-down-alt:before {
  content: "\f886"
}

.fa-sort-numeric-up:before {
  content: "\f163"
}

.fa-sort-numeric-up-alt:before {
  content: "\f887"
}

.fa-sort-up:before {
  content: "\f0de"
}

.fa-soundcloud:before {
  content: "\f1be"
}

.fa-sourcetree:before {
  content: "\f7d3"
}

.fa-spa:before {
  content: "\f5bb"
}

.fa-space-shuttle:before {
  content: "\f197"
}

.fa-speakap:before {
  content: "\f3f3"
}

.fa-speaker-deck:before {
  content: "\f83c"
}

.fa-spell-check:before {
  content: "\f891"
}

.fa-spider:before {
  content: "\f717"
}

.fa-spinner:before {
  content: "\f110"
}

.fa-splotch:before {
  content: "\f5bc"
}

.fa-spotify:before {
  content: "\f1bc"
}

.fa-spray-can:before {
  content: "\f5bd"
}

.fa-square:before {
  content: "\f0c8"
}

.fa-square-full:before {
  content: "\f45c"
}

.fa-square-root-alt:before {
  content: "\f698"
}

.fa-squarespace:before {
  content: "\f5be"
}

.fa-stack-exchange:before {
  content: "\f18d"
}

.fa-stack-overflow:before {
  content: "\f16c"
}

.fa-stackpath:before {
  content: "\f842"
}

.fa-stamp:before {
  content: "\f5bf"
}

.fa-star:before {
  content: "\f005"
}

.fa-star-and-crescent:before {
  content: "\f699"
}

.fa-star-half:before {
  content: "\f089"
}

.fa-star-half-alt:before {
  content: "\f5c0"
}

.fa-star-of-david:before {
  content: "\f69a"
}

.fa-star-of-life:before {
  content: "\f621"
}

.fa-staylinked:before {
  content: "\f3f5"
}

.fa-steam:before {
  content: "\f1b6"
}

.fa-steam-square:before {
  content: "\f1b7"
}

.fa-steam-symbol:before {
  content: "\f3f6"
}

.fa-step-backward:before {
  content: "\f048"
}

.fa-step-forward:before {
  content: "\f051"
}

.fa-stethoscope:before {
  content: "\f0f1"
}

.fa-sticker-mule:before {
  content: "\f3f7"
}

.fa-sticky-note:before {
  content: "\f249"
}

.fa-stop:before {
  content: "\f04d"
}

.fa-stop-circle:before {
  content: "\f28d"
}

.fa-stopwatch:before {
  content: "\f2f2"
}

.fa-stopwatch-20:before {
  content: "\e06f"
}

.fa-store:before {
  content: "\f54e"
}

.fa-store-alt:before {
  content: "\f54f"
}

.fa-store-alt-slash:before {
  content: "\e070"
}

.fa-store-slash:before {
  content: "\e071"
}

.fa-strava:before {
  content: "\f428"
}

.fa-stream:before {
  content: "\f550"
}

.fa-street-view:before {
  content: "\f21d"
}

.fa-strikethrough:before {
  content: "\f0cc"
}

.fa-stripe:before {
  content: "\f429"
}

.fa-stripe-s:before {
  content: "\f42a"
}

.fa-stroopwafel:before {
  content: "\f551"
}

.fa-studiovinari:before {
  content: "\f3f8"
}

.fa-stumbleupon:before {
  content: "\f1a4"
}

.fa-stumbleupon-circle:before {
  content: "\f1a3"
}

.fa-subscript:before {
  content: "\f12c"
}

.fa-subway:before {
  content: "\f239"
}

.fa-suitcase:before {
  content: "\f0f2"
}

.fa-suitcase-rolling:before {
  content: "\f5c1"
}

.fa-sun:before {
  content: "\f185"
}

.fa-superpowers:before {
  content: "\f2dd"
}

.fa-superscript:before {
  content: "\f12b"
}

.fa-supple:before {
  content: "\f3f9"
}

.fa-surprise:before {
  content: "\f5c2"
}

.fa-suse:before {
  content: "\f7d6"
}

.fa-swatchbook:before {
  content: "\f5c3"
}

.fa-swift:before {
  content: "\f8e1"
}

.fa-swimmer:before {
  content: "\f5c4"
}

.fa-swimming-pool:before {
  content: "\f5c5"
}

.fa-symfony:before {
  content: "\f83d"
}

.fa-synagogue:before {
  content: "\f69b"
}

.fa-sync:before {
  content: "\f021"
}

.fa-sync-alt:before {
  content: "\f2f1"
}

.fa-syringe:before {
  content: "\f48e"
}

.fa-table:before {
  content: "\f0ce"
}

.fa-table-tennis:before {
  content: "\f45d"
}

.fa-tablet:before {
  content: "\f10a"
}

.fa-tablet-alt:before {
  content: "\f3fa"
}

.fa-tablets:before {
  content: "\f490"
}

.fa-tachometer-alt:before {
  content: "\f3fd"
}

.fa-tag:before {
  content: "\f02b"
}

.fa-tags:before {
  content: "\f02c"
}

.fa-tape:before {
  content: "\f4db"
}

.fa-tasks:before {
  content: "\f0ae"
}

.fa-taxi:before {
  content: "\f1ba"
}

.fa-teamspeak:before {
  content: "\f4f9"
}

.fa-teeth:before {
  content: "\f62e"
}

.fa-teeth-open:before {
  content: "\f62f"
}

.fa-telegram:before {
  content: "\f2c6"
}

.fa-telegram-plane:before {
  content: "\f3fe"
}

.fa-temperature-high:before {
  content: "\f769"
}

.fa-temperature-low:before {
  content: "\f76b"
}

.fa-tencent-weibo:before {
  content: "\f1d5"
}

.fa-tenge:before {
  content: "\f7d7"
}

.fa-terminal:before {
  content: "\f120"
}

.fa-text-height:before {
  content: "\f034"
}

.fa-text-width:before {
  content: "\f035"
}

.fa-th:before {
  content: "\f00a"
}

.fa-th-large:before {
  content: "\f009"
}

.fa-th-list:before {
  content: "\f00b"
}

.fa-the-red-yeti:before {
  content: "\f69d"
}

.fa-theater-masks:before {
  content: "\f630"
}

.fa-themeco:before {
  content: "\f5c6"
}

.fa-themeisle:before {
  content: "\f2b2"
}

.fa-thermometer:before {
  content: "\f491"
}

.fa-thermometer-empty:before {
  content: "\f2cb"
}

.fa-thermometer-full:before {
  content: "\f2c7"
}

.fa-thermometer-half:before {
  content: "\f2c9"
}

.fa-thermometer-quarter:before {
  content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8"
}

.fa-think-peaks:before {
  content: "\f731"
}

.fa-thumbs-down:before {
  content: "\f165"
}

.fa-thumbs-up:before {
  content: "\f164"
}

.fa-thumbtack:before {
  content: "\f08d"
}

.fa-ticket-alt:before {
  content: "\f3ff"
}

.fa-tiktok:before {
  content: "\e07b"
}

.fa-times:before {
  content: "\f00d"
}

.fa-times-circle:before {
  content: "\f057"
}

.fa-tint:before {
  content: "\f043"
}

.fa-tint-slash:before {
  content: "\f5c7"
}

.fa-tired:before {
  content: "\f5c8"
}

.fa-threads:before {
  content: "\e9cb"
}

.fa-threads-square:before {
  content: "\e9cc"
}

.fa-toggle-off:before {
  content: "\f204"
}

.fa-toggle-on:before {
  content: "\f205"
}

.fa-toilet:before {
  content: "\f7d8"
}

.fa-toilet-paper:before {
  content: "\f71e"
}

.fa-toilet-paper-slash:before {
  content: "\e072"
}

.fa-toolbox:before {
  content: "\f552"
}

.fa-tools:before {
  content: "\f7d9"
}

.fa-tooth:before {
  content: "\f5c9"
}

.fa-torah:before {
  content: "\f6a0"
}

.fa-torii-gate:before {
  content: "\f6a1"
}

.fa-tractor:before {
  content: "\f722"
}

.fa-trade-federation:before {
  content: "\f513"
}

.fa-trademark:before {
  content: "\f25c"
}

.fa-traffic-light:before {
  content: "\f637"
}

.fa-trailer:before {
  content: "\e041"
}

.fa-train:before {
  content: "\f238"
}

.fa-tram:before {
  content: "\f7da"
}

.fa-transgender:before {
  content: "\f224"
}

.fa-transgender-alt:before {
  content: "\f225"
}

.fa-trash:before {
  content: "\f1f8"
}

.fa-trash-alt:before {
  content: "\f2ed"
}

.fa-trash-restore:before {
  content: "\f829"
}

.fa-trash-restore-alt:before {
  content: "\f82a"
}

.fa-tree:before {
  content: "\f1bb"
}

.fa-trello:before {
  content: "\f181"
}

.fa-tripadvisor:before {
  content: "\f262"
}

.fa-trophy:before {
  content: "\f091"
}

.fa-truck:before {
  content: "\f0d1"
}

.fa-truck-loading:before {
  content: "\f4de"
}

.fa-truck-monster:before {
  content: "\f63b"
}

.fa-truck-moving:before {
  content: "\f4df"
}

.fa-truck-pickup:before {
  content: "\f63c"
}

.fa-tshirt:before {
  content: "\f553"
}

.fa-tty:before {
  content: "\f1e4"
}

.fa-tumblr:before {
  content: "\f173"
}

.fa-tumblr-square:before {
  content: "\f174"
}

.fa-tv:before {
  content: "\f26c"
}

.fa-twitch:before {
  content: "\f1e8"
}

.fa-twitter:before {
  content: "\f099"
}

.fa-twitter-square:before {
  content: "\f081"
}

.fa-typo3:before {
  content: "\f42b"
}

.fa-uber:before {
  content: "\f402"
}

.fa-ubuntu:before {
  content: "\f7df"
}

.fa-uikit:before {
  content: "\f403"
}

.fa-umbraco:before {
  content: "\f8e8"
}

.fa-umbrella:before {
  content: "\f0e9"
}

.fa-umbrella-beach:before {
  content: "\f5ca"
}

.fa-uncharted:before {
  content: "\e084"
}

.fa-underline:before {
  content: "\f0cd"
}

.fa-undo:before {
  content: "\f0e2"
}

.fa-undo-alt:before {
  content: "\f2ea"
}

.fa-uniregistry:before {
  content: "\f404"
}

.fa-unity:before {
  content: "\e049"
}

.fa-universal-access:before {
  content: "\f29a"
}

.fa-university:before {
  content: "\f19c"
}

.fa-unlink:before {
  content: "\f127"
}

.fa-unlock:before {
  content: "\f09c"
}

.fa-unlock-alt:before {
  content: "\f13e"
}

.fa-unsplash:before {
  content: "\e07c"
}

.fa-untappd:before {
  content: "\f405"
}

.fa-upload:before {
  content: "\f093"
}

.fa-ups:before {
  content: "\f7e0"
}

.fa-usb:before {
  content: "\f287"
}

.fa-user:before {
  content: "\f007"
}

.fa-user-alt:before {
  content: "\f406"
}

.fa-user-alt-slash:before {
  content: "\f4fa"
}

.fa-user-astronaut:before {
  content: "\f4fb"
}

.fa-user-check:before {
  content: "\f4fc"
}

.fa-user-circle:before {
  content: "\f2bd"
}

.fa-user-clock:before {
  content: "\f4fd"
}

.fa-user-cog:before {
  content: "\f4fe"
}

.fa-user-edit:before {
  content: "\f4ff"
}

.fa-user-friends:before {
  content: "\f500"
}

.fa-user-graduate:before {
  content: "\f501"
}

.fa-user-injured:before {
  content: "\f728"
}

.fa-user-lock:before {
  content: "\f502"
}

.fa-user-md:before {
  content: "\f0f0"
}

.fa-user-minus:before {
  content: "\f503"
}

.fa-user-ninja:before {
  content: "\f504"
}

.fa-user-nurse:before {
  content: "\f82f"
}

.fa-user-plus:before {
  content: "\f234"
}

.fa-user-secret:before {
  content: "\f21b"
}

.fa-user-shield:before {
  content: "\f505"
}

.fa-user-slash:before {
  content: "\f506"
}

.fa-user-tag:before {
  content: "\f507"
}

.fa-user-tie:before {
  content: "\f508"
}

.fa-user-times:before {
  content: "\f235"
}

.fa-users:before {
  content: "\f0c0"
}

.fa-users-cog:before {
  content: "\f509"
}

.fa-users-slash:before {
  content: "\e073"
}

.fa-usps:before {
  content: "\f7e1"
}

.fa-ussunnah:before {
  content: "\f407"
}

.fa-utensil-spoon:before {
  content: "\f2e5"
}

.fa-utensils:before {
  content: "\f2e7"
}

.fa-vaadin:before {
  content: "\f408"
}

.fa-vector-square:before {
  content: "\f5cb"
}

.fa-venus:before {
  content: "\f221"
}

.fa-venus-double:before {
  content: "\f226"
}

.fa-venus-mars:before {
  content: "\f228"
}

.fa-vest:before {
  content: "\e085"
}

.fa-vest-patches:before {
  content: "\e086"
}

.fa-viacoin:before {
  content: "\f237"
}

.fa-viadeo:before {
  content: "\f2a9"
}

.fa-viadeo-square:before {
  content: "\f2aa"
}

.fa-vial:before {
  content: "\f492"
}

.fa-vials:before {
  content: "\f493"
}

.fa-viber:before {
  content: "\f409"
}

.fa-video:before {
  content: "\f03d"
}

.fa-video-slash:before {
  content: "\f4e2"
}

.fa-vihara:before {
  content: "\f6a7"
}

.fa-vimeo:before {
  content: "\f40a"
}

.fa-vimeo-square:before {
  content: "\f194"
}

.fa-vimeo-v:before {
  content: "\f27d"
}

.fa-vine:before {
  content: "\f1ca"
}

.fa-virus:before {
  content: "\e074"
}

.fa-virus-slash:before {
  content: "\e075"
}

.fa-viruses:before {
  content: "\e076"
}

.fa-vk:before {
  content: "\f189"
}

.fa-vnv:before {
  content: "\f40b"
}

.fa-voicemail:before {
  content: "\f897"
}

.fa-volleyball-ball:before {
  content: "\f45f"
}

.fa-volume-down:before {
  content: "\f027"
}

.fa-volume-mute:before {
  content: "\f6a9"
}

.fa-volume-off:before {
  content: "\f026"
}

.fa-volume-up:before {
  content: "\f028"
}

.fa-vote-yea:before {
  content: "\f772"
}

.fa-vr-cardboard:before {
  content: "\f729"
}

.fa-vuejs:before {
  content: "\f41f"
}

.fa-walking:before {
  content: "\f554"
}

.fa-wallet:before {
  content: "\f555"
}

.fa-warehouse:before {
  content: "\f494"
}

.fa-watchman-monitoring:before {
  content: "\e087"
}

.fa-water:before {
  content: "\f773"
}

.fa-wave-square:before {
  content: "\f83e"
}

.fa-waze:before {
  content: "\f83f"
}

.fa-weebly:before {
  content: "\f5cc"
}

.fa-weibo:before {
  content: "\f18a"
}

.fa-weight:before {
  content: "\f496"
}

.fa-weight-hanging:before {
  content: "\f5cd"
}

.fa-weixin:before {
  content: "\f1d7"
}

.fa-whatsapp:before {
  content: "\f232"
}

.fa-whatsapp-square:before {
  content: "\f40c"
}

.fa-wheelchair:before {
  content: "\f193"
}

.fa-whmcs:before {
  content: "\f40d"
}

.fa-wifi:before {
  content: "\f1eb"
}

.fa-wikipedia-w:before {
  content: "\f266"
}

.fa-wind:before {
  content: "\f72e"
}

.fa-window-close:before {
  content: "\f410"
}

.fa-window-maximize:before {
  content: "\f2d0"
}

.fa-window-minimize:before {
  content: "\f2d1"
}

.fa-window-restore:before {
  content: "\f2d2"
}

.fa-windows:before {
  content: "\f17a"
}

.fa-wine-bottle:before {
  content: "\f72f"
}

.fa-wine-glass:before {
  content: "\f4e3"
}

.fa-wine-glass-alt:before {
  content: "\f5ce"
}

.fa-wix:before {
  content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
  content: "\f730"
}

.fa-wodu:before {
  content: "\e088"
}

.fa-wolf-pack-battalion:before {
  content: "\f514"
}

.fa-won-sign:before {
  content: "\f159"
}

.fa-wordpress:before {
  content: "\f19a"
}

.fa-wordpress-simple:before {
  content: "\f411"
}

.fa-wpbeginner:before {
  content: "\f297"
}

.fa-wpexplorer:before {
  content: "\f2de"
}

.fa-wpforms:before {
  content: "\f298"
}

.fa-wpressr:before {
  content: "\f3e4"
}

.fa-wrench:before {
  content: "\f0ad"
}

.fa-x-ray:before {
  content: "\f497"
}

.fa-xbox:before {
  content: "\f412"
}

.fa-xing:before {
  content: "\f168"
}

.fa-xing-square:before {
  content: "\f169"
}

.fa-x-twitter:before {
  content: "\e9ca"
}

.fa-x-twitter-square:before {
  content: "\e9c9"
}

.fa-y-combinator:before {
  content: "\f23b"
}

.fa-yahoo:before {
  content: "\f19e"
}

.fa-yammer:before {
  content: "\f840"
}

.fa-yandex:before {
  content: "\f413"
}

.fa-yandex-international:before {
  content: "\f414"
}

.fa-yarn:before {
  content: "\f7e3"
}

.fa-yelp:before {
  content: "\f1e9"
}

.fa-yen-sign:before {
  content: "\f157"
}

.fa-yin-yang:before {
  content: "\f6ad"
}

.fa-yoast:before {
  content: "\f2b1"
}

.fa-youtube:before {
  content: "\f167"
}

.fa-youtube-square:before {
  content: "\f431"
}

.fa-zhihu:before {
  content: "\f63f"
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto
}


@font-face {
  font-display: swap;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);
  src: url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"), url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900
}

/*!

@font-face{font-display:swap;font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot);src:url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff) format("woff"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"),url(/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}.fluentform-widget-wrapper.hide-fluent-form-labels .ff-el-input--label{display:none!important}.fluentform-widget-wrapper.hide-error-message .ff-el-is-error .text-danger{display:none}.fluentform-widget-wrapper.fluentform-widget-align-left{margin:0 auto 0 0}.fluentform-widget-wrapper.fluentform-widget-align-center{float:none;margin:0 auto}.fluentform-widget-wrapper.fluentform-widget-align-right{margin:0 0 0 auto}.fluentform-widget-custom-radio-checkbox input[type=checkbox],.fluentform-widget-custom-radio-checkbox input[type=radio]{background:#ddd;height:15px;min-width:1px;outline:none;padding:3px;width:15px}.fluentform-widget-custom-radio-checkbox input[type=checkbox]:after,.fluentform-widget-custom-radio-checkbox input[type=radio]:after{border:0 solid transparent;content:"";display:block;height:100%;margin:0;padding:0;width:100%}.fluentform-widget-custom-radio-checkbox input[type=checkbox]:checked:after,.fluentform-widget-custom-radio-checkbox input[type=radio]:checked:after{background:#999;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:12px}.fluentform-widget-custom-radio-checkbox input[type=radio],.fluentform-widget-custom-radio-checkbox input[type=radio]:after{border-radius:50%}.fluentform-widget-wrapper .frm-fluent-form .ff-step-header{margin-bottom:0}.ff-el-progress-bar{align-items:center;display:flex;height:100%;justify-content:flex-end}.fluent-form-widget-step-header-yes .ff-step-header .ff-el-progress-status,.fluent-form-widget-step-progressbar-yes .ff-el-progress{display:block}.fluent-form-widget-step-header-yes .frm-fluent-form .ff-step-header,.fluent-form-widget-step-progressbar-yes .frm-fluent-form .ff-step-header{margin-bottom:20px}.fluentform-widget-section-break-content-left .ff-el-group.ff-el-section-break{text-align:left}.fluentform-widget-section-break-content-center .ff-el-group.ff-el-section-break{text-align:center}.fluentform-widget-section-break-content-right .ff-el-group.ff-el-section-break{text-align:right}.fluentform-widget-submit-button-full-width .ff-btn-submit{display:block;width:100%}.fluentform-widget-submit-button-center .ff-el-group .ff-btn-submit,.fluentform-widget-submit-button-center .ff-el-group.ff-text-left .ff-btn-submit,.fluentform-widget-submit-button-center .ff-el-group.ff-text-right .ff-btn-submit{align-items:center;display:flex;justify-content:center;margin:0 auto}.fluentform-widget-submit-button-right .ff-el-group .ff-btn-submit,.fluentform-widget-submit-button-right .ff-el-group.ff-text-left .ff-btn-submit,.fluentform-widget-submit-button-right .ff-el-group.ff-text-right .ff-btn-submit{float:right}.fluentform-widget-submit-button-left .ff-el-group .ff-btn-submit,.fluentform-widget-submit-button-left .ff-el-group.ff-text-left .ff-btn-submit,.fluentform-widget-submit-button-left .ff-el-group.ff-text-right .ff-btn-submit{float:left}.fluentform-widget-wrapper.hide-placeholder input::-webkit-input-placeholder,.fluentform-widget-wrapper.hide-placeholder textarea::-webkit-input-placeholder{opacity:0;visibility:hidden}.fluentform-widget-wrapper.hide-placeholder input:-moz-placeholder,.fluentform-widget-wrapper.hide-placeholder input::-moz-placeholder,.fluentform-widget-wrapper.hide-placeholder textarea:-moz-placeholder,.fluentform-widget-wrapper.hide-placeholder textarea::-moz-placeholder{opacity:0;visibility:hidden}.fluentform-widget-wrapper.hide-placeholder input:-ms-input-placeholder,.fluentform-widget-wrapper.hide-placeholder textarea:-ms-input-placeholder{opacity:0;visibility:hidden}.fluentform-widget-wrapper.hide-placeholder input::-ms-input-placeholder,.fluentform-widget-wrapper.hide-placeholder textarea::-ms-input-placeholder{opacity:0;visibility:hidden}.lity{z-index:9999!important}.elementor-10869 .elementor-element.elementor-element-5c7b803{padding:40px 0}.elementor-bc-flex-widget .elementor-10869 .elementor-element.elementor-element-8d2638b.elementor-column .elementor-widget-wrap{align-items:center}.elementor-10869 .elementor-element.elementor-element-8d2638b.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center}.elementor-10869 .elementor-element.elementor-element-8d2638b>.elementor-element-populated{margin:0 0 0 15px;--e-column-margin-right:0px;--e-column-margin-left:15px;padding:0 15px 0 0}.elementor-10869 .elementor-element.elementor-element-ff68ff3>.elementor-widget-container{margin:0 30px 0 0}.elementor-10869 .elementor-element.elementor-element-ff68ff3{text-align:left}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .rtin-title{font-family:var(--e-global-typography-c3c33c5-font-family),Sans-serif;font-size:var(--e-global-typography-c3c33c5-font-size);text-transform:var(--e-global-typography-c3c33c5-text-transform);line-height:var(--e-global-typography-c3c33c5-line-height)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .subtitle{font-family:var(--e-global-typography-fa93f47-font-family),Sans-serif;font-size:var(--e-global-typography-fa93f47-font-size);text-transform:var(--e-global-typography-fa93f47-text-transform);line-height:var(--e-global-typography-fa93f47-line-height);letter-spacing:var(--e-global-typography-fa93f47-letter-spacing)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .rtin-content{font-family:var(--e-global-typography-06ccb68-font-family),Sans-serif;font-size:var(--e-global-typography-06ccb68-font-size);line-height:var(--e-global-typography-06ccb68-line-height)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .btn-common{text-transform:uppercase}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .button-style-2{margin:20px 0 0}.elementor-10869 .elementor-element.elementor-element-752fb05f>.elementor-element-populated{margin:0 15px 0 0;--e-column-margin-right:15px;--e-column-margin-left:0px;padding:0}.elementor-10869 .elementor-element.elementor-element-57ce6853:not(.elementor-motion-effects-element-type-background),.elementor-10869 .elementor-element.elementor-element-57ce6853>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#fff}.elementor-10869 .elementor-element.elementor-element-57ce6853{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;margin-top:60px;margin-bottom:0;z-index:2}.elementor-10869 .elementor-element.elementor-element-57ce6853>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-10869 .elementor-element.elementor-element-2927e28e>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0}.elementor-10869 .elementor-element.elementor-element-2927e28e>.elementor-element-populated{padding:0 2px 0 0}.elementor-10869 .elementor-element.elementor-element-192132df>.elementor-widget-container{margin:0 0 4px;padding:25px 0;box-shadow:0px 0px 95px 0px rgba(0,0,0,.05)}.elementor-10869 .elementor-element.elementor-element-192132df .rt-counter .rtin-item .rtin-counter{font-family:"Roboto",Sans-serif}.elementor-10869 .elementor-element.elementor-element-79fb94dd>.elementor-widget-container{margin:0 0 4px;padding:25px 0;box-shadow:0px 0px 95px 0px rgba(0,0,0,.05)}.elementor-10869 .elementor-element.elementor-element-79fb94dd .rt-counter .rtin-item .rtin-counter{font-family:"Roboto",Sans-serif}.elementor-10869 .elementor-element.elementor-element-4c13c888>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0}.elementor-10869 .elementor-element.elementor-element-4c13c888>.elementor-element-populated{padding:0 2px 0 0}.elementor-10869 .elementor-element.elementor-element-6c4902e6>.elementor-widget-container{margin:0 0 4px;padding:25px 0;box-shadow:0px 0px 95px 0px rgba(0,0,0,.05)}.elementor-10869 .elementor-element.elementor-element-6c4902e6 .rt-counter .rtin-item .rtin-counter{font-family:"Roboto",Sans-serif}.elementor-10869 .elementor-element.elementor-element-3b3c2d68>.elementor-widget-container{margin:0 0 4px;padding:25px 0;box-shadow:0px 0px 95px 0px rgba(0,0,0,.05)}.elementor-10869 .elementor-element.elementor-element-3b3c2d68 .rt-counter .rtin-item .rtin-counter{font-family:"Roboto",Sans-serif}@media(max-width:1024px){.elementor-10869 .elementor-element.elementor-element-5c7b803{padding:0}.elementor-10869 .elementor-element.elementor-element-ff68ff3>.elementor-widget-container{margin:0}.elementor-10869 .elementor-element.elementor-element-ff68ff3{text-align:center}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .rtin-title{font-size:var(--e-global-typography-c3c33c5-font-size);line-height:var(--e-global-typography-c3c33c5-line-height)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .subtitle{font-size:var(--e-global-typography-fa93f47-font-size);line-height:var(--e-global-typography-fa93f47-line-height);letter-spacing:var(--e-global-typography-fa93f47-letter-spacing)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .rtin-content{font-size:var(--e-global-typography-06ccb68-font-size);line-height:var(--e-global-typography-06ccb68-line-height)}.elementor-10869 .elementor-element.elementor-element-752fb05f>.elementor-element-populated{padding:0}.elementor-10869 .elementor-element.elementor-element-57ce6853{padding:10px 1px 10px 15px}.elementor-10869 .elementor-element.elementor-element-4c13c888>.elementor-element-populated{padding:0}}@media(max-width:767px){.elementor-10869 .elementor-element.elementor-element-5c7b803{padding:0}.elementor-10869 .elementor-element.elementor-element-ff68ff3{text-align:center}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .rtin-title{font-size:var(--e-global-typography-c3c33c5-font-size);line-height:var(--e-global-typography-c3c33c5-line-height)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .subtitle{font-size:var(--e-global-typography-fa93f47-font-size);line-height:var(--e-global-typography-fa93f47-line-height);letter-spacing:var(--e-global-typography-fa93f47-letter-spacing)}.elementor-10869 .elementor-element.elementor-element-ff68ff3 .title-text-button .rtin-content{font-size:var(--e-global-typography-06ccb68-font-size);line-height:var(--e-global-typography-06ccb68-line-height)}.elementor-10869 .elementor-element.elementor-element-752fb05f>.elementor-element-populated{padding:20px}.elementor-10869 .elementor-element.elementor-element-57ce6853{padding:0}.elementor-10869 .elementor-element.elementor-element-2927e28e>.elementor-element-populated{padding:0}.elementor-10869 .elementor-element.elementor-element-192132df>.elementor-widget-container{margin:10px 0 0;padding:10px}.elementor-10869 .elementor-element.elementor-element-79fb94dd>.elementor-widget-container{margin:10px 0 0;padding:10px}.elementor-10869 .elementor-element.elementor-element-4c13c888>.elementor-element-populated{padding:0}.elementor-10869 .elementor-element.elementor-element-6c4902e6>.elementor-widget-container{margin:10px 0 0;padding:10px}.elementor-10869 .elementor-element.elementor-element-3b3c2d68>.elementor-widget-container{margin:10px 0 0;padding:10px}}@media(min-width:768px){.elementor-10869 .elementor-element.elementor-element-8d2638b{width:60%}.elementor-10869 .elementor-element.elementor-element-752fb05f{width:40%}}@media(max-width:1024px) and (min-width:768px){.elementor-10869 .elementor-element.elementor-element-8d2638b{width:100%}.elementor-10869 .elementor-element.elementor-element-752fb05f{width:100%}}/**

.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.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;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.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{-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{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@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 img.owl-lazy{-webkit-transform-style:preserve-3d;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;background:url(/wp-content/themes/techkit/assets/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-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%}/**
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}.elementor-12377 .elementor-element.elementor-element-ff794b0:not(.elementor-motion-effects-element-type-background),.elementor-12377 .elementor-element.elementor-element-ff794b0>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#0554f2;background-image:url("");background-position:center center;background-repeat:no-repeat}.elementor-12377 .elementor-element.elementor-element-ff794b0{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;padding:40px 0}.elementor-12377 .elementor-element.elementor-element-ff794b0>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-12377 .elementor-element.elementor-element-25c1d81>.elementor-widget-container{margin:0;padding:0}.elementor-12377 .elementor-element.elementor-element-25c1d81{z-index:2;text-align:center}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title .rtin-title{font-family:var(--e-global-typography-c3c33c5-font-family),Sans-serif;font-size:var(--e-global-typography-c3c33c5-font-size);text-transform:var(--e-global-typography-c3c33c5-text-transform);line-height:var(--e-global-typography-c3c33c5-line-height);color:#fff}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title .sub-title{font-family:var(--e-global-typography-fa93f47-font-family),Sans-serif;font-size:var(--e-global-typography-fa93f47-font-size);text-transform:var(--e-global-typography-fa93f47-text-transform);line-height:var(--e-global-typography-fa93f47-line-height);letter-spacing:var(--e-global-typography-fa93f47-letter-spacing);color:#fff}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title.style3 .sub-title:before{background-color:#fff}.elementor-12377 .elementor-element.elementor-element-a374baa{margin-top:30px;margin-bottom:0}.elementor-12377 .elementor-element.elementor-element-80b7112:not(.elementor-motion-effects-element-type-background)>.elementor-widget-wrap,.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-widget-wrap>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#fff}.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-element-populated,.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-element-populated>.elementor-background-overlay,.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-background-slideshow{border-radius:10px}.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-element-populated{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;margin:0 16px 0 15px;--e-column-margin-right:16px;--e-column-margin-left:15px}.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-element-populated>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-12377 .elementor-element.elementor-element-6a31107>.elementor-widget-container{margin:20px 80px 0 0}.elementor-12377 .elementor-element.elementor-element-6a31107{z-index:99}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon-wrapper{text-align:right}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon{font-size:40px}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon svg{height:40px}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon i,.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon svg{transform:rotate(180deg)}.elementor-12377 .elementor-element.elementor-element-9585da2>.elementor-widget-container{margin:-65px 0 0;padding:50px 0}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-arrows-yes .elementor-main-swiper{width:calc(75% - 40px)}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-main-swiper{width:75%}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-main-swiper .swiper-slide{background-color:#fff;padding:0 10px}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-swiper-button{font-size:25px;color:var(--e-global-color-255e0ed)}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-swiper-button svg{fill:var(--e-global-color-255e0ed)}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-testimonial__text{font-size:16px;font-weight:300}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-testimonial__name{color:var(--e-global-color-255e0ed);font-size:25px;font-weight:400;letter-spacing:1px}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-testimonial__image img{width:53px;height:53px;border-radius:32px}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_left .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_right .elementor-testimonial__content:after{top:calc(20px + (53px/2) - 8px)}body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_stacked:not(.elementor-testimonial--align-center):not(.elementor-testimonial--align-right) .elementor-testimonial__content:after,body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline:not(.elementor-testimonial--align-center):not(.elementor-testimonial--align-right) .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-left .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__content:after{left:calc(20px + (53px/2) - 8px);right:auto}body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_stacked:not(.elementor-testimonial--align-center):not(.elementor-testimonial--align-left) .elementor-testimonial__content:after,body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline:not(.elementor-testimonial--align-center):not(.elementor-testimonial--align-left) .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-right .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__content:after{right:calc(20px + (53px/2) - 8px);left:auto}body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above:not(.elementor-testimonial--align-center):not(.elementor-testimonial--align-right) .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__content:after{left:calc(20px + (53px/2) - 8px);right:auto}body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above:not(.elementor-testimonial--align-center):not(.elementor-testimonial--align-left) .elementor-testimonial__content:after,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__content:after{right:calc(20px + (53px/2) - 8px);left:auto}body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__image+cite,body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__image+cite,body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite,body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite{margin-left:22px;margin-right:0}body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__image+cite,body:not(.rtl) .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__image+cite,body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite,body.rtl .elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite{margin-right:22px;margin-left:0}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_stacked .elementor-testimonial__image+cite,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_left .elementor-testimonial__image+cite,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_right .elementor-testimonial__image+cite{margin-top:22px}.elementor-12377 .elementor-element.elementor-element-0f734ba>.elementor-widget-container{margin:-75px 0 0 100px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon-wrapper{text-align:left}.elementor-12377 .elementor-element.elementor-element-0f734ba.elementor-view-stacked .elementor-icon{background-color:var(--e-global-color-255e0ed)}.elementor-12377 .elementor-element.elementor-element-0f734ba.elementor-view-framed .elementor-icon,.elementor-12377 .elementor-element.elementor-element-0f734ba.elementor-view-default .elementor-icon{color:var(--e-global-color-255e0ed);border-color:var(--e-global-color-255e0ed)}.elementor-12377 .elementor-element.elementor-element-0f734ba.elementor-view-framed .elementor-icon,.elementor-12377 .elementor-element.elementor-element-0f734ba.elementor-view-default .elementor-icon svg{fill:var(--e-global-color-255e0ed)}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon{font-size:40px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon svg{height:40px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon i,.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon svg{transform:rotate(360deg)}@media(max-width:1024px){.elementor-12377 .elementor-element.elementor-element-ff794b0{padding:50px 0}.elementor-12377 .elementor-element.elementor-element-25c1d81>.elementor-widget-container{padding:0}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title .rtin-title{font-size:var(--e-global-typography-c3c33c5-font-size);line-height:var(--e-global-typography-c3c33c5-line-height)}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title .sub-title{font-size:var(--e-global-typography-fa93f47-font-size);line-height:var(--e-global-typography-fa93f47-line-height);letter-spacing:var(--e-global-typography-fa93f47-letter-spacing)}.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-element-populated{margin:0 0 0 5px;--e-column-margin-right:0px;--e-column-margin-left:5px}.elementor-12377 .elementor-element.elementor-element-6a31107>.elementor-widget-container{margin:40px 80px 0 0}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon{font-size:50px}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon svg{height:50px}.elementor-12377 .elementor-element.elementor-element-0f734ba>.elementor-widget-container{margin:-100px 0 0 50px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon{font-size:50px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon svg{height:50px}}@media(max-width:767px){.elementor-12377 .elementor-element.elementor-element-ff794b0{padding:0}.elementor-12377 .elementor-element.elementor-element-7e43387>.elementor-element-populated{padding:40px 10px}.elementor-12377 .elementor-element.elementor-element-25c1d81>.elementor-widget-container{padding:0 0 0 5px}.elementor-12377 .elementor-element.elementor-element-25c1d81{text-align:center}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title .rtin-title{font-size:var(--e-global-typography-c3c33c5-font-size);line-height:var(--e-global-typography-c3c33c5-line-height)}.elementor-12377 .elementor-element.elementor-element-25c1d81 .sec-title .sub-title{font-size:var(--e-global-typography-fa93f47-font-size);line-height:var(--e-global-typography-fa93f47-line-height);letter-spacing:var(--e-global-typography-fa93f47-letter-spacing)}.elementor-12377 .elementor-element.elementor-element-a374baa{margin-top:10px;margin-bottom:0}.elementor-12377 .elementor-element.elementor-element-80b7112>.elementor-element-populated{margin:0 0 0 5px;--e-column-margin-right:0px;--e-column-margin-left:5px}.elementor-12377 .elementor-element.elementor-element-6a31107>.elementor-widget-container{margin:30px 20px 0 0}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon{font-size:30px}.elementor-12377 .elementor-element.elementor-element-6a31107 .elementor-icon svg{height:30px}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-arrows-yes .elementor-main-swiper{width:calc(255px - 40px)}.elementor-12377 .elementor-element.elementor-element-9585da2 .elementor-main-swiper{width:255px}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_inline .elementor-testimonial__footer,.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_stacked .elementor-testimonial__footer{margin-top:0}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_above .elementor-testimonial__footer{margin-bottom:0}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_left .elementor-testimonial__footer{padding-right:0}.elementor-12377 .elementor-element.elementor-element-9585da2.elementor-testimonial--layout-image_right .elementor-testimonial__footer{padding-left:0}.elementor-12377 .elementor-element.elementor-element-0f734ba>.elementor-widget-container{margin:-60px 0 0 20px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon{font-size:30px}.elementor-12377 .elementor-element.elementor-element-0f734ba .elementor-icon svg{height:30px}}/**
 @font-face{font-display:swap;font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}.elementor-element,.elementor-lightbox{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px}.elementor-element .swiper .swiper-slide figure,.elementor-lightbox .swiper .swiper-slide figure{line-height:0}.elementor-element .swiper .elementor-lightbox-content-source,.elementor-lightbox .swiper .elementor-lightbox-content-source{display:none}.elementor-element .swiper .elementor-swiper-button,.elementor-element .swiper~.elementor-swiper-button,.elementor-lightbox .swiper .elementor-swiper-button,.elementor-lightbox .swiper~.elementor-swiper-button{color:hsla(0,0%,93%,.9);cursor:pointer;display:inline-flex;font-size:25px;position:absolute;top:50%;transform:translateY(-50%);z-index:1}.elementor-element .swiper .elementor-swiper-button svg,.elementor-element .swiper~.elementor-swiper-button svg,.elementor-lightbox .swiper .elementor-swiper-button svg,.elementor-lightbox .swiper~.elementor-swiper-button svg{fill:hsla(0,0%,93%,.9);height:1em;width:1em}.elementor-element .swiper .elementor-swiper-button-prev,.elementor-element .swiper~.elementor-swiper-button-prev,.elementor-lightbox .swiper .elementor-swiper-button-prev,.elementor-lightbox .swiper~.elementor-swiper-button-prev{left:10px}.elementor-element .swiper .elementor-swiper-button-next,.elementor-element .swiper~.elementor-swiper-button-next,.elementor-lightbox .swiper .elementor-swiper-button-next,.elementor-lightbox .swiper~.elementor-swiper-button-next{right:10px}.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled,.elementor-element .swiper~.elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper .elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper~.elementor-swiper-button.swiper-button-disabled{opacity:.3}.elementor-element .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image,.elementor-lightbox .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image{width:100%}.elementor-element .swiper .swiper-horizontal>.swiper-pagination-bullets,.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper .swiper-pagination-custom,.elementor-element .swiper .swiper-pagination-fraction,.elementor-element .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper~.swiper-pagination-custom,.elementor-element .swiper~.swiper-pagination-fraction,.elementor-lightbox .swiper .swiper-horizontal>.swiper-pagination-bullets,.elementor-lightbox .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper .swiper-pagination-custom,.elementor-lightbox .swiper .swiper-pagination-fraction,.elementor-lightbox .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper~.swiper-pagination-custom,.elementor-lightbox .swiper~.swiper-pagination-fraction{bottom:5px}.elementor-element .swiper.swiper-cube .elementor-swiper-button,.elementor-element .swiper.swiper-cube~.elementor-swiper-button,.elementor-lightbox .swiper.swiper-cube .elementor-swiper-button,.elementor-lightbox .swiper.swiper-cube~.elementor-swiper-button{transform:translate3d(0,-50%,1px)}.elementor-element :where(.swiper-horizontal)~.swiper-pagination-bullets,.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-bullets{bottom:5px;left:0;width:100%}.elementor-element :where(.swiper-horizontal)~.swiper-pagination-bullets .swiper-pagination-bullet,.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.elementor-element :where(.swiper-horizontal)~.swiper-pagination-progressbar,.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-progressbar{height:4px;left:0;top:0;width:100%}.elementor-element.elementor-pagination-position-outside .swiper,.elementor-lightbox.elementor-pagination-position-outside .swiper{padding-bottom:30px}.elementor-element.elementor-pagination-position-outside .swiper .elementor-swiper-button,.elementor-element.elementor-pagination-position-outside .swiper~.elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper .elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper~.elementor-swiper-button{top:calc(50% - 30px / 2)}.elementor-element .elementor-swiper,.elementor-lightbox .elementor-swiper{position:relative}.elementor-element .elementor-main-swiper,.elementor-lightbox .elementor-main-swiper{position:static}.elementor-element.elementor-arrows-position-outside .swiper,.elementor-lightbox.elementor-arrows-position-outside .swiper{width:calc(100% - 60px)}.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,.elementor-element.elementor-arrows-position-outside .swiper~.elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper~.elementor-swiper-button-prev{left:0}.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,.elementor-element.elementor-arrows-position-outside .swiper~.elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper~.elementor-swiper-button-next{right:0}/*! elementor-pro - v3.25.0 - 20-11-2024 */
.elementor-testimonial__image {
  flex-shrink: 0
}

.elementor-testimonial__image img {
  border-radius: 999px;
  box-sizing: content-box;
  -o-object-fit: cover;
  object-fit: cover
}

.elementor-testimonial__footer,
.elementor-testimonial__header {
  display: flex
}

.elementor-testimonial__footer cite,
.elementor-testimonial__header cite {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-style: normal;
  line-height: 1.5
}

.elementor-testimonial__name {
  font-weight: 700
}

.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
  align-items: center
}

.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
  margin-inline-start: 20px
}

.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__footer,
.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__footer {
  flex-direction: row-reverse
}

.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__image+cite,
.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__image+cite {
  margin-inline-end: 20px;
  margin-inline-start: 0
}

.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__footer,
.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__footer {
  flex-direction: row
}

.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__image+cite,
.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__image+cite {
  margin-inline-end: 0;
  margin-inline-start: 20px
}

.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
  margin-top: 25px
}

.elementor-testimonial--layout-image_above .elementor-testimonial {
  display: flex;
  flex-direction: column-reverse
}

.elementor-testimonial--layout-image_above .elementor-testimonial__footer {
  margin-bottom: 25px
}

.elementor-testimonial--layout-image_stacked .elementor-testimonial__footer {
  flex-wrap: wrap;
  margin-top: 25px
}

.elementor-testimonial--layout-image_stacked .elementor-testimonial cite,
.elementor-testimonial--layout-image_stacked .elementor-testimonial__image {
  margin-top: 15px;
  width: 100%
}

.elementor-testimonial--layout-image_left .elementor-testimonial,
.elementor-testimonial--layout-image_right .elementor-testimonial {
  align-items: stretch;
  display: flex
}

.elementor-testimonial--layout-image_left .elementor-testimonial__footer,
.elementor-testimonial--layout-image_right .elementor-testimonial__footer {
  flex-direction: column;
  flex-shrink: 0;
  text-align: center
}

.elementor-testimonial--layout-image_left .elementor-testimonial__image+cite,
.elementor-testimonial--layout-image_right .elementor-testimonial__image+cite {
  margin-top: 15px
}

.elementor-testimonial--layout-image_left.elementor-testimonial--align-center .elementor-testimonial__footer,
.elementor-testimonial--layout-image_right.elementor-testimonial--align-center .elementor-testimonial__footer {
  justify-content: flex-start
}

.elementor-testimonial--layout-image_left .elementor-testimonial {
  flex-direction: row-reverse
}

.elementor-testimonial--layout-image_left .elementor-testimonial__footer {
  padding-inline-end: 20px
}

.elementor-testimonial--layout-image_right .elementor-testimonial {
  flex-direction: row
}

.elementor-testimonial--layout-image_right .elementor-testimonial__footer {
  padding-inline-start: 20px
}

.elementor-testimonial--align-right .elementor-testimonial {
  text-align: right
}

.elementor-testimonial--align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
.elementor-testimonial--align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
  flex-direction: row-reverse;
  justify-content: end
}

.elementor-testimonial--align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
.elementor-testimonial--align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
  margin-inline-end: 20px;
  margin-inline-start: 0
}

.elementor-testimonial--align-left .elementor-testimonial {
  text-align: left
}

.elementor-testimonial--align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
.elementor-testimonial--align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
  flex-direction: row;
  justify-content: start
}

.elementor-testimonial--align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
.elementor-testimonial--align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
  margin-inline-end: 0;
  margin-inline-start: 20px
}

.elementor-testimonial--align-center .elementor-testimonial {
  text-align: center
}

.elementor-testimonial--align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
.elementor-testimonial--align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
  justify-content: center
}

.elementor-testimonial--align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
  text-align: start
}

.elementor-testimonial--skin-default.elementor-testimonial--layout-image_above .elementor-testimonial__cite,
.elementor-testimonial--skin-default.elementor-testimonial--layout-image_left .elementor-testimonial__cite,
.elementor-testimonial--skin-default.elementor-testimonial--layout-image_right .elementor-testimonial__cite {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  width: 100%
}

.elementor-testimonial--skin-bubble .elementor-testimonial__content {
  background-color: #f9fafa;
  padding: 20px;
  position: relative
}

.elementor-testimonial--skin-bubble .elementor-testimonial__content:after {
  background-color: #f9fafa;
  border-width: 0;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  transform: scaleX(.75) rotate(45deg);
  width: 14px
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above .elementor-testimonial__content:after {
  bottom: calc(100% - 7px);
  transform: scaleX(.75) rotate(-135deg)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above.elementor-testimonial--align-center .elementor-testimonial__content:after {
  left: 50%;
  transform: translateX(-50%) scaleX(.75) rotate(-135deg)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked .elementor-testimonial__content:after {
  top: calc(100% - 7px)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline.elementor-testimonial--align-center .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-center .elementor-testimonial__content:after {
  left: 50%;
  transform: translateX(-50%) scaleX(.75) rotate(45deg)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above.elementor-testimonial--align-left .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline.elementor-testimonial--align-left .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-left .elementor-testimonial__content:after {
  left: calc(20px + 50px / 2)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_above.elementor-testimonial--align-right .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_inline.elementor-testimonial--align-right .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_stacked.elementor-testimonial--align-right .elementor-testimonial__content:after {
  right: calc(20px + 50px / 2)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_left .elementor-testimonial__content:after {
  left: -8px;
  transform: scaleY(.75) rotate(135deg)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_right .elementor-testimonial__content:after {
  right: -8px;
  transform: scaleY(.75) rotate(-45deg)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_left .elementor-testimonial__content:after,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_right .elementor-testimonial__content:after {
  top: calc(20px + 50px / 2)
}

.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_left .elementor-testimonial__footer,
.elementor-testimonial--skin-bubble.elementor-testimonial--layout-image_right .elementor-testimonial__footer {
  padding-top: 20px
}

@media (min-width:-1) {
  .elementor-testimonial--widescreen-align-right .elementor-testimonial {
    text-align: right
  }

  .elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row-reverse;
    justify-content: end
  }

  .elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--widescreen-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 20px;
    margin-inline-start: 0
  }

  .elementor-testimonial--widescreen-align-left .elementor-testimonial {
    text-align: left
  }

  .elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row;
    justify-content: start
  }

  .elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--widescreen-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 0;
    margin-inline-start: 20px
  }

  .elementor-testimonial--widescreen-align-center .elementor-testimonial {
    text-align: center
  }

  .elementor-testimonial--widescreen-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--widescreen-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    justify-content: center
  }

  .elementor-testimonial--widescreen-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    text-align: start
  }
}

@media (max-width:-1) {
  .elementor-testimonial--laptop-align-right .elementor-testimonial {
    text-align: right
  }

  .elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row-reverse;
    justify-content: end
  }

  .elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--laptop-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 20px;
    margin-inline-start: 0
  }

  .elementor-testimonial--laptop-align-left .elementor-testimonial {
    text-align: left
  }

  .elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row;
    justify-content: start
  }

  .elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--laptop-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 0;
    margin-inline-start: 20px
  }

  .elementor-testimonial--laptop-align-center .elementor-testimonial {
    text-align: center
  }

  .elementor-testimonial--laptop-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--laptop-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    justify-content: center
  }

  .elementor-testimonial--laptop-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    text-align: start
  }

  .elementor-testimonial--tablet_extra-align-right .elementor-testimonial {
    text-align: right
  }

  .elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row-reverse;
    justify-content: end
  }

  .elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--tablet_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 20px;
    margin-inline-start: 0
  }

  .elementor-testimonial--tablet_extra-align-left .elementor-testimonial {
    text-align: left
  }

  .elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row;
    justify-content: start
  }

  .elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--tablet_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 0;
    margin-inline-start: 20px
  }

  .elementor-testimonial--tablet_extra-align-center .elementor-testimonial {
    text-align: center
  }

  .elementor-testimonial--tablet_extra-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--tablet_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    justify-content: center
  }

  .elementor-testimonial--tablet_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    text-align: start
  }
}

@media (max-width:1024px) {
  .elementor-testimonial--tablet-align-right .elementor-testimonial {
    text-align: right
  }

  .elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row-reverse;
    justify-content: end
  }

  .elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--tablet-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 20px;
    margin-inline-start: 0
  }

  .elementor-testimonial--tablet-align-left .elementor-testimonial {
    text-align: left
  }

  .elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row;
    justify-content: start
  }

  .elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--tablet-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 0;
    margin-inline-start: 20px
  }

  .elementor-testimonial--tablet-align-center .elementor-testimonial {
    text-align: center
  }

  .elementor-testimonial--tablet-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--tablet-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    justify-content: center
  }

  .elementor-testimonial--tablet-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    text-align: start
  }
}

@media (max-width:-1) {
  .elementor-testimonial--mobile_extra-align-right .elementor-testimonial {
    text-align: right
  }

  .elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row-reverse;
    justify-content: end
  }

  .elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--mobile_extra-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 20px;
    margin-inline-start: 0
  }

  .elementor-testimonial--mobile_extra-align-left .elementor-testimonial {
    text-align: left
  }

  .elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row;
    justify-content: start
  }

  .elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--mobile_extra-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 0;
    margin-inline-start: 20px
  }

  .elementor-testimonial--mobile_extra-align-center .elementor-testimonial {
    text-align: center
  }

  .elementor-testimonial--mobile_extra-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--mobile_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    justify-content: center
  }

  .elementor-testimonial--mobile_extra-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    text-align: start
  }
}

@media (max-width:767px) {
  .elementor-testimonial--mobile-align-right .elementor-testimonial {
    text-align: right
  }

  .elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row-reverse;
    justify-content: end
  }

  .elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--mobile-align-right.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 20px;
    margin-inline-start: 0
  }

  .elementor-testimonial--mobile-align-left .elementor-testimonial {
    text-align: left
  }

  .elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    flex-direction: row;
    justify-content: start
  }

  .elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_above .elementor-testimonial__image+cite,
  .elementor-testimonial--mobile-align-left.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    margin-inline-end: 0;
    margin-inline-start: 20px
  }

  .elementor-testimonial--mobile-align-center .elementor-testimonial {
    text-align: center
  }

  .elementor-testimonial--mobile-align-center.elementor-testimonial--layout-image_above .elementor-testimonial__footer,
  .elementor-testimonial--mobile-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__footer {
    justify-content: center
  }

  .elementor-testimonial--mobile-align-center.elementor-testimonial--layout-image_inline .elementor-testimonial__image+cite {
    text-align: start
  }
}

.elementor-widget-testimonial-carousel .swiper-slide {
  padding: 20px
}

.elementor-widget-testimonial-carousel .elementor-testimonial__text {
  font-size: 1.3em;
  font-style: italic;
  line-height: 1.5
}

.elementor-widget-testimonial-carousel .elementor-testimonial__image img {
  height: 50px;
  width: 50px
}

/*! elementor-pro - v3.25.0 - 20-11-2024 */
.swiper-pagination-bullets {
  color: #fff;
  cursor: default
}

.swiper-slide {
  border-style: solid;
  border-width: 0;
  overflow: hidden;
  transition-duration: .5s;
  transition-property: border, background, transform;
  will-change: transform
}

.swiper-slide:not(:hover) .e-overlay-animation-fade {
  opacity: 0
}

.swiper-slide:not(:hover) .e-overlay-animation-slide-up {
  transform: translateY(100%)
}

.swiper-slide:not(:hover) .e-overlay-animation-slide-down {
  transform: translateY(-100%)
}

.swiper-slide:not(:hover) .e-overlay-animation-slide-right {
  transform: translateX(-100%)
}

.swiper-slide:not(:hover) .e-overlay-animation-slide-left {
  transform: translateX(100%)
}

.swiper-slide:not(:hover) .e-overlay-animation-zoom-in {
  opacity: 0;
  transform: scale(.5)
}

.swiper-slide a {
  display: inline
}

.swiper-slide a.elementor-button {
  display: inline-block
}

.elementor-widget-reviews .elementor-arrows-yes .elementor-main-swiper,
.elementor-widget-testimonial-carousel .elementor-arrows-yes .elementor-main-swiper {
  width: calc(95% - 40px)
}

.elementor-widget-reviews .elementor-main-swiper,
.elementor-widget-testimonial-carousel .elementor-main-swiper {
  width: 95%
}

.elementor-widget-reviews .swiper-wrapper,
.elementor-widget-testimonial-carousel .swiper-wrapper {
  align-items: stretch;
  display: flex
}

.elementor-widget-reviews .swiper-slide,
.elementor-widget-testimonial-carousel .swiper-slide {
  height: auto
}

.elementor-widget-reviews.elementor-pagination-type-bullets .swiper,
.elementor-widget-reviews.elementor-pagination-type-bullets .swiper-container,
.elementor-widget-reviews.elementor-pagination-type-fraction .swiper,
.elementor-widget-reviews.elementor-pagination-type-fraction .swiper-container,
.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper,
.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .swiper-container,
.elementor-widget-testimonial-carousel.elementor-pagination-type-fraction .swiper,
.elementor-widget-testimonial-carousel.elementor-pagination-type-fraction .swiper-container {
  padding-bottom: 40px
}

.elementor-widget-reviews .elementor-swiper-button-prev,
.elementor-widget-reviews .swiper-container-rtl .elementor-swiper-button-next,
.elementor-widget-reviews .swiper-rtl .elementor-swiper-button-next,
.elementor-widget-testimonial-carousel .elementor-swiper-button-prev,
.elementor-widget-testimonial-carousel .swiper-container-rtl .elementor-swiper-button-next,
.elementor-widget-testimonial-carousel .swiper-rtl .elementor-swiper-button-next {
  left: 0;
  right: unset
}

.elementor-widget-reviews .elementor-swiper-button-next,
.elementor-widget-reviews .swiper-container-rtl .elementor-swiper-button-prev,
.elementor-widget-reviews .swiper-rtl .elementor-swiper-button-prev,
.elementor-widget-testimonial-carousel .elementor-swiper-button-next,
.elementor-widget-testimonial-carousel .swiper-container-rtl .elementor-swiper-button-prev,
.elementor-widget-testimonial-carousel .swiper-rtl .elementor-swiper-button-prev {
  left: unset;
  right: 0
}

.elementor-widget-reviews.elementor-pagination-type-bullets .elementor-swiper-button-next,
.elementor-widget-reviews.elementor-pagination-type-bullets .elementor-swiper-button-prev,
.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .elementor-swiper-button-next,
.elementor-widget-testimonial-carousel.elementor-pagination-type-bullets .elementor-swiper-button-prev {
  top: calc(50% - 40px / 2)
}

.elementor-widget-media-carousel .elementor-swiper-button-prev,
.elementor-widget-media-carousel .swiper-container-rtl .elementor-swiper-button-next,
.elementor-widget-media-carousel .swiper-rtl .elementor-swiper-button-next {
  left: 10px;
  right: unset
}

.elementor-widget-media-carousel .elementor-swiper-button-next,
.elementor-widget-media-carousel .swiper-container-rtl .elementor-swiper-button-prev,
.elementor-widget-media-carousel .swiper-rtl .elementor-swiper-button-prev {
  left: unset;
  right: 10px
}

.elementor-8299 .elementor-element.elementor-element-710a3f5>.elementor-element-populated {
  padding: 30px 0 0
}

.elementor-8299 .elementor-element.elementor-element-496130f>.elementor-widget-container {
  margin: 0;
  padding: 0 150px
}

.elementor-8299 .elementor-element.elementor-element-496130f {
  z-index: 2;
  text-align: center
}

.elementor-8299 .elementor-element.elementor-element-496130f .sec-title .rtin-title {
  font-size: 40px;
  text-transform: capitalize;
  line-height: 48px;
  color: var(--e-global-color-4268f8e)
}

.elementor-8299 .elementor-element.elementor-element-496130f .sec-title .sub-title {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 1px;
  color: var(--e-global-color-255e0ed)
}

.elementor-8299 .elementor-element.elementor-element-af1a448>.elementor-element-populated {
  padding: 0 0 0 15px
}

.elementor-8299 .elementor-element.elementor-element-0a6b601>.elementor-widget-container {
  margin: 0
}

.elementor-8299 .elementor-element.elementor-element-0a6b601 {
  text-align: left
}

.elementor-8299 .elementor-element.elementor-element-9b8df47>.elementor-widget-container {
  margin: -10px 0 0
}

.elementor-8299 .elementor-element.elementor-element-4dbee5b>.elementor-widget-container {
  margin: -10px 0 0
}

.elementor-8299 .elementor-element.elementor-element-b0ca6ec>.elementor-widget-container {
  margin: -10px 0 0
}

.elementor-8299 .elementor-element.elementor-element-29f70b3>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
  margin-bottom: 0
}

.elementor-8299 .elementor-element.elementor-element-29f70b3>.elementor-element-populated {
  padding: 0 15px 0 10px
}

.elementor-8299 .elementor-element.elementor-element-0c7aa84>.elementor-widget-container {
  background-color: #f8fcff;
  padding: 40px 50px 0;
  border-radius: 10px 10px 0 0
}

.elementor-8299 .elementor-element.elementor-element-0c7aa84 .sec-title .rtin-title {
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -.5px
}

.elementor-8299 .elementor-element.elementor-element-0c7aa84 .sec-title .sub-title {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 25px
}

.elementor-8299 .elementor-element.elementor-element-e56a018>.elementor-widget-container {
  background-color: #f8fcff;
  padding: 45px 50px 40px;
  border-radius: 0 0 10px 10px
}

.elementor-8299 .elementor-element.elementor-element-757e23f.elementor-skin-slideshow .elementor-main-swiper {
  margin-bottom: 30px
}

.elementor-8299 .elementor-element.elementor-element-757e23f>.elementor-widget-container {
  margin: 50px 0;
  padding: 0
}

.elementor-8299 .elementor-element.elementor-element-757e23f .elementor-main-swiper {
  height: 150px;
  width: 75%
}

.elementor-8299 .elementor-element.elementor-element-757e23f .elementor-main-swiper .swiper-slide {
  padding: 0
}

.elementor-8299 .elementor-element.elementor-element-757e23f .elementor-swiper-button {
  font-size: 30px;
  color: var(--e-global-color-255e0ed)
}

.elementor-8299 .elementor-element.elementor-element-757e23f .elementor-swiper-button svg {
  fill: var(--e-global-color-255e0ed)
}

.elementor-8299 .elementor-element.elementor-element-757e23f .elementor-custom-embed-play i {
  font-size: 20px
}

@media(max-width:1024px) and (min-width:768px) {
  .elementor-8299 .elementor-element.elementor-element-af1a448 {
    width: 100%
  }

  .elementor-8299 .elementor-element.elementor-element-29f70b3 {
    width: 100%
  }
}

@media(max-width:1024px) {
  .elementor-8299 .elementor-element.elementor-element-710a3f5>.elementor-element-populated {
    padding: 30px 0 0 15px
  }

  .elementor-8299 .elementor-element.elementor-element-496130f>.elementor-widget-container {
    padding: 0
  }

  .elementor-8299 .elementor-element.elementor-element-496130f {
    text-align: center
  }

  .elementor-8299 .elementor-element.elementor-element-496130f .sec-title .rtin-title {
    line-height: 48px
  }

  .elementor-8299 .elementor-element.elementor-element-af1a448>.elementor-element-populated {
    padding: 0 10px 0 0
  }

  .elementor-8299 .elementor-element.elementor-element-29f70b3>.elementor-element-populated {
    margin: 10px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0
  }

  .elementor-8299 .elementor-element.elementor-element-0c7aa84>.elementor-widget-container {
    padding: 40px 40px 0 0
  }

  .elementor-8299 .elementor-element.elementor-element-0c7aa84 {
    text-align: center
  }

  .elementor-8299 .elementor-element.elementor-element-e56a018>.elementor-widget-container {
    padding: 20px 40px 40px
  }

  .elementor-8299 .elementor-element.elementor-element-757e23f.elementor-skin-slideshow .elementor-main-swiper {
    margin-bottom: 50px
  }

  .elementor-8299 .elementor-element.elementor-element-757e23f .elementor-main-swiper {
    height: 130px;
    width: 520px
  }
}

@media(max-width:767px) {
  .elementor-8299 .elementor-element.elementor-element-496130f>.elementor-widget-container {
    margin: 0;
    padding: 0
  }

  .elementor-8299 .elementor-element.elementor-element-496130f {
    text-align: center
  }

  .elementor-8299 .elementor-element.elementor-element-496130f .sec-title .rtin-title {
    font-size: 30px;
    line-height: 38px
  }

  .elementor-8299 .elementor-element.elementor-element-496130f .sec-title .sub-title {
    font-size: 15px
  }

  .elementor-8299 .elementor-element.elementor-element-af1a448>.elementor-element-populated {
    padding: 0 10px 0 0
  }

  .elementor-8299 .elementor-element.elementor-element-29f70b3>.elementor-element-populated {
    margin: 30px 0 0;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 0px;
    padding: 0 10px 0 0
  }

  .elementor-8299 .elementor-element.elementor-element-0c7aa84>.elementor-widget-container {
    padding: 0
  }

  .elementor-8299 .elementor-element.elementor-element-0c7aa84 {
    text-align: center
  }

  .elementor-8299 .elementor-element.elementor-element-0c7aa84 .sec-title .sub-title {
    font-size: 15px;
    letter-spacing: 1px
  }

  .elementor-8299 .elementor-element.elementor-element-e56a018>.elementor-widget-container {
    padding: 30px 5px 5px
  }

  .elementor-8299 .elementor-element.elementor-element-757e23f.elementor-skin-slideshow .elementor-main-swiper {
    margin-bottom: 10px
  }

  .elementor-8299 .elementor-element.elementor-element-757e23f .elementor-main-swiper {
    height: 144px;
    width: 138px
  }
}

.fluentform * {
  box-sizing: border-box
}

.fluentform .clearfix:after,
.fluentform .clearfix:before,
.fluentform .ff-el-group:after,
.fluentform .ff-el-group:before,
.fluentform .ff-el-repeat .ff-el-input--content:after,
.fluentform .ff-el-repeat .ff-el-input--content:before,
.fluentform .ff-step-body:after,
.fluentform .ff-step-body:before {
  content: " ";
  display: table
}

.fluentform .clearfix:after,
.fluentform .ff-el-group:after,
.fluentform .ff-el-repeat .ff-el-input--content:after,
.fluentform .ff-step-body:after {
  clear: both
}

@media (min-width:768px) {
  .frm-fluent-form .ff-t-container {
    display: flex;
    gap: 15px;
    width: 100%
  }

  .frm-fluent-form .ff-t-container.ff_cond_v {
    display: flex !important
  }

  .frm-fluent-form .ff-t-container.mobile {
    display: block !important
  }

  .frm-fluent-form .ff-t-cell {
    display: flex;
    flex-direction: column;
    vertical-align: inherit;
    width: 100%
  }

  .frm-fluent-form .ff-t-cell:first-of-type {
    padding-left: 0
  }

  .frm-fluent-form .ff-t-cell:last-of-type {
    flex-grow: 1;
    padding-right: 0
  }

  .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom {
    align-items: flex-end;
    display: flex;
    margin: auto 0 0
  }

  .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom.ff-text-center {
    justify-content: center
  }

  .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom.ff-text-right {
    justify-content: flex-end
  }

  .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button {
    margin-bottom: 20px
  }
}

@media (max-width:768px) {
  .ff-t-cell {
    margin-left: 0 !important
  }
}

.fluentform .ff-el-group {
  margin-bottom: 20px
}

.fluentform .ff-el-group.ff-el-form-top .ff-el-input--label {
  display: block;
  float: none;
  text-align: left
}

.fluentform .ff-el-group.ff-el-form-top .ff-el-input--content {
  margin-bottom: 0;
  margin-left: auto
}

@media (min-width:481px) {
  .fluentform .ff-el-group.ff-el-form-left .ff-el-input--label {
    text-align: left
  }

  .fluentform .ff-el-group.ff-el-form-right .ff-el-input--label {
    text-align: right
  }
}

.fluentform .ff-el-input--label {
  display: inline-block;
  margin-bottom: 5px;
  position: relative
}

.fluentform .ff-el-input--label.ff-el-is-required.asterisk-left label:before {
  color: var(--fluentform-danger);
  content: "* ";
  margin-right: 3px
}

.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: var(--fluentform-danger);
  content: " *";
  margin-left: 3px
}

.fluentform .ff-el-form-control {
  display: block;
  width: 100%
}

.fluentform .ff-el-ratings {
  --fill-inactive: #d4d4d4;
  --fill-active: #ffb100;
  display: inline-block;
  line-height: 40px
}

.fluentform .ff-el-ratings input[type=radio] {
  display: none;
  height: 0 !important;
  visibility: hidden !important;
  width: 0 !important
}

.fluentform .ff-el-ratings svg {
  fill: var(--fill-inactive);
  height: 22px;
  transition: all .3s;
  vertical-align: middle;
  width: 22px
}

.fluentform .ff-el-ratings svg.scale {
  transition: all .15s
}

.fluentform .ff-el-ratings label {
  display: inherit;
  margin-right: 3px
}

.fluentform .ff-el-ratings label.active svg {
  fill: #ffb100;
  fill: var(--fill-active)
}

.fluentform .ff-el-ratings label:hover {
  cursor: pointer
}

.fluentform .ff-el-ratings label:hover svg {
  transform: scale(1.1)
}

.fluentform .ff-el-ratings label:hover svg.scalling {
  transform: scale(1.2)
}

.fluentform .ff-el-repeat .ff-el-form-control {
  margin-bottom: 10px;
  width: 100%
}

.fluentform .ff-el-repeat .ff-t-cell {
  padding: 0 10px;
  width: 100%
}

.fluentform .ff-el-repeat .ff-t-cell:first-child {
  padding-left: 0
}

.fluentform .ff-el-repeat .ff-t-cell:last-child {
  padding-right: 0
}

.fluentform .ff-el-repeat .ff-t-container {
  display: flex
}

.fluentform .ff-el-repeat-buttons-list span {
  cursor: pointer
}

@media (min-width:481px) {

  .fluentform .ff-el-form-left .ff-el-input--label,
  .fluentform .ff-el-form-right .ff-el-input--label {
    float: left;
    margin-bottom: 0;
    padding: 10px 15px 0 0;
    width: 180px
  }

  .fluentform .ff-el-form-left .ff-el-input--content,
  .fluentform .ff-el-form-right .ff-el-input--content {
    margin-left: 180px
  }

  .fluentform .ff-el-form-left .ff-t-container .ff-el-input--label,
  .fluentform .ff-el-form-right .ff-t-container .ff-el-input--label {
    float: none;
    margin-bottom: 5px;
    width: auto
  }

  .fluentform .ff-el-form-left .ff-t-container .ff-el-input--content,
  .fluentform .ff-el-form-right .ff-t-container .ff-el-input--content {
    margin-left: auto
  }
}

.fluentform .ff-el-form-right .ff-el-input--label {
  text-align: right
}

.fluentform .ff-el-is-error .text-danger {
  font-size: 12px;
  margin-top: 4px
}

.fluentform .ff-el-is-error .ff-el-form-check-label,
.fluentform .ff-el-is-error .ff-el-form-check-label a {
  color: var(--fluentform-danger)
}

.fluentform .ff-el-is-error .ff-el-form-control {
  border-color: var(--fluentform-danger)
}

.fluentform .ff-el-tooltip {
  cursor: pointer;
  display: inline-block;
  margin-left: 2px;
  position: relative;
  vertical-align: middle;
  z-index: 2
}

.fluentform .ff-el-tooltip:hover {
  color: #000
}

.fluentform .ff-el-tooltip svg {
  fill: var(--fluentform-primary)
}

.fluentform .ff-el-help-message {
  color: var(--fluentform-secondary);
  font-size: 12px;
  font-style: italic;
  margin-top: 5px
}

.fluentform .ff-el-help-message.ff_ahm {
  margin-bottom: 5px;
  margin-top: -3px
}

.fluentform .ff-el-progress {
  background-color: #e9ecef;
  border-radius: .25rem;
  font-size: .75rem;
  height: 1.3rem;
  line-height: 1.2rem;
  overflow: hidden
}

.fluentform .ff-el-progress-bar {
  background-color: var(--fluentform-primary);
  color: #fff;
  height: inherit;
  text-align: right;
  transition: width .3s;
  width: 0
}

.fluentform .ff-el-progress-bar span {
  display: inline-block;
  padding: 0 5px 0 0
}

.fluentform .ff-el-progress-status {
  font-size: .9rem;
  margin-bottom: 5px
}

.fluentform .ff-el-progress-title {
  border-bottom: 2px solid #000;
  display: inline-block;
  font-weight: 600;
  list-style-type: none;
  margin: 8px 0 0;
  padding-left: 15px;
  padding-right: 15px
}

.fluentform .ff-el-progress-title li {
  display: none
}

.fluentform .ff-float-right {
  float: right
}

.fluentform .ff-chat-gpt-loader-svg {
  border: 1px solid #ced4da;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  margin-top: 10px;
  padding: 15px;
  position: relative
}

.fluentform .ff-hidden {
  display: none !important
}

.fluentform .ff-step-t-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between
}

.fluentform .ff-step-t-container .ff-t-cell {
  width: auto
}

.fluentform .ff-step-t-container.ff-inner_submit_container .ff-el-group {
  margin-bottom: 0
}

.fluentform .ff-step-container {
  overflow: hidden
}

.fluentform .ff-step-header {
  margin-bottom: 20px
}

.fluentform .ff-step-titles {
  counter-reset: step;
  display: table;
  margin: 0 0 20px;
  overflow: hidden;
  padding: 0;
  position: relative;
  table-layout: fixed;
  text-align: center;
  width: 100%
}

.fluentform .ff-step-titles-navs {
  cursor: pointer
}

.fluentform .ff-step-titles li {
  color: #333;
  display: table-cell;
  font-size: 12px;
  list-style-type: none;
  padding: 0 10px;
  position: relative;
  vertical-align: top;
  width: auto
}

.fluentform .ff-step-titles li.ff_active,
.fluentform .ff-step-titles li.ff_completed {
  color: #007bff
}

.fluentform .ff-step-titles li.ff_active:before,
.fluentform .ff-step-titles li.ff_completed:before {
  background: #007bff;
  border: 1px solid transparent;
  color: #fff
}

.fluentform .ff-step-titles li.ff_active:after,
.fluentform .ff-step-titles li.ff_completed:after {
  background: #007bff
}

.fluentform .ff-step-titles li.ff_active:after {
  right: 0
}

.fluentform .ff-step-titles li:before {
  background: #fff;
  border: 1px solid;
  border-radius: 3px;
  color: #333;
  content: counter(step);
  counter-increment: step;
  display: block;
  font-size: 10px;
  line-height: 20px;
  margin: 0 auto 5px;
  position: relative;
  vertical-align: top;
  width: 20px;
  z-index: 10
}

.fluentform .ff-step-titles li:after {
  background: #000;
  content: "";
  height: 2px;
  left: -50%;
  position: absolute;
  top: 9px;
  width: 100%;
  z-index: 1
}

.fluentform .ff-step-titles li:first-child {
  padding-left: 0
}

.fluentform .ff-step-titles li:first-child:after {
  left: 50%
}

.fluentform .ff-step-titles li:last-child {
  padding-right: 0
}

.fluentform .ff-step-titles li:last-child:after {
  left: -50%
}

.fluentform .ff-step-body {
  left: 0;
  margin-bottom: 15px;
  position: relative;
  top: 0
}

.fluentform .ff-upload-progress {
  margin: 10px 0
}

.fluentform .ff-upload-progress-inline {
  border-radius: 3px;
  height: 6px;
  margin: 4px 0;
  position: relative
}

.fluentform .ff-upload-preview {
  border: 1px solid #ced4da;
  border-radius: 3px;
  margin-top: 5px
}

.fluentform .ff-upload-preview:first-child {
  margin-top: 0
}

.fluentform .ff-upload-preview-img {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70px;
  width: 70px
}

.fluentform .ff-upload-container-small-column-image {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  text-align: center
}

.fluentform .ff-upload-details,
.fluentform .ff-upload-preview {
  zoom: 1;
  overflow: hidden
}

.fluentform .ff-upload-details,
.fluentform .ff-upload-thumb {
  display: table-cell;
  vertical-align: middle
}

.fluentform .ff-upload-thumb {
  background-color: #eee
}

.fluentform .ff-upload-details {
  border-left: 1px solid #ebeef0;
  padding: 0 10px;
  position: relative;
  width: 10000px
}

.fluentform .ff-upload-details .ff-inline-block,
.fluentform .ff-upload-details .ff-upload-error {
  font-size: 11px
}

.fluentform .ff-upload-remove {
  box-shadow: none !important;
  color: var(--fluentform-danger);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
  position: absolute;
  right: 0;
  top: 3px
}

.fluentform .ff-upload-remove:hover {
  color: var(--fluentform-danger);
  text-shadow: 1px 1px 1px #000 !important
}

.fluentform .ff-upload-filename {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.fluentform .ff-table {
  margin-bottom: 0
}

.fluentform .ff-checkable-grids {
  border: 1px solid #f1f1f1;
  border-collapse: collapse
}

.fluentform .ff-checkable-grids thead>tr>th {
  background: #f1f1f1;
  border: 0;
  padding: 7px 5px;
  text-align: center
}

.fluentform .ff-checkable-grids tbody>tr>td {
  border: 0;
  padding: 7px 5px
}

.fluentform .ff-checkable-grids tbody>tr>td:not(:first-of-type) {
  text-align: center
}

.fluentform .ff-checkable-grids tbody>tr:nth-child(2n)>td {
  background: #f1f1f1
}

.fluentform .ff-checkable-grids tbody>tr:nth-child(2n-1)>td {
  background: #fff
}

.fluentform .ff-screen-reader-element {
  clip: rect(0, 0, 0, 0) !important;
  word-wrap: normal !important;
  border: 0 !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important
}

.fluentform .ff_upload_btn.ff-btn {
  background: #6f757e;
  border-color: #6f757e;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px
}

.fluentform .ff_upload_btn.ff-btn:hover {
  background-color: #91959b;
  outline: none
}

.fluentform .ff_upload_btn.ff-btn:focus-visible {
  background-color: #91959b;
  outline: none
}

.fluentform .ff-el-tc {
  border: none;
  border-collapse: collapse;
  display: table;
  width: 100%
}

.fluentform .ff-el-tc label.ff_tc_label {
  display: table-row
}

.fluentform .ff-el-tc label.ff_tc_label>span {
  padding-top: 8px !important;
  width: 20px
}

.fluentform .ff-el-tc label.ff_tc_label>div,
.fluentform .ff-el-tc label.ff_tc_label>span {
  display: table-cell
}

.fluentform .ff-saved-state-input .ff_input-group-text {
  background-color: #1a7efb;
  border-color: #1a7efb;
  margin-left: -1px
}

.fluentform .ff-saved-state-input .ff_input-group-text:hover {
  background-color: #4898fc;
  border-color: #4898fc;
  opacity: 1
}

.fluentform .ff-saved-state-input .ff_input-group-text img {
  width: 28px
}

.fluentform .ff-saved-state-link input {
  text-overflow: ellipsis
}

.fluentform .ff-hide-group {
  display: none
}

.fluentform .ff_t_c {
  margin: 0;
  padding: 0 5px 0 0
}

.fluentform .ff_t_c p {
  margin: 0;
  padding: 0
}

.fluentform .force-hide {
  border: 0;
  display: block;
  height: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden
}

.fluentform input[type=checkbox],
.fluentform input[type=radio] {
  display: inline-block;
  margin: 0
}

.fluentform input[type=checkbox] {
  -webkit-appearance: checkbox
}

.fluentform input[type=radio] {
  -webkit-appearance: radio
}

.fluentform .text-danger {
  color: var(--fluentform-danger)
}

.fluentform .iti {
  width: 100%
}

.fluentform .iti__selected-flag {
  background: rgba(0, 0, 0, .1);
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px
}

.fluentform .ff_gdpr_field {
  margin-right: 5px
}

.fluentform form.ff-form-has-steps .ff-btn-submit {
  visibility: hidden
}

.fluentform form.ff-form-has-steps .ff_submit_btn_wrapper {
  text-align: right
}

.fluentform textarea {
  max-width: 100%
}

.fluentform .ff-el-form-check {
  margin-bottom: 5px
}

.fluentform .ff-el-form-check span.ff_span {
  margin-left: 6px
}

.fluentform .ff-el-form-check-label .ff-el-form-check-input {
  position: relative;
  top: -2px;
  vertical-align: middle
}

.fluentform .ff-inline-block {
  display: inline-block
}

.fluentform .ff-inline-block+.ff-inline-block {
  margin-left: 10px
}

.fluentform .ff-text-left {
  text-align: left
}

.fluentform .ff-text-center {
  text-align: center
}

.fluentform .ff-text-right {
  text-align: right
}

.fluentform .ff-el-form-control:focus~.ff-el-help-message {
  display: block !important
}

.fluentform .ff-el-form-control::-moz-placeholder {
  color: #868e96;
  opacity: 1
}

.fluentform .ff-el-form-control::placeholder {
  color: #868e96;
  opacity: 1
}

.fluentform .ff-el-form-control:disabled,
.fluentform .ff-el-form-control[readonly]:not(.flatpickr-input) {
  background-color: #e9ecef;
  opacity: 1
}

.fluentform-step {
  float: left;
  height: 1px;
  overflow-x: hidden;
  padding: 3px
}

.fluentform-step.active {
  height: auto
}

.fluentform-step .ff_summary_container {
  font-size: 14px;
  margin-top: 10px
}

.step-nav .next {
  float: right
}

.fluentform .has-conditions {
  display: none
}

.ff-message-success {
  border: 1px solid #ced4da;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  margin-top: 10px;
  padding: 15px;
  position: relative
}

.ff-errors-in-stack {
  display: none;
  margin-top: 15px
}

.ff-errors-in-stack .error {
  font-size: 14px;
  line-height: 1.7
}

.ff-errors-in-stack .error-clear {
  cursor: pointer;
  margin-left: 5px;
  padding: 0 5px
}

.ff-chat-reply-container div p {
  border-radius: 6px;
  margin-top: 12px;
  padding: 20px 16px
}

.ff-chat-reply-container div .skeleton {
  animation: skeleton-loading 2s linear infinite alternate;
  padding: 24px
}

@keyframes skeleton-loading {
  0% {
    background-color: #e3e6e8
  }

  to {
    background-color: #f0f3f5
  }
}

.ff-el-chat-container {
  position: relative
}

.ff-el-chat-container textarea {
  outline: none;
  position: relative;
  resize: none
}

.ff-el-chat-container .ff_btn_chat_style {
  background: 0 0;
  border: none;
  position: absolute;
  right: 10px;
  top: 38%
}

.ff-el-chat-container .ff_btn_chat_style svg:hover {
  cursor: pointer;
  opacity: .8;
  outline: 0;
  text-decoration: none;
  transition: all .4s
}

.iti-mobile .iti--container {
  z-index: 9999
}

.grecaptcha-badge {
  visibility: hidden
}

.fluentform .hidden_field {
  display: none !important
}

.fluentform .ff_force_hide {
  display: none !important;
  visibility: hidden !important
}

.fluentform .ff_scrolled_text {
  background: #e9ebed;
  height: 200px;
  overflow: scroll;
  padding: 10px 15px
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
  display: -moz-inline-stack;
  display: inline-block;
  float: none !important;
  margin: 0 0 10px;
  position: relative;
  width: auto !important
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label {
  margin: 0
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label:focus-within span {
  background-color: #b3d4fc
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check input {
  margin: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  z-index: -1
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span {
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #dcdfe6;
  border-left: 0;
  border-radius: 0;
  box-sizing: border-box;
  color: #606266;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  outline: none;
  padding: 12px 20px;
  position: relative;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  vertical-align: middle;
  white-space: nowrap
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span:hover {
  color: #1a7efb
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder {
  border: 1px solid #dcdfe5;
  overflow: hidden
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder span {
  border: none !important;
  border-radius: 0 !important;
  margin-left: -1px;
  width: 100%
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder.ff_item_selected {
  border-color: #1a7efb
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:first-child label>span {
  border-left: 1px solid #dcdfe6;
  border-radius: 4px 0 0 4px;
  box-shadow: none !important
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:last-child label>span {
  border-radius: 0 4px 4px 0
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label>span {
  background-color: #1a7efb;
  border-color: #1a7efb;
  box-shadow: -1px 0 0 0 #8cc5ff;
  color: #fff
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected:first-child label>span {
  border-left-color: #1a7efb
}

@media only screen and (max-width:768px) {
  .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
    display: block;
    width: 100%
  }

  .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span {
    border: 1px solid !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    display: block;
    width: 100%
  }
}

.fluentform div.ff-el-form-hide_label>.ff-el-input--label {
  display: none;
  visibility: hidden
}

.fluentform .ff_file_upload_holder {
  margin-bottom: 0
}

.fluentform .ff-dropzone .ff_upload_btn.ff-btn {
  background: rgba(223, 240, 255, .13);
  border: 1px dashed var(--fluentform-primary);
  border-radius: var(--fluentform-border-radius);
  color: var(--fluentform-secondary);
  display: block;
  padding: 35px;
  text-align: center;
  transition: all .2s ease;
  width: 100%
}

.fluentform .ff-dropzone .ff_upload_btn.ff-btn:hover {
  background: rgba(223, 240, 255, .49)
}

.fluentform .ff-dropzone .ff-uploaded-list {
  margin-top: 10px
}

.fluentform .ff_center {
  text-align: center
}

.fluentform .ff_right {
  text-align: right
}

.fluentform .ff_left {
  text-align: left
}

.fluentform .ff-form-inline .ff-t-container,
.fluentform .ff-form-inline>.ff-el-group,
.fluentform .ff-form-inline>.ff-name-field-wrapper {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top
}

.fluentform .ff-form-inline .ff-t-container .ff-t-cell .ff-el-input--label,
.fluentform .ff-form-inline .ff-t-container>.ff-el-input--label,
.fluentform .ff-form-inline>.ff-el-group .ff-t-cell .ff-el-input--label,
.fluentform .ff-form-inline>.ff-el-group>.ff-el-input--label,
.fluentform .ff-form-inline>.ff-name-field-wrapper .ff-t-cell .ff-el-input--label,
.fluentform .ff-form-inline>.ff-name-field-wrapper>.ff-el-input--label {
  display: none
}

.fluentform .ff-form-inline .ff-t-container .ff-el-input--content,
.fluentform .ff-form-inline>.ff-el-group .ff-el-input--content,
.fluentform .ff-form-inline>.ff-name-field-wrapper .ff-el-input--content {
  margin-left: 0
}

.fluentform .ff-form-inline .ff-t-container:last-child,
.fluentform .ff-form-inline>.ff-el-group:last-child,
.fluentform .ff-form-inline>.ff-name-field-wrapper:last-child {
  margin-right: 0
}

.fluentform .ff-t-container .ff-name-title {
  width: 40%
}

.fluentform .ff_hide_label .ff-el-input--label {
  display: none
}

.fluentform .field-value {
  white-space: pre-line
}

.fluentform .ff-el-group .ff-read-only {
  background-color: #e9ecef !important;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.fluentform .ff-el-group .ff-read-only:focus {
  outline: none
}

.fluentform label.ff-el-image-input-src {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  display: block;
  height: 200px;
  width: 200px
}

.fluentform .ff-el-image-holder {
  float: left;
  margin-bottom: 20px;
  margin-right: 20px;
  width: 200px
}

.fluentform .ff-el-image-holder .ff-el-form-check-label {
  padding-left: 1px
}

.fluentform .ff_el_checkable_photo_holders {
  display: block;
  margin-bottom: -20px;
  overflow: hidden
}

.fluentform .select2-container {
  width: 100% !important
}

.fluentform .select2-container .select2-selection__rendered li {
  margin: 0
}

.fluentform .select2-container .select2-search--inline>input {
  height: calc(2.25rem + 2px);
  line-height: 1.5;
  margin-top: 0;
  padding: .375rem 1.75rem .375rem .75rem
}

.fluentform .ff-el-form-bottom {
  display: flex;
  flex-direction: column-reverse
}

.fluentform .ff-el-form-bottom .ff-el-input--label {
  margin-bottom: 0;
  margin-top: 5px
}

.fluentform .mce-tinymce.mce-container.mce-panel {
  border: 1px solid #ced4da
}

.fluentform .ff_input-group {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%
}

.fluentform .ff_input-group>.ff-el-form-control:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  display: inline-block;
  width: auto
}

.fluentform .ff_input-group>.ff-el-form-control:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0
}

.fluentform .ff_input-group .ff-el-form-control {
  flex: 1 1 auto;
  margin-bottom: 0;
  position: relative;
  width: 1%
}

.fluentform .ff_input-group-prepend {
  margin-right: -1px
}

.fluentform .input-group-append {
  margin-left: -1px
}

.fluentform .ff_input-group-append,
.fluentform .ff_input-group-prepend {
  display: flex
}

.fluentform .ff_input-group>.ff_input-group-prepend>.ff_input-group-text {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0
}

.fluentform .ff_input-group>.ff_input-group-append>.ff_input-group-text {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0
}

.fluentform .ff_input-group-text {
  align-items: center;
  background-color: #e9ecef;
  border-radius: .25rem;
  color: #495057;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  padding: .375rem .75rem;
  text-align: center;
  white-space: nowrap
}

.fluentform .ff_coupon_wrapper .ff_input-group-append {
  cursor: pointer
}

.fluentform .ff_coupon_wrapper .ff_input-group-append:hover .ff_input-group-text {
  background: #e3e8ed
}

.fluentform ul.ff_coupon_responses {
  list-style: none;
  margin: 0;
  padding: 0
}

.fluentform ul.ff_coupon_responses li {
  padding-top: 5px
}

.fluentform ul.ff_coupon_responses span.error-clear {
  color: #ff5050;
  font-weight: 700;
  margin-right: 10px
}

.fluentform ul.ff_coupon_responses .ff_error {
  color: #f56c6c;
  cursor: pointer
}

.fluentform ul.ff_coupon_responses .ff_success {
  color: #28a745
}

.fluentform .ff-btn.disabled {
  opacity: .65
}

.fluentform .ff-btn.ff-working {
  position: relative;
  transition: all .3s ease
}

.fluentform .ff-btn.ff-working:after {
  animation: ff-progress-anim 4s 0s infinite;
  background: hsla(0, 0%, 100%, .4);
  bottom: 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0
}

.fluentform .ff-btn-block {
  display: block;
  width: 100%
}

.fluentform .ff-btn-block+.ff-el-btn-block {
  margin-top: 8px
}

.fluentform .ff_submitting {
  pointer-events: none
}

@keyframes ff-progress-anim {
  0% {
    width: 0
  }

  5% {
    width: 0
  }

  10% {
    width: 15%
  }

  30% {
    width: 40%
  }

  50% {
    width: 55%
  }

  80% {
    width: 100%
  }

  95% {
    width: 100%
  }

  to {
    width: 0
  }
}

.ff_modal_container {
  background: #fff;
  max-height: 90vh !important;
  max-width: 900px;
  overflow: auto;
  padding: 30px
}

@media only screen and (min-width:1000px) {
  .ff_modal_container {
    width: 900px
  }
}

.select2-results__option {
  margin: 0
}

.fluentform span.select2.select2-container:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #495057;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%)
}

.ff_pointer {
  cursor: pointer
}

.ff_net_table {
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  width: 100%
}

.ff_net_table th {
  border: none;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 0;
  text-align: center;
  vertical-align: bottom
}

.ff_net_table th .ff_not-likely {
  float: left;
  text-align: left
}

.ff_net_table th .ff_extremely-likely {
  float: right;
  text-align: right
}

.ff_net_table tbody tr {
  background: 0 0;
  border: 0
}

.ff_net_table tbody tr td {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle
}

.ff_net_table tbody tr td input[type=radio]:checked+label {
  background-color: #4caf50;
  color: #fff
}

.ff_net_table tbody tr td:first-of-type {
  border-left: 1px solid #ddd;
  border-radius: 5px 0 0 5px
}

.ff_net_table tbody tr td:last-child {
  border-radius: 0 5px 5px 0
}

.ff_net_table tbody tr td label {
  border: 0;
  color: #444;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin: 0;
  position: relative;
  width: 100%
}

.ff_net_table tbody tr td label:after {
  border: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.ff_net_table tbody tr td label:hover:after {
  border: 2px solid #4caf50
}

.ff-el-pop-content {
  background-color: #000;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  padding: 10px;
  position: absolute;
  text-align: center;
  transform-origin: center bottom;
  z-index: 9999
}

.ff-checkable-grids.mobile {
  border: 0
}

.ff-checkable-grids.mobile tbody tr {
  padding-top: 0 !important
}

.ff-checkable-grids.mobile tbody tr:nth-child(2n)>td {
  background: 0 0
}

.ff-checkable-grids.mobile tbody td {
  padding-left: 10px !important;
  text-align: left !important
}

.ff-checkable-grids.mobile tbody td.ff_grid_header {
  background-color: #eee !important;
  margin: 0
}

.ff-checkable-grids.mobile tbody td:after {
  content: attr(data-label);
  display: inline-block;
  letter-spacing: .5pt;
  padding-left: 10px;
  white-space: nowrap
}

span.ff-el-rating-text {
  line-height: 100%;
  padding-left: 5px;
  vertical-align: bottom
}

table.ff_repeater_table {
  background: transparent !important;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 5px;
  padding: 0;
  table-layout: auto !important;
  vertical-align: middle;
  width: 100%
}

table.ff_repeater_table th {
  font-size: 90%;
  padding: 0;
  text-align: left
}

table.ff_repeater_table th,
table.ff_repeater_table tr {
  background: transparent !important;
  border: 0;
  padding-top: 5px
}

table.ff_repeater_table td {
  background: transparent !important;
  border: 0;
  max-width: 100%;
  padding: 0 15px 15px 0;
  text-align: left;
  width: 282px
}

table.ff_repeater_table tbody tr:only-child td .repeat-minus {
  visibility: hidden
}

table.ff_repeater_table .ff-el-group {
  margin: 0;
  padding: 0
}

table.ff_repeater_table .repeat_btn {
  padding-right: 0;
  vertical-align: middle;
  width: 30px
}

table.ff_repeater_table .repeat_btn span.ff-icon {
  cursor: pointer;
  margin-right: 10px
}

table.ff_repeater_table .repeat_btn span.ff-icon.icon-minus-circle {
  margin-right: 0
}

table.ff_repeater_table.repeat-maxed .repeat_btn .repeat-plus {
  visibility: hidden
}

.ff-repeater-container {
  display: flex;
  flex-direction: column
}

.ff-repeater-container .repeat_btn {
  align-self: center;
  display: flex
}

.ff-repeater-container .ff_repeater_cont_row,
.ff-repeater-container .ff_repeater_header {
  display: flex;
  flex-wrap: nowrap
}

.ff-repeater-container .ff_repeater_cont_row:only-child .repeat-minus {
  visibility: hidden
}

.ff-repeater-container .ff_repeater_cell,
.ff-repeater-container .ff_repeater_header_item {
  box-sizing: border-box;
  padding: 0 15px 0 0;
  text-align: left
}

.ff-repeater-container .ff-el-repeat-buttons-list {
  display: flex;
  margin-top: 34%
}

.ff_repeater_table.mobile tbody td {
  display: block;
  padding: 10px;
  width: 100%
}

.ff_repeater_table.mobile tbody td .ff-el-group {
  margin-top: 6px
}

.ff_repeater_table.mobile tbody td:before {
  clear: both;
  content: attr(data-label);
  display: block;
  font-size: .875em;
  letter-spacing: .5pt;
  white-space: nowrap
}

.ff-el-section-break .ff-el-section-title {
  font-weight: 600;
  margin-bottom: 5px
}

.ff-el-section-break hr {
  background-color: #dadbdd;
  border: none;
  height: 1px;
  margin-bottom: 10px
}

table.ff_flexible_table.ff-checkable-grids {
  width: 100%
}

.ff_flexible_table.mobile thead {
  left: -9999px;
  position: absolute;
  top: -9999px
}

.ff_flexible_table.mobile tbody td {
  display: block;
  padding: 10px;
  width: 100%
}

.ff_flexible_table.mobile tbody tr {
  background: #fff;
  border-bottom: 1px solid #ced4da;
  border-top: 1px solid #ced4da;
  border-color: #ced4da;
  border-style: solid;
  border-width: 2px 1px 4px;
  display: block;
  margin: 16px 0 10px;
  position: relative
}

@media only screen and (min-width:641px) {
  .fluentform .ff-el-group.ff_list_3col .ff-el-form-check {
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0 0 2px;
    min-height: 28px;
    padding-right: 16px;
    vertical-align: top;
    width: 33.3%
  }

  .fluentform .ff-el-group.ff_list_2col .ff-el-form-check {
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0;
    min-height: 28px;
    padding-right: 16px;
    vertical-align: top;
    width: 50%
  }

  .fluentform .ff-el-group.ff_list_4col .ff-el-form-check {
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0;
    min-height: 28px;
    padding-right: 16px;
    vertical-align: top;
    width: 25%
  }

  .fluentform .ff-el-group.ff_list_5col .ff-el-form-check {
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0;
    min-height: 28px;
    padding-right: 16px;
    vertical-align: top;
    width: 20%
  }

  .fluentform .ff-el-group.ff_list_inline .ff-el-form-check {
    display: -moz-inline-stack;
    display: inline-block;
    float: none !important;
    margin: 0 15px 10px 0;
    width: auto !important
  }
}

@media (max-width:767px) {

  table.ff_flexible_table,
  table.ff_flexible_table.ff-checkable-grids {
    border: 0
  }

  table.ff_flexible_table.ff-checkable-grids tbody tr {
    padding-top: 0 !important
  }

  table.ff_flexible_table.ff-checkable-grids tbody tr td.ff_grid_header {
    background-color: #eee !important;
    margin: 0;
    text-align: center
  }

  table.ff_flexible_table.ff-checkable-grids tbody tr td {
    text-align: left !important
  }

  table.ff_flexible_table.ff-checkable-grids tbody tr td:before {
    content: none !important
  }

  table.ff_flexible_table.ff-checkable-grids tbody tr td:after {
    content: attr(data-label);
    display: inline-block;
    letter-spacing: .5pt;
    padding-left: 10px;
    white-space: nowrap
  }

  table.ff_flexible_table.ff-checkable-grids tbody tr:nth-child(2n)>td {
    background: 0 0
  }

  table.ff_flexible_table thead {
    left: -9999px;
    position: absolute;
    top: -9999px
  }

  table.ff_flexible_table tbody tr {
    background: #fff;
    border-bottom: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
    border-color: #ced4da;
    border-style: solid;
    border-width: 2px 1px 4px;
    display: block;
    margin: 16px 0 10px;
    padding-top: 12px !important;
    position: relative
  }

  table.ff_flexible_table tbody tr td {
    display: block;
    margin-left: 8px;
    margin-right: 8px;
    padding: 5px
  }

  table.ff_flexible_table tbody tr td:before {
    clear: both;
    content: attr(data-label);
    display: block;
    font-size: .875em;
    letter-spacing: .5pt;
    white-space: nowrap
  }

  table.ff_flexible_table tbody tr td.repeat_btn {
    background-color: #eee;
    margin-left: 0;
    padding: 10px !important;
    width: 100% !important
  }

  table.ff_flexible_table tbody tr td.repeat_btn .ff-el-repeat-buttons-list {
    float: none;
    width: 100%
  }
}

@media only screen and (max-width:768px) {
  .lity-container {
    width: 96%
  }

  .fluentform .ff-t-container .ff-name-title {
    width: 100%
  }

  .ff_repeater_cont_row {
    background: #fff;
    border-bottom: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
    border-color: #ced4da;
    border-style: solid;
    border-width: 2px 1px 4px;
    display: flex;
    flex-direction: column;
    margin: 16px 0 10px;
    padding-top: 12px
  }

  .ff_repeater_cont_row .ff_repeater_cell {
    display: block;
    margin-left: 8px;
    margin-right: 8px;
    padding: 5px
  }

  .ff_repeater_cont_row .ff-t-cell {
    flex-basis: 100% !important;
    max-width: 100%;
    width: 100%
  }

  .ff_repeater_cont_row .ff_repeater_body[role=rowgroup] {
    display: flex;
    flex-direction: column
  }

  .ff-repeater-container .ff-el-repeat-buttons-list {
    margin-top: -28px
  }

  .ff-el-repeat-buttons-list {
    margin-top: 0
  }
}

:root {
  --fluentform-primary: #1a7efb;
  --fluentform-secondary: #606266;
  --fluentform-danger: #f56c6c;
  --fluentform-border-color: #dadbdd;
  --fluentform-border-radius: 7px
}

.ff-default .ff_btn_style {
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 20px;
  position: relative;
  text-align: center;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap
}

.ff-default .ff_btn_style:focus,
.ff-default .ff_btn_style:hover {
  opacity: .8;
  outline: 0;
  text-decoration: none
}

.ff-default .ff-btn-primary:not(.ff_btn_no_style) {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff
}

.ff-default .ff-btn-primary:not(.ff_btn_no_style):focus,
.ff-default .ff-btn-primary:not(.ff_btn_no_style):hover {
  background-color: #0069d9;
  border-color: #0062cc;
  color: #fff
}

.ff-default .ff-btn-secondary:not(.ff_btn_no_style) {
  background-color: #606266;
  border-color: #606266;
  color: #fff
}

.ff-default .ff-btn-secondary:not(.ff_btn_no_style):focus,
.ff-default .ff-btn-secondary:not(.ff_btn_no_style):hover {
  background-color: #727b84;
  border-color: #6c757d;
  color: #fff
}

.ff-default .ff-btn-lg {
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.5;
  padding: 8px 16px
}

.ff-default .ff-btn-sm {
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  padding: 4px 8px
}

.ff-default .ff-el-form-control {
  background-clip: padding-box;
  background-image: none;
  border: 1px solid var(--fluentform-border-color);
  border-radius: var(--fluentform-border-radius);
  color: var(--fluentform-secondary);
  font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  line-height: 1;
  margin-bottom: 0;
  max-width: 100%;
  padding: 11px 15px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.ff-default .ff-el-form-control:focus {
  background-color: #fff;
  border-color: var(--fluentform-primary);
  color: var(--fluentform-secondary);
  outline: none
}

.ff-default .ff-el-form-check label.ff-el-form-check-label {
  cursor: pointer;
  margin-bottom: 7px
}

.ff-default .ff-el-form-check label.ff-el-form-check-label>span:after,
.ff-default .ff-el-form-check label.ff-el-form-check-label>span:before {
  content: none
}

.ff-default .ff-el-form-check:last-child label.ff-el-form-check-label {
  margin-bottom: 0
}

.ff-default textarea {
  min-height: 90px
}

select.ff-el-form-control:not([size]):not([multiple]) {
  height: 42px
}

.elementor-editor-active .ff-form-loading .ff-step-container .fluentform-step:first-child {
  height: auto
}

.ff-upload-preview.ff_uploading {
  opacity: .8
}

@keyframes ff_move {
  0% {
    background-position: 0 0
  }

  to {
    background-position: 50px 50px
  }
}

.ff_uploading .ff-el-progress .ff-el-progress-bar {
  animation: ff_move 2s linear infinite;
  background-image: linear-gradient(-45deg, hsla(0, 0%, 100%, .2) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .2) 0, hsla(0, 0%, 100%, .2) 75%, transparent 0, transparent);
  background-size: 50px 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-top-right-radius: 8px;
  bottom: 0;
  content: "";
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1
}

.ff_payment_summary {
  overflow-x: scroll
}

.pac-container {
  z-index: 99999 !important
}

.ff-support-sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px
}

.ff-default {
  font-family: inherit
}

.ff-default .ff-el-input--label label {
  display: inline-block;
  font-weight: 500;
  line-height: inherit;
  margin-bottom: 0
}

/*! elementor-pro - v3.25.0 - 20-11-2024 */
.elementor-skin-carousel .elementor-main-swiper,
.elementor-skin-coverflow .elementor-main-swiper {
  height: 230px
}

.elementor-skin-slideshow .elementor-main-swiper {
  height: 450px;
  position: relative
}

.elementor-skin-slideshow .elementor-thumbnails-swiper .elementor-custom-embed-play i {
  font-size: 50px
}

.elementor-skin-slideshow .elementor-thumbnails-swiper .swiper-slide {
  cursor: pointer
}

.elementor-skin-slideshow .elementor-thumbnails-swiper .swiper-slide:not(.swiper-slide-active):after {
  background-color: rgba(0, 0, 0, .3);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.elementor-carousel-image {
  background: no-repeat 50%;
  background-size: cover;
  height: 100%;
  position: relative
}

.elementor-carousel-image-overlay {
  align-items: center;
  background-color: hsla(213, 9%, 45%, .8);
  color: var(--e-carousel-image-overlay-color, #fff);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  transition: transform .5s, opacity .5s;
  width: 100%
}

.elementor-carousel-image-overlay i {
  font-size: var(--e-carousel-image-overlay-icon-size, 21px)
}

.elementor-carousel-image-overlay svg {
  fill: var(--e-carousel-image-overlay-color, #fff);
  height: var(--e-carousel-image-overlay-icon-size, 21px);
  width: var(--e-carousel-image-overlay-icon-size, 21px)
}