@charset "UTF-8";
html {
  box-sizing: border-box;
}

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

body, h1, h2, h3, h4, h5, h6, p, ol, ul, small {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

a,
a img {
  border: 0;
  outline: none;
  background: transparent;
  text-decoration: none;
}
a:active, a:hover,
a img:active,
a img:hover {
  outline: 0;
  text-decoration: none;
}

figure {
  margin: 0;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

header,
footer,
main,
aside,
section {
  position: relative;
  width: 100%;
}

.limit {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.gap {
  gap: 24px;
}

.w-100 {
  width: 100%;
}

.vh-full {
  min-height: 100vh;
}

.h-parent {
  min-height: inherit;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.relative {
  position: relative;
}

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

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

.hide {
  display: none;
}

.block {
  display: block;
}

.flex-col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
.flex-col > div, .flex-col > li, .flex-col > .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.flex-col > .col-fit {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.flex-col > .col-1 {
  max-width: 8.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 576px) {
  .xs-col-full > div, .xs-col-full > .col, .xs-col-full > .col-fit {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.flex-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.item-top {
  align-items: flex-start;
}

.item-middle {
  align-items: center;
}

.item-center {
  justify-content: center;
}

.item-left {
  justify-content: flex-start;
}

.item-right {
  justify-content: flex-end;
}

.item-bottom {
  align-items: flex-end;
}

.item-around {
  justify-content: space-around;
  align-content: space-around;
}

.item-between {
  justify-content: space-between;
}

.item-column {
  flex-direction: row;
}

.item-row {
  flex-direction: column;
}

.item-stretch {
  align-items: stretch;
}

.grid.row-afa {
  grid-template-rows: auto 1fr auto;
}
.grid.row-af {
  grid-template-rows: auto 1fr;
}
.grid.row-fa {
  grid-template-rows: 1fr auto;
}
.grid.col-afa {
  grid-template-columns: auto 1fr auto;
}
.grid.col-af {
  grid-template-columns: auto 1fr;
}
.grid.col-fa {
  grid-template-columns: 1fr auto;
}
.grid.row-2 {
  grid-template-rows: repeat(2, 1fr);
}
.grid.row-3 {
  grid-template-rows: repeat(3, 1fr);
}
.grid.row-4 {
  grid-template-rows: repeat(4, 1fr);
}
.grid.col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid.col-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid.col-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hover:hover {
  opacity: 0.6;
  cursor: pointer;
}

.uppercase {
  text-transform: uppercase;
}

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

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

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

.margin-center {
  margin-left: auto;
  margin-right: auto;
}

hr {
  height: 0;
  display: block;
  clear: both;
  border: none;
  margin: 0;
  position: relative;
}
hr.line {
  min-height: 1px;
}
hr.line:after {
  content: "";
  left: 0;
  border-bottom: 1px solid #ddd;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
}

.hr-1 {
  height: 24px;
}

.hr-2 {
  height: 48px;
}

.hr-3 {
  height: 72px;
}

.hr-4 {
  height: 96px;
}

.img-resize,
.img-resize img {
  width: 100%;
  display: block;
  height: auto;
}

.vid-resize,
.map-resize {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.vid-resize iframe,
.vid-resize object,
.vid-resize embed,
.vid-resize video,
.map-resize iframe,
.map-resize object,
.map-resize embed,
.map-resize video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.r-1-1,
.r-1-1 img {
  aspect-ratio: 1/1;
}

.r-4-3,
.r-4-3 img {
  aspect-ratio: 4/3;
}

.r-3-4,
.r-3-4 img {
  aspect-ratio: 3/4;
}

.r-16-9,
.r-16-9 img {
  aspect-ratio: 16/9;
}

.fit-cover,
.fit-contain {
  position: relative;
}
.fit-cover img,
.fit-cover video,
.fit-contain img,
.fit-contain video {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.fit-cover img {
  object-fit: cover;
}

.fit-contain img {
  object-fit: contain;
}

@media (min-width: 1101px) and (max-width: 99999px) {
  .lg-hide {
    display: none;
  }

  .md--hide {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .md-hide {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 99999px) {
  .sm--hide {
    display: none;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .sm-hide {
    display: none;
  }
}
@media (max-width: 576px) {
  .xs-hide {
    display: none;
  }
}
.solo-icon span,
.solo-text i {
  display: none;
}

.stack > * {
  grid-area: 1/1;
}
.stack .caption {
  align-self: center;
  z-index: 2;
}

:focus:not(:focus-visible) {
  outline: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.btn, .alm-btn-wrap .alm-load-more-btn,
input[type=button],
input[type=submit],
input[type=reset],
button {
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 42px;
  min-height: 42px;
  padding: 0 24px;
  cursor: pointer;
  border: 1px solid transparent;
  margin: 0;
  font-weight: 200;
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:focus, .alm-btn-wrap .alm-load-more-btn:focus,
input[type=button]:focus,
input[type=submit]:focus,
input[type=reset]:focus,
button:focus {
  box-shadow: 0 0 0 4px rgba(60, 74, 84, 0.1) !important;
}
.btn.disabled, .alm-btn-wrap .disabled.alm-load-more-btn, .btn:disabled, .alm-btn-wrap .alm-load-more-btn:disabled,
input[type=button].disabled,
input[type=button]:disabled,
input[type=submit].disabled,
input[type=submit]:disabled,
input[type=reset].disabled,
input[type=reset]:disabled,
button.disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn a, .alm-btn-wrap .alm-load-more-btn a,
button a,
.entry .btn,
.entry .alm-btn-wrap .alm-load-more-btn,
.alm-btn-wrap .entry .alm-load-more-btn {
  text-decoration: none !important;
}
.btn a:hover, .alm-btn-wrap .alm-load-more-btn a:hover,
button a:hover,
.entry .btn:hover,
.entry .alm-btn-wrap .alm-load-more-btn:hover,
.alm-btn-wrap .entry .alm-load-more-btn:hover {
  text-decoration: none;
}

.btn-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 42px;
}

label {
  display: inline-block;
  padding-bottom: 6px;
}

select {
  padding: 12px 12px;
  border: 1px solid #032380;
  color: #032380;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
}

textarea {
  padding: 12px 12px;
  border: 1px solid #032380;
  color: #032380;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=date] {
  border: 1px solid #032380;
  color: #032380;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
  height: 46px;
  padding: 12px 24px;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=date]:focus {
  outline: 0;
}

form button {
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  border: 0;
  border: 1px solid #032380;
  cursor: pointer;
  height: 46px;
}

input::placeholder {
  color: #032380;
}

form .group,
form .row {
  margin-bottom: 24px;
}
form .group select,
form .group input,
form .group textarea,
form .row select,
form .row input,
form .row textarea {
  margin-bottom: 0;
}

.bg-dark button,
.bg-dark input,
.bg-dark select,
.bg-dark textarea {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
}
.bg-dark input::placeholder {
  color: #fff;
}

body.menu-active {
  overflow: hidden;
}

.spmenu {
  opacity: 0;
  overflow: auto;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  bottom: 0;
  position: fixed;
  background-color: #032380;
  transition: all ease 0.3s;
  z-index: -1;
}
.spmenu .wrap {
  padding: 24px;
  min-height: 100%;
  width: 100%;
}
.spmenu.active {
  left: 0;
  top: 0;
  min-height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 9999;
}
.spmenu .close {
  top: 24px;
  right: 24px;
  z-index: 1;
}
.spmenu .head,
.spmenu .body,
.spmenu .foot {
  width: 100%;
}

body.disable {
  overflow: hidden;
}

.modal {
  background-color: #032380;
  left: 50%;
  top: 50%;
  position: fixed;
  z-index: 99999;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.modal .modal-inner {
  width: 50%;
  min-height: 50vh;
  background-color: #fff;
}
.modal .modal-close {
  top: 24px;
  right: 24px;
}
.modal.active {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.modal.full .modal-inner {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.modal.full .modal-close {
  position: absolute;
}

body {
  left: 0;
  transition: all ease 0.5s;
}

.ost-panel {
  transition: all ease 0.5s;
}

.ost-panel {
  display: none;
  position: fixed;
  top: 0;
  z-index: 999999;
  background-color: black;
}
.ost-panel.active {
  display: block;
}
.ost-panel.left, .ost-panel.right {
  display: block;
  min-height: 100vh;
  width: 100%;
  max-width: 340px;
}
.ost-panel.top, .ost-panel.bottom {
  display: block;
  width: 100%;
}
.ost-panel.left {
  left: 0;
  transform: translateX(-100%);
}
.ost-panel.left.active {
  transform: translateX(0);
}
.ost-panel.right {
  right: 0;
  transform: translateX(100%);
}
.ost-panel.right.active {
  transform: translateX(0);
}
.ost-panel.top {
  top: -100%;
}
.ost-panel.top.active {
  top: 0px;
}
.ost-panel.bottom {
  top: auto;
  bottom: -100%;
}
.ost-panel.bottom.active {
  bottom: 0px;
}
.ost-panel.full {
  display: block;
  opacity: 0;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  bottom: 0;
}
.ost-panel.full.active {
  left: 0;
  top: 0;
  min-height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 9999;
}

body.ost-panel-active.push-right {
  left: -340px !important;
}
body.ost-panel-active.push-left {
  left: 340px !important;
}
body.ost-panel-active.bg-fix {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: hidden;
}
body.ost-panel-active.bg-blur:before {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 999998;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}

.ic {
  font-size: 26px;
  font-weight: 900;
}

.ic-x1,
.ic--x1 i {
  font-size: 18px;
}

.ic-x2,
.ic--x2 i {
  font-size: 26px;
}

.ic-x3,
.ic--x3 i {
  font-size: 32px;
}

mark {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bold;
}

.mce-content-body em, .mce-content-body i,
.entry em,
.entry i {
  font-style: italic;
}
.mce-content-body b, .mce-content-body strong,
.entry b,
.entry strong {
  font-weight: bold;
}
.mce-content-body h1, .mce-content-body h2, .mce-content-body h3, .mce-content-body h4, .mce-content-body h5, .mce-content-body h6,
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {
  margin-bottom: 18px;
}
.mce-content-body p + p,
.mce-content-body p + ul,
.mce-content-body p + ol,
.entry p + p,
.entry p + ul,
.entry p + ol {
  padding-top: 18px;
}
.mce-content-body p + h1,
.mce-content-body p + h2,
.mce-content-body p + h3,
.mce-content-body p + h4,
.mce-content-body p + h5,
.mce-content-body p + h6,
.mce-content-body p + figure,
.entry p + h1,
.entry p + h2,
.entry p + h3,
.entry p + h4,
.entry p + h5,
.entry p + h6,
.entry p + figure {
  margin-top: 18px;
}
.mce-content-body ul li,
.entry ul li {
  list-style-type: disc;
}
.mce-content-body ol li,
.entry ol li {
  list-style-type: decimal;
}
.mce-content-body ul,
.mce-content-body ol,
.entry ul,
.entry ol {
  margin-left: 16px;
  padding-bottom: 18px;
  padding-left: 12px;
}
.mce-content-body a,
.mce-content-body a:hover,
.entry a,
.entry a:hover {
  text-decoration: underline;
}
.mce-content-body sup,
.entry sup {
  font-size: 11px;
  vertical-align: super;
}
.mce-content-body img,
.entry img {
  max-width: 100%;
  height: auto;
  display: block;
}
.mce-content-body figure,
.entry figure {
  width: 100%;
  margin-bottom: 18px;
}
.mce-content-body figure img,
.entry figure img {
  padding-bottom: 18px;
}
.mce-content-body figcaption,
.entry figcaption {
  padding-top: 18px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .mce-content-body figcaption,
.entry figcaption {
    padding-top: 0;
  }
}
.mce-content-body table,
.entry table {
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid #D1DAF3 !important;
}
.mce-content-body table tr td,
.entry table tr td {
  border-left: 1px dotted #D1DAF3;
}
.mce-content-body table tr td:first-child,
.entry table tr td:first-child {
  border: 0;
}
.mce-content-body i.la,
.mce-content-body i.las,
.mce-content-body i.fa,
.mce-content-body i.fas,
.mce-content-body i.ic,
.entry i.la,
.entry i.las,
.entry i.fa,
.entry i.fas,
.entry i.ic {
  font-style: inherit;
}

.mce-content-body p img.aligncenter,
.mce-content-body figure.aligncenter,
.entry p img.aligncenter,
.entry figure.aligncenter {
  margin: 0 auto;
}
.mce-content-body p img.alignleft,
.mce-content-body figure.alignleft,
.entry p img.alignleft,
.entry figure.alignleft {
  margin: 0 48px 48px 0;
  float: left;
}
.mce-content-body p img.alignright,
.mce-content-body figure.alignright,
.entry p img.alignright,
.entry figure.alignright {
  margin: 0 0 48px 48px;
  float: right;
}
@media screen and (max-width: 768px) {
  .mce-content-body figure,
.entry figure {
    width: 100% !important;
  }
  .mce-content-body p img.alignright,
.mce-content-body figure.alignright,
.mce-content-body p img.alignleft,
.mce-content-body figure.alignleft,
.entry p img.alignright,
.entry figure.alignright,
.entry p img.alignleft,
.entry figure.alignleft {
    margin: 0 0 48px 0;
    float: none;
  }
  .mce-content-body img,
.entry img {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 18px 0;
  }
}

.elementor-column.col-fit {
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.elementor-column.col-auto {
  -ms-flex-preferred-size: 0 !important;
  flex-basis: 0 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
  max-width: 100% !important;
}

.elementor-editor-active .logged-show {
  display: block;
  opacity: 0.5;
}

.elementor-editor-active.logged-in .logged-hide {
  display: block !important;
  opacity: 0.5 !important;
}
.elementor-editor-active.logged-in header.header {
  pointer-events: none;
}

.elementor-editor-activesktop .elementor-edit-area-active {
  z-index: 2;
}

.elementor-widget-text-editor p {
  font-weight: inherit;
  font-size: inherit;
  font-style: inherit;
  text-transform: inherit;
  line-height: inherit;
}

.wp-nav .item-icon span,
.wp-nav .item-text i,
.wp-nav .item-image span {
  display: none;
}
.wp-nav a.item-hidden {
  cursor: default;
}
.wp-nav a.item-hidden span {
  visibility: hidden;
}
.wp-nav img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.wp-nav li {
  position: relative;
}
.wp-nav > ul > li {
  padding: 12px 0;
}
.wp-nav .item-image,
.wp-nav .item-button {
  padding: 0 0;
}
.wp-nav .has-arrow {
  padding-right: 6px;
}
.wp-nav .has-arrow:after {
  content: "›";
  transform: rotate(90deg);
  display: inline-block;
  position: relative;
  top: 50%;
  right: -2px;
}
.wp-nav .has-arrow.active:after {
  transform: rotate(-90deg);
}
.wp-nav .submenu li {
  padding: 12px 0;
}
.wp-nav a:not(.btn) {
  display: inline-block;
}

.wp-nav .blockbar {
  position: static;
}
.wp-nav .blockbar .submenu-1 {
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  margin-top: 12px;
  transition: all ease 0.1s;
  width: 100%;
  padding: 12px;
}
.wp-nav .blockbar .submenu-1 > ul {
  display: flex;
  gap: 12px;
}
.wp-nav .blockbar:not(.has-click):hover .submenu-1, .wp-nav .blockbar.active .submenu-1 {
  display: block;
  transform: translate(0, 0);
}

.wp-nav .dropdown .submenu-1 {
  opacity: 0;
  visibility: hidden;
  top: 100px;
  position: absolute;
  z-index: 3;
  min-width: 120px;
  transition: all ease 0.3s;
  left: 50%;
  right: auto;
  text-align: center;
  transform: translateX(-50%);
}
.wp-nav .dropdown:not(.has-click):hover .submenu-1, .wp-nav .dropdown.active .submenu-1 {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

body#error-page .loading {
  display: none !important;
}

.ost-login {
  font-family: "Open Sans", sans-serif;
  background-color: #222;
  background-image: url("../images/bg-login.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ost-login.interim-login {
  background-image: none;
  background-color: #fff;
}
.ost-login.interim-login:before {
  display: none;
}
.ost-login.interim-login form {
  box-shadow: none;
}
.ost-login #login {
  padding: 0;
  margin: 0;
}
.ost-login form {
  margin-top: 50px;
  border: 0;
}
.ost-login h1,
.ost-login #backtoblog,
.ost-login p.status,
.ost-login #login_error {
  display: none;
}
.ost-login .forgetmenot {
  padding-top: 8px;
}
.ost-login input[type=submit].button-primary {
  text-shadow: inherit;
  box-shadow: none;
  background-color: #000;
  border: 0;
  border-radius: 0;
  height: 42px;
  min-width: 120px;
}
.ost-login input[type=submit].button-primary:hover {
  opacity: 0.8 !important;
}
.ost-login #nav {
  text-align: center;
}
.ost-login .privacy-policy-page-link a,
.ost-login #nav a {
  color: #ffffff !important;
  font-size: 14px !important;
}
.ost-login p.message {
  text-align: center;
  font-size: 14px;
}
.ost-login .language-switcher {
  display: none;
}

.social-link.icon span,
.social-link.text i {
  display: none;
}

.page-loading {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: fixed;
  z-index: 999999;
}
.page-loading:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url("../images/loader.svg");
  background-repeat: no-repeat;
  background-position: center center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-loading.bg-dark:after {
  color: #fff;
  filter: brightness(0) invert(1);
}

html.no-js .page-loading {
  display: none;
}

.post-edit-link,
.setup {
  border-radius: 4px;
  background-color: #f2f2f2;
  font-size: 12px;
  text-align: center;
  padding: 4px 12px;
  color: #999;
}
.post-edit-link.error,
.setup.error {
  background-color: rgba(217, 79, 79, 0.1);
  color: #D94F4F;
}

.post-edit-link {
  padding-left: 24px;
  background-repeat: no-repeat;
  background-position: 6px center;
  background-size: 12px 12px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI4LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxpdmVsbG9fMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojNzI3MjcyO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTI5MC43LDkzLjJsMTI4LDEyOGwtMjc4LDI3OEwyNi42LDUxMS45Yy0xNS4zLDEuNy0yOC4yLTExLjItMjYuNS0yNi41bDEyLjctMTE0LjIKCUMxMi44LDM3MS4xLDI5MC43LDkzLjIsMjkwLjcsOTMuMnogTTQ5Ny45LDc0LjJsLTYwLjEtNjAuMWMtMTguOC0xOC44LTQ5LjItMTguOC02Ny45LDBsLTU2LjUsNTYuNWwxMjgsMTI4bDU2LjUtNTYuNgoJQzUxNi43LDEyMy4zLDUxNi43LDkyLjksNDk3LjksNzQuMnoiLz4KPC9zdmc+Cg==");
}

.wp-nav .item-icon span,
.wp-nav .item-text i,
.wp-nav .item-image span {
  display: none;
}
.wp-nav a.item-hidden {
  cursor: default;
}
.wp-nav a.item-hidden span {
  visibility: hidden;
}
.wp-nav img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.wp-nav li {
  position: relative;
}
.wp-nav > ul > li {
  padding: 12px 0;
}
.wp-nav .item-image,
.wp-nav .item-button {
  padding: 0 0;
}
.wp-nav .has-arrow {
  padding-right: 6px;
}
.wp-nav .has-arrow:after {
  content: "›";
  transform: rotate(90deg);
  display: inline-block;
  position: relative;
  top: 50%;
  right: -2px;
}
.wp-nav .has-arrow.active:after {
  transform: rotate(-90deg);
}
.wp-nav .submenu li {
  padding: 12px 0;
}
.wp-nav a:not(.btn) {
  display: inline-block;
}

.wp-nav .blockbar {
  position: static;
}
.wp-nav .blockbar .submenu-1 {
  display: none;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  margin-top: 12px;
  transition: all ease 0.1s;
  width: 100%;
  padding: 12px;
}
.wp-nav .blockbar .submenu-1 > ul {
  display: flex;
  gap: 12px;
}
.wp-nav .blockbar:not(.has-click):hover .submenu-1, .wp-nav .blockbar.active .submenu-1 {
  display: block;
  transform: translate(0, 0);
}

.wp-nav .dropdown .submenu-1 {
  opacity: 0;
  visibility: hidden;
  top: 100px;
  position: absolute;
  z-index: 3;
  min-width: 120px;
  transition: all ease 0.3s;
  left: 50%;
  right: auto;
  text-align: center;
  transform: translateX(-50%);
}
.wp-nav .dropdown:not(.has-click):hover .submenu-1, .wp-nav .dropdown.active .submenu-1 {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.ck-1 {
  color: #032380;
}

.ck-2 {
  color: #1B46C2;
}

.ck-3 {
  color: #E7ECF9;
}

.ck-4 {
  color: #A3B5E7;
}

.ck-5 {
  color: #032380;
}

.ck-accent {
  color: #1B46C2;
}

.ck-white {
  color: #fff;
}

.ck-success {
  color: #4BB867;
}

.ck-error {
  color: #D94F4F;
}

.bg-ck-1 {
  background-color: #032380;
}

.bg-ck-2 {
  background-color: #1B46C2;
}

.bg-ck-3 {
  background-color: #E7ECF9;
}

.bg-ck-4 {
  background-color: #A3B5E7;
}

.bg-ck-5 {
  background-color: #032380;
}

.bg-ck-white {
  background-color: #fff;
}

.bg-ck-accent {
  background-color: #1B46C2;
}

.bg-success {
  background-color: key-success;
}

.bg-error {
  background-color: #D94F4F;
}

.bg-dark *,
.bg-dark a {
  color: #fff;
}
.bg-dark a:hover,
.bg-dark input,
.bg-dark i {
  color: inherit;
}

.filter-white {
  filter: brightness(0) invert(1);
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

::selection,
::-moz-selection {
  background: #1B46C2;
  color: #fff;
}

.owl {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl .owl-wrapper,
.owl .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 .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl .owl-item img {
  display: block;
  width: 100%;
}
.owl .owl-nav.disabled,
.owl .owl-dots.disabled {
  display: none;
}
.owl .owl-prev,
.owl .owl-next,
.owl .owl .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  width: auto;
}
.owl button.owl-btn {
  width: auto;
}
.owl.owl-loaded {
  display: block;
}
.owl.owl-loading {
  opacity: 0;
  display: block;
}
.owl.owl-hidden {
  opacity: 0;
}
.owl.owl-refresh .owl-item {
  visibility: hidden;
}
.owl.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl.owl-rtl {
  direction: rtl;
}
.owl.owl-rtl .owl-item {
  float: right;
}
.owl .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl .owl-animated-in {
  z-index: 0;
}
.owl .owl-animated-out {
  z-index: 1;
}
.owl .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.no-js .owl {
  display: block;
}

.owl-height {
  transition: height 500ms ease-in-out;
}

.owl .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl .owl-item .owl-lazy[src^=""], .owl .owl .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl .owl-video-playing .owl-video-tn,
.owl .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl.caption-inside .item {
  display: grid;
}
.owl.caption-inside .item > * {
  grid-area: 1/1;
}
.owl.caption-inside .caption {
  align-self: end;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px;
}
.owl.caption-hover .caption {
  transition: all ease 0.3s;
  opacity: 0;
  transform: translateY(-50%);
}
.owl.caption-hover .item:hover > .caption {
  opacity: 1;
  transform: translateY(0);
}

.owl-dots {
  margin-top: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.owl-dots .owl-dot {
  min-height: inherit;
}
.owl-dots .owl-dot span {
  display: block;
  transition: opacity 200ms ease;
  width: 10px;
  height: 10px;
  border-radius: 30px;
  opacity: 0.4;
  background-color: #000;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  opacity: 1;
}

.bg-dark .owl-dot span {
  background-color: #fff;
}

.owl .owl-nav button {
  min-width: 42px;
  height: 42px;
  padding: 0;
}
.owl.nav-center .owl-nav {
  text-align: center;
}
.owl.nav-center .owl-nav .owl-prev,
.owl.nav-center .owl-nav .owl-next {
  float: none;
}
.owl.nav-over .owl-next,
.owl.nav-over .owl-prev, .owl.nav-inner .owl-next,
.owl.nav-inner .owl-prev, .owl.nav-offset .owl-next,
.owl.nav-offset .owl-prev, .owl.nav-bottom .owl-next,
.owl.nav-bottom .owl-prev, .owl.nav-top .owl-next,
.owl.nav-top .owl-prev {
  position: absolute;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%);
}
.owl.nav-over .owl-next, .owl.nav-inner .owl-next, .owl.nav-offset .owl-next, .owl.nav-bottom .owl-next, .owl.nav-top .owl-next {
  right: 0;
}
.owl.nav-over .owl-prev, .owl.nav-inner .owl-prev, .owl.nav-offset .owl-prev, .owl.nav-bottom .owl-prev, .owl.nav-top .owl-prev {
  left: 0;
}
.owl.nav-over .owl-dots, .owl.nav-inner .owl-dots, .owl.nav-offset .owl-dots, .owl.nav-bottom .owl-dots, .owl.nav-top .owl-dots {
  position: absolute;
  width: 100%;
  left: 0;
}
.owl.nav-inner {
  padding-left: 72px;
  padding-right: 72px;
}
.owl.nav-offset {
  padding-left: 60px;
  padding-right: 60px;
  margin-left: -60px;
  width: calc(100% + 120px);
}
.owl.nav-bottom .owl-next,
.owl.nav-bottom .owl-prev {
  margin: 0;
  bottom: 0;
  top: auto;
  transform: translateY(0);
}
.owl.nav-top .owl-next,
.owl.nav-top .owl-prev {
  margin: 0;
  top: 0;
  transform: translateY(0);
}
.owl.nav-reveal .owl-next {
  opacity: 0;
  right: -40px;
}
.owl.nav-reveal .owl-prev {
  opacity: 0;
  left: -40px;
}
.owl.nav-reveal:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.owl.nav-reveal:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.owl.nearby .item img {
  height: 50vh;
  width: auto;
}
.owl.nearby .owl-stage {
  background-color: #000;
}

.owl.img-vh-10 .item img {
  height: 10vh;
}
.owl.img-vh-20 .item img {
  height: 20vh;
}
.owl.img-vh-30 .item img {
  height: 30vh;
}
.owl.img-vh-40 .item img {
  height: 40vh;
}
.owl.img-vh-50 .item img {
  height: 50vh;
}
.owl.img-vh-60 .item img {
  height: 60vh;
}
.owl.img-vh-70 .item img {
  height: 70vh;
}
.owl.img-vh-80 .item img {
  height: 80vh;
}
.owl.img-vh-90 .item img {
  height: 90vh;
}
.owl.img-vh-100 .item img {
  height: 100vh;
}

.owl {
  /*
  &.ss-slideshow {
    .item {
      display: flex;
      justify-content: center;
      img {
        width: auto;
      }
    }
  }
  */
  /*
  &.item-middle {
    .item {
      display: flex;
      align-items: center;
    }
  }
  &.item-bottom {
    .item {
      display: flex;
      align-items: flex-end;
    }
  }
  */
}

/*
.owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  .btn-square:first-child {
    border-bottom: 0!important;
  }
}
*/
/*
.owl-dots {
  .owl-dot span {
    background-color:#fff;
    width: 25px;
    height: 5px;
    border-radius: 0px;
  }
}
*/
@font-face {
  font-family: "lg";
  src: url("../fonts/lg/lg.woff2?io9a6k") format("woff2"), url("../fonts/lg/lg.ttf?io9a6k") format("truetype"), url("../fonts/lg/lg.woff?io9a6k") format("woff"), url("../fonts/lg/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: 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";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next, .lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #fff;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
  opacity: 0.8;
}

.lg-toolbar .lg-close:after {
  content: "";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "";
}

.lg-toolbar .lg-download:after {
  content: "";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  -o-transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("../images/loading.gif") no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
  padding-bottom: 48px;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -moz-transition: -moz-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.alm-btn-wrap {
  display: block;
  text-align: center;
  margin-top: 48px;
  position: relative;
}

.alm-btn-wrap:after {
  display: table;
  clear: both;
  height: 0;
  content: "";
}

.alm-btn-wrap .alm-load-more-btn {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.alm-btn-wrap .alm-load-more-btn:hover,
.alm-btn-wrap .alm-load-more-btn.loading {
  background-color: #851D3C;
  color: #fff;
}

.alm-btn-wrap .alm-load-more-btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
}

.alm-btn-wrap .alm-load-more-btn.loading {
  cursor: wait;
  outline: none;
  padding-left: 44px;
}

.alm-btn-wrap .alm-load-more-btn.done {
  cursor: default;
  opacity: 0.2;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.alm-btn-wrap .alm-load-more-btn:before,
.alm-btn-wrap .alm-load-more-btn.done:before {
  background: none;
  width: 0;
}

.alm-btn-wrap .alm-load-more-btn.loading:before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 24px;
  height: 24px;
  display: inline-block;
  z-index: 0;
  content: "";
  position: absolute;
  left: 12px;
  overflow: hidden;
  filter: brightness(0) invert(1);
  top: 6px;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.alm-btn-wrap .alm-elementor-link {
  display: block;
  font-size: 13px;
  margin: 0 0 15px;
}

@media screen and (min-width: 768px) {
  .alm-btn-wrap .alm-elementor-link {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
  }
}
/* Infinite */
.ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn {
  width: 100%;
  background-color: transparent !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/spinner.gif");
  border: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  overflow: hidden;
  text-indent: -9999px;
  cursor: default !important;
  outline: none !important;
}

.ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn:before {
  display: none !important;
}

.ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn:focus, .ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn:active {
  outline: none;
}

.ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn.done {
  opacity: 0;
}

.ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn.loading {
  opacity: 1;
}

.ajax-load-more-wrap.infinite.skype > .alm-btn-wrap .alm-load-more-btn {
  background-image: url("../images/spinner-skype.gif");
}

.ajax-load-more-wrap.infinite.ring > .alm-btn-wrap .alm-load-more-btn {
  background-image: url("../images/spinner-ring.gif");
}

.ajax-load-more-wrap.infinite.fading-blocks > .alm-btn-wrap .alm-load-more-btn {
  background-image: url("../images/loader-fading-blocks.gif");
}

.ajax-load-more-wrap.infinite.fading-circles > .alm-btn-wrap .alm-load-more-btn {
  background-image: url("../images/loader-fading-circles.gif");
}

.ajax-load-more-wrap.infinite.chasing-arrows > .alm-btn-wrap .alm-load-more-btn {
  background-image: url("../images/spinner-chasing-arrows.gif");
}

.ajax-load-more-wrap.alm-horizontal .alm-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.ajax-load-more-wrap.alm-horizontal .alm-btn-wrap button {
  margin: 0;
}

.ajax-load-more-wrap.alm-horizontal .alm-btn-wrap button.done {
  display: none;
}

.alm-btn-wrap--prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  clear: both;
  padding: 0;
  margin: 0;
}

.alm-btn-wrap--prev:after {
  display: table;
  clear: both;
  height: 0;
  content: "";
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  padding: 5px;
  display: inline-block;
  position: relative;
  margin: 0 0 15px;
  text-decoration: none;
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev:hover, .alm-btn-wrap--prev a.alm-load-more-btn--prev:focus {
  text-decoration: underline;
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.loading, .alm-btn-wrap--prev a.alm-load-more-btn--prev.loading:focus {
  cursor: wait;
  text-decoration: none;
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.loading:before, .alm-btn-wrap--prev a.alm-load-more-btn--prev.loading:focus:before {
  content: "";
  display: block;
  position: absolute;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../images/ajax-loader-lg.gif") no-repeat left center;
  background-size: 16px 16px;
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.skype.loading:before {
  background-image: url("../images/spinner-skype.gif");
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.ring.loading:before {
  background-image: url("../images/spinner-ring.gif");
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.fading-blocks.loading:before {
  background-image: url("../images/spinner-fading-blocks.gif");
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.circles.loading:before {
  background-image: url("../images/spinner-circles.gif");
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.chasing-arrows.loading:before {
  background-image: url("../images/spinner-chasing-arrows.gif");
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev:not(.disabled),
.alm-btn-wrap--prev a.alm-load-more-btn--prev button:not([disabled]) {
  cursor: pointer;
}

.alm-btn-wrap--prev a.alm-load-more-btn--prev.done {
  display: none !important;
}

/**
 *  Generic alm-listing Styles
 *  @since 1.0.0
 */
.alm-listing .alm-reveal {
  outline: none;
}

.alm-listing .alm-reveal:after {
  display: table;
  clear: both;
  height: 0;
  content: "";
}

.alm-listing {
  margin: 0;
  padding: 0;
}

.alm-listing .alm-reveal > li,
.alm-listing .alm-paging-content > li,
.alm-listing > li {
  position: relative;
}

.alm-listing .alm-reveal > li.alm-item,
.alm-listing .alm-paging-content > li.alm-item,
.alm-listing > li.alm-item {
  background: none;
  margin: 0 0 30px;
  padding: 0 0 0 80px;
  position: relative;
  list-style: none;
}

@media screen and (min-width: 480px) {
  .alm-listing .alm-reveal > li.alm-item,
.alm-listing .alm-paging-content > li.alm-item,
.alm-listing > li.alm-item {
    padding: 0 0 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .alm-listing .alm-reveal > li.alm-item,
.alm-listing .alm-paging-content > li.alm-item,
.alm-listing > li.alm-item {
    padding: 0 0 0 135px;
  }
}
@media screen and (min-width: 1024px) {
  .alm-listing .alm-reveal > li.alm-item,
.alm-listing .alm-paging-content > li.alm-item,
.alm-listing > li.alm-item {
    padding: 0 0 0 160px;
  }
}
.alm-listing .alm-reveal > li.alm-item h3,
.alm-listing .alm-paging-content > li.alm-item h3,
.alm-listing > li.alm-item h3 {
  margin: 0;
}

.alm-listing .alm-reveal > li.alm-item p,
.alm-listing .alm-paging-content > li.alm-item p,
.alm-listing > li.alm-item p {
  margin: 10px 0 0;
}

.alm-listing .alm-reveal > li.alm-item p.entry-meta,
.alm-listing .alm-paging-content > li.alm-item p.entry-meta,
.alm-listing > li.alm-item p.entry-meta {
  opacity: 0.75;
}

.alm-listing .alm-reveal > li.alm-item img,
.alm-listing .alm-paging-content > li.alm-item img,
.alm-listing > li.alm-item img {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  max-width: 65px;
}

@media screen and (min-width: 480px) {
  .alm-listing .alm-reveal > li.alm-item img,
.alm-listing .alm-paging-content > li.alm-item img,
.alm-listing > li.alm-item img {
    max-width: 85px;
  }
}
@media screen and (min-width: 768px) {
  .alm-listing .alm-reveal > li.alm-item img,
.alm-listing .alm-paging-content > li.alm-item img,
.alm-listing > li.alm-item img {
    max-width: 115px;
  }
}
@media screen and (min-width: 1024px) {
  .alm-listing .alm-reveal > li.alm-item img,
.alm-listing .alm-paging-content > li.alm-item img,
.alm-listing > li.alm-item img {
    max-width: 140px;
  }
}
.alm-listing .alm-reveal > li.no-img,
.alm-listing .alm-paging-content > li.no-img,
.alm-listing > li.no-img {
  padding: 0;
}

.alm-listing.products li.product {
  padding-left: inherit;
}

.alm-listing.products li.product img {
  position: static;
  border-radius: inherit;
}

.alm-listing.stylefree .alm-reveal > li,
.alm-listing.stylefree .alm-paging-content > li,
.alm-listing.stylefree > li {
  padding: inherit;
  margin: inherit;
}

.alm-listing.stylefree .alm-reveal > li img,
.alm-listing.stylefree .alm-paging-content > li img,
.alm-listing.stylefree > li img {
  padding: inherit;
  margin: inherit;
  position: static;
  border-radius: inherit;
}

.alm-listing.rtl .alm-reveal > li,
.alm-listing.rtl .alm-paging-content > li {
  padding: 0 170px 0 0;
  text-align: right;
}

.alm-listing.rtl .alm-reveal > li img,
.alm-listing.rtl .alm-paging-content > li img {
  left: auto;
  right: 0;
}

.alm-listing.rtl.products li.product {
  padding-right: inherit;
}

.alm-masonry {
  display: block;
  overflow: hidden;
  clear: both;
}

.alm-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  display: none;
}

.ajax-load-more-wrap.alm-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}

.ajax-load-more-wrap.alm-horizontal .alm-listing,
.ajax-load-more-wrap.alm-horizontal .alm-listing .alm-reveal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.ajax-load-more-wrap.alm-horizontal .alm-listing > li.alm-item,
.ajax-load-more-wrap.alm-horizontal .alm-listing .alm-reveal > li.alm-item {
  padding: 0;
  text-align: center;
  margin: 0 2px;
  padding: 20px 20px 30px;
  height: auto;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 4px;
  width: 300px;
}

.ajax-load-more-wrap.alm-horizontal .alm-listing > li.alm-item img,
.ajax-load-more-wrap.alm-horizontal .alm-listing .alm-reveal > li.alm-item img {
  position: static;
  border-radius: 100%;
  max-width: 125px;
  margin: 0 auto 15px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.075);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.075);
}

.ajax-load-more-wrap.alm-horizontal .alm-listing .alm-reveal:after {
  display: none;
}

.alm-toc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding: 10px 0;
}

.alm-toc button {
  background: #f7f7f7;
  border-radius: 4px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  outline: none;
  border: 1px solid #efefef;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #454545;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  line-height: 1;
  margin: 0 5px 0 0;
  height: auto;
}

.alm-toc button:hover, .alm-toc button:focus {
  border-color: #ccc;
  color: #222;
}

.alm-toc button:hover {
  text-decoration: underline;
}

.alm-toc button:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

@font-face {
  font-family: "ic-folio";
  src: url("../fonts/ic-folio/ic-folio.eot?o1ph77");
  src: url("../fonts/ic-folio/ic-folio.eot?o1ph77#iefix") format("embedded-opentype"), url("../fonts/ic-folio/ic-folio.ttf?o1ph77") format("truetype"), url("../fonts/ic-folio/ic-folio.woff?o1ph77") format("woff"), url("../fonts/ic-folio/ic-folio.svg?o1ph77#ic-folio") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.ic {
  font-family: "ic-folio" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ic-logo:before {
  content: "";
}

.ic-bars:before {
  content: "";
}

.ic-bars-alt:before {
  content: "";
}

.ic-times:before {
  content: "";
}

.ic-search:before {
  content: "";
}

.ic-check:before {
  content: "";
}

.ic-angle-down:before {
  content: "";
}

.ic-angle-left:before {
  content: "";
}

.ic-angle-right:before {
  content: "";
}

.ic-angle-up:before {
  content: "";
}

.ic-arrow-down:before {
  content: "";
}

.ic-arrow-left:before {
  content: "";
}

.ic-arrow-right:before {
  content: "";
}

.ic-arrow-up:before {
  content: "";
}

.ic-caret-down:before {
  content: "";
}

.ic-caret-up:before {
  content: "";
}

.ic-download:before {
  content: "";
}

.ic-envelope:before {
  content: "";
}

.ic-exclamation:before {
  content: "";
}

.ic-file:before {
  content: "";
}

.ic-filter:before {
  content: "";
}

.ic-info:before {
  content: "";
}

.ic-link:before {
  content: "";
}

.ic-lock:before {
  content: "";
}

.ic-map:before {
  content: "";
}

.ic-minus:before {
  content: "";
}

.ic-plus:before {
  content: "";
}

.ic-power-off:before {
  content: "";
}

.ic-sort:before {
  content: "";
}

.ic-user:before {
  content: "";
}

.ic-cart:before {
  content: "";
}

.ic-heart:before {
  content: "";
}

.ic-play:before {
  content: "";
}

.ic-instagram:before {
  content: "";
}

.ic-facebook:before {
  content: "";
}

.ic-twitter:before {
  content: "";
}

.ic-pinterest:before {
  content: "";
}

.ic-vimeo:before {
  content: "";
}

.ic-youtube:before {
  content: "";
}

.ic-linkedin:before {
  content: "";
}

.p-1 {
  padding: 12px;
}

.pt-1, .py-1 {
  padding-top: 12px;
}

.pr-1, .px-1 {
  padding-right: 12px;
}

.pb-1, .py-1 {
  padding-bottom: 12px;
}

.pl-1, .px-1 {
  padding-left: 12px;
}

.m-1 {
  margin: 12px;
}

.mt-1, .my-1 {
  margin-top: 12px;
}

.mr-1, .mx-1 {
  margin-right: 12px;
}

.mb-1, .my-1 {
  margin-bottom: 12px;
}

.ml-1, .mx-1 {
  margin-left: 12px;
}

.p-2 {
  padding: 24px;
}

.pt-2, .py-2 {
  padding-top: 24px;
}

.pr-2, .px-2 {
  padding-right: 24px;
}

.pb-2, .py-2 {
  padding-bottom: 24px;
}

.pl-2, .px-2 {
  padding-left: 24px;
}

.m-2 {
  margin: 24px;
}

.mt-2, .my-2 {
  margin-top: 24px;
}

.mr-2, .mx-2 {
  margin-right: 24px;
}

.mb-2, .my-2 {
  margin-bottom: 24px;
}

.ml-2, .mx-2 {
  margin-left: 24px;
}

.p-3 {
  padding: 32px;
}

.pt-3, .py-3 {
  padding-top: 32px;
}

.pr-3, .px-3 {
  padding-right: 32px;
}

.pb-3, .py-3 {
  padding-bottom: 32px;
}

.pl-3, .px-3 {
  padding-left: 32px;
}

.m-3 {
  margin: 32px;
}

.mt-3, .my-3 {
  margin-top: 32px;
}

.mr-3, .mx-3 {
  margin-right: 32px;
}

.mb-3, .my-3 {
  margin-bottom: 32px;
}

.ml-3, .mx-3 {
  margin-left: 32px;
}

.p-4 {
  padding: 48px;
}

.pt-4, .py-4 {
  padding-top: 48px;
}

.pr-4, .px-4 {
  padding-right: 48px;
}

.pb-4, .py-4 {
  padding-bottom: 48px;
}

.pl-4, .px-4 {
  padding-left: 48px;
}

.m-4 {
  margin: 48px;
}

.mt-4, .my-4 {
  margin-top: 48px;
}

.mr-4, .mx-4 {
  margin-right: 48px;
}

.mb-4, .my-4 {
  margin-bottom: 48px;
}

.ml-4, .mx-4 {
  margin-left: 48px;
}

.vh-min-100 {
  min-height: 100vh;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row.gap {
  margin-right: 0;
  margin-left: -24px;
}
.row.gap > div {
  padding-left: 24px;
}

.row > div {
  width: 100%;
}

.row > div,
.row > li,
.row > a,
.row .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.row .col-fit {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 1100px) {
  .row .md-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .md-col-fit {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .row .sm-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .sm-col-fit {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .row .xs-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row .xs-col-fit {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

.row .col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 1100px) {
  .row .md-col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .row .md-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .row .sm-col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .row .sm-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .row .xs-col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

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

  .row .xs-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.show {
  display: block;
}

@media screen and (max-width: 1100px) {
  .md-show {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sm-show {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .xs-show {
    display: block;
  }
}
body.style-default {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #032380;
  font-weight: normal;
}
body.style-default .limit {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
body.style-default h1, body.style-default .fs-1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 2.8rem;
}
body.style-default h2, body.style-default .fs-2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 2rem;
  line-height: 2.3rem;
}
body.style-default h3, body.style-default .fs-3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.75rem;
  line-height: 2rem;
}
body.style-default h4, body.style-default .fs-4 {
  font-size: 1.5rem;
  line-height: 1.8rem;
}
body.style-default p, body.style-default .p {
  font-size: 16px;
  line-height: 22px;
}
body.style-default small, body.style-default .small {
  font-size: 14px;
}
body.style-default .btn, body.style-default .alm-btn-wrap .alm-load-more-btn, .alm-btn-wrap body.style-default .alm-load-more-btn {
  background-color: #1B46C2;
  color: #fff;
  border-width: 1px;
  border-color: transparent;
  border-radius: 0;
  border-style: solid;
  border-radius: 4px;
}
body.style-default .btn:hover, body.style-default .alm-btn-wrap .alm-load-more-btn:hover, .alm-btn-wrap body.style-default .alm-load-more-btn:hover {
  background-color: #1B46C2;
  color: #fff;
  border-width: 1px;
  border-color: transparent;
  border-radius: 0;
  border-style: solid;
}
body.style-default .btn-icon {
  background-color: transparent;
  color: #1B46C2;
  border-width: 1px;
  border-color: transparent;
  border-radius: 0;
  border-style: solid;
  padding: 0;
  height: 42px;
  width: 42px;
  border-radius: 4px;
}
body.style-default .btn-icon:hover {
  background-color: #1B46C2;
  color: #fff;
  border-width: 1px;
  border-color: transparent;
  border-radius: 0;
  border-style: solid;
  padding: 0;
}
body.style-default .nav.gap {
  gap: 12px;
}
body.style-default body {
  background-color: #fbfcfe;
}
body.style-default header.header {
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}
body.style-default header.header .header-top > div,
body.style-default header.header .header-main > div,
body.style-default header.header .header-bottom > div {
  border-bottom: 1px solid #ddd;
}
body.style-default footer.footer {
  background-color: #fff;
}
body.style-default footer.footer .footer-top > div,
body.style-default footer.footer .footer-main > div,
body.style-default footer.footer .footer-bottom > div {
  border-top: 1px solid #ddd;
}
body.style-default footer.footer h4 {
  font-size: 16px;
  padding-bottom: 12px;
  text-transform: uppercase;
}
body.style-default .widget.widget_recent_entries li {
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}
body.style-default .widget.widget_recent_entries li:last-child {
  border: 0;
}
body.style-default .widget.widget_recent_entries li span {
  font-size: 12px;
  opacity: 0.7;
}
body.style-default footer.footer.bg-dark {
  background-color: #032380;
  color: #fff;
}
body.style-default footer.footer.bg-dark .footer-top > div,
body.style-default footer.footer.bg-dark .footer-main > div,
body.style-default footer.footer.bg-dark .footer-bottom > div {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
body.style-default footer.footer.bg-dark .site-logo img {
  filter: brightness(0) invert(1);
}
body.style-default footer.footer.bg-dark a, body.style-default footer.footer.bg-dark i {
  color: #fff;
}
body.style-default header.header .wp-nav .dropdown .submenu {
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}
body.style-default .search-form input[type=text],
body.style-default .search-form input[type=search] {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  border: 1px solid transparent;
  background-color: rgba(27, 70, 194, 0.1);
}
body.style-default .search-form button,
body.style-default .search-form input[type=submit] {
  margin-left: -1px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 0 12px;
}
body.style-default .page-head {
  padding-top: 24px;
  padding-top: 24px;
}
body.style-default .author-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid #ddd;
}
body.style-default .author-info img {
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid #ddd;
}
body.style-default .author-info a {
  text-decoration: underline;
}
body.style-default .pagination {
  padding: 12px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
body.style-default .pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  height: 36px;
  min-width: 36px;
}
body.style-default .pagination .current {
  background: #1B46C2;
  color: #fff;
}
body.style-default .cat-carousel {
  border-top: 1px solid #ddd;
}
body.style-default .cat-carousel .item {
  border-width: 3px;
  border-style: solid;
  text-align: center;
}
body.style-default .cat-carousel .item img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
body.style-default .cat-carousel .item small {
  color: #fff;
  padding: 12px;
  height: 42px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
body.style-default .cat-search {
  border-top: 1px solid #ddd;
}
body.style-default .cat-search .cat-search-primary {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  body.style-default .cat-search .cat-search-primary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  body.style-default .cat-search .cat-search-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 18px;
  }
  body.style-default .cat-search .cat-search-primary a {
    display: block;
    width: 100%;
  }
}
body.style-default .cat-search .item {
  transition: all ease 0.3s;
  background-color: rgba(27, 70, 194, 0);
  border: 3px solid rgba(27, 70, 194, 0.3);
  border-radius: 8px;
  padding: 12px 24px;
  text-align: center;
  aspect-ratio: 4/3;
  min-width: 150px;
}
body.style-default .cat-search .item img {
  max-width: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  body.style-default .cat-search .item img {
    max-width: 40px;
  }
}
body.style-default .cat-search .item:hover {
  background-color: rgba(27, 70, 194, 0.1);
  border: 3px solid #1b46c2;
}
@media screen and (max-width: 768px) {
  body.style-default .cat-search .item {
    aspect-ratio: auto;
    min-width: auto;
    padding: 6px 12px;
  }
}
body.style-default .cat-search .cat-search-secondary a {
  background-color: #1b46c2;
  color: #fff;
  display: inline-block;
  margin: 6px;
  border-radius: 24px;
  padding: 4px 12px;
  font-size: 13px;
}
body.style-default .cat-search .cat-search-secondary a:hover {
  background-color: #fff;
  color: #1B46C2;
}
@media screen and (max-width: 576px) {
  body.style-default .cat-search .cat-search-secondary {
    display: none;
  }
}
body.style-default .search-tmpl-1 article {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}
body.style-default .search-tmpl-1 figure {
  width: 220px;
}

/*# sourceMappingURL=bento-1.2.3.css.map */
