@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #3c6abf;
}
a:hover {
  color: #142e5e;
}

* {
  box-sizing: border-box;
}

#fc_filter_form_blocker {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  max-width: 1340px;
  height: 65px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 97;
}
.header.has-value .nav-main,
.header.has-value .nav-right {
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .header {
    padding: 0 20px;
  }
}
@media (max-width: 839px) {
  .header {
    justify-content: center;
  }
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: url(../images/header/nav-bg.png) no-repeat center/cover;
  z-index: -1;
}
.header .nav-logo {
  flex: 0 0 182px;
  display: block;
  width: 100%;
  height: 45px;
  margin-right: 20px;
  background: url(../images/header/logo.png) no-repeat center/contain;
}
@media (max-width: 1024px) {
  .header .nav-logo {
    flex: 0 0 170px;
    margin-right: 25px;
  }
}
.header .nav-main {
  flex: 1 1 auto;
  height: 100%;
  transition: 0.2s;
}
@media (max-width: 839px) {
  .header .nav-main {
    display: none;
  }
}
.header .nav-main .mainnav {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
.header .nav-main .nav-item {
  white-space: nowrap;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  height: 100%;
}
.header .nav-main .nav-item.deeper {
  position: relative;
}
.header .nav-main .nav-item.deeper:hover {
  background: rgba(255, 255, 255, 0.25);
}
.header .nav-main .nav-item.deeper:hover .nav-child {
  opacity: 1;
  pointer-events: auto;
}
.header .nav-main .nav-item.deeper .nav-child {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.header .nav-main .nav-item.deeper .nav-child .nav-item {
  margin: 0;
}
.header .nav-main .nav-item.deeper .nav-child .nav-item__url {
  height: 36px;
  line-height: 36px;
}
.header .nav-main .nav-item__url {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 100%;
  color: #fff;
  font-weight: 400;
  transition: 0.175s;
  font-size: 0.75rem;
}
.header .nav-main .nav-item__url:hover {
  background: rgba(255, 255, 255, 0.25);
}
.header .nav-main .nav-item__url:hover .nav-item__txt {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.header .nav-main .nav-item__txt {
  display: inline-block;
  font-weight: 400;
  font-size: 0.9375rem;
}
.header .nav-right {
  transition: 0.2s;
}
.header .nav-right .o-media {
  color: #fff;
}
.header .nav-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header .nav-burger {
  flex: 0 0 41px;
  width: 41px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 41px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s;
  z-index: 99;
  display: none;
}
@media (max-width: 1024px) {
  .header .nav-burger {
    margin-left: 10px;
  }
}
@media (max-width: 839px) {
  .header .nav-burger {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
  }
}
.header .nav-burger.active {
  opacity: 0;
  pointer-events: none;
}
.header .nav-burger.active .nav-burger__line.top {
  transform: rotate(45deg);
}
.header .nav-burger.active .nav-burger__line.bottom {
  transform: rotate(-45deg);
}
.header .nav-burger.active .nav-burger__line__crust.top {
  top: 50%;
  transform: translate(0, -50%);
}
.header .nav-burger.active .nav-burger__line__crust.mid {
  opacity: 0;
  transform: scale(0.2, 0.2);
}
.header .nav-burger.active .nav-burger__line__crust.bottom {
  bottom: 50%;
  transform: translate(0, 50%);
}
.header .nav-burger.active .nav-burger__line__crust {
  background: rgba(0, 0, 0, 0.5);
}
.header .nav-burger:hover .nav-burger__line__crust {
  background: #fff;
}
.header .nav-burger__line {
  position: absolute;
  transition: 0.2s;
}
.header .nav-burger__line.top {
  top: 12px;
  left: 18px;
  width: 23px;
  height: 17px;
}
.header .nav-burger__line.mid {
  top: 12px;
  left: 18px;
  width: 23px;
  height: 17px;
}
.header .nav-burger__line.bottom {
  bottom: 12px;
  left: 18px;
  width: 23px;
  height: 17px;
}
.header .nav-burger__line__crust {
  transition: 0.3s;
}
.header .nav-burger__line__crust.top {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
}
.header .nav-burger__line__crust.mid {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 23px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform: translate(0, -50%);
}
.header .nav-burger__line__crust.bottom {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 23px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
}

.nav-map {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: calc(100vh - 60px);
  padding: 20px 36px;
  background: #fff;
  transform: translateX(100%);
  overflow: scroll;
  transition: ease 0.5s;
  z-index: 98;
}
.nav-map .mainnav {
  display: flex;
  flex-direction: column;
}
.nav-map.active {
  transform: translateX(0%);
  box-shadow: -8px 10px 29px rgba(0, 0, 0, 0.26);
}
.nav-map__burger {
  position: absolute;
  top: 17px;
  right: 16px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.nav-map__burger__line {
  display: block;
  position: absolute;
  top: 12.5px;
  left: 0;
  width: 25px;
  height: 1px;
  transform-origin: center;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
}
.nav-map__burger__line:nth-child(1) {
  transform: rotate(45deg);
}
.nav-map__burger__line:nth-child(2) {
  transform: rotate(-45deg);
}
.nav-map .nav-item {
  margin: 10px 0;
  color: #000;
  font-weight: 600;
  font-size: 1.125rem;
}
.nav-map .nav-item.deeper {
  margin-bottom: 0px;
}
.nav-map .nav-item__url {
  color: #000;
  font-size: 1.125rem;
}
.nav-map .nav-item__url.active {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.nav-map .nav-item__url:hover {
  text-decoration: underline;
}
.nav-map .nav-child {
  display: flex;
  flex-direction: column;
  padding-top: 7px;
  padding-left: 30px;
}
.nav-map .nav-child .nav-item {
  position: relative;
  margin: 10px 0;
  font-weight: 500;
  transition: 0.15s;
}
.nav-map .nav-child .nav-item__url {
  font-size: 0.875rem;
}
.nav-map .nav-child .nav-item::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: -30px;
  bottom: 0;
  width: 3px;
  background: #ae8947;
}
.nav-map .nav-child .nav-item:hover {
  color: #ae8947;
}
.nav-map .nav-child .nav-item:hover::before {
  display: block;
}
.nav-map .nav-child .nav-item.active {
  font-weight: 600;
}
.nav-map .nav-child .nav-item.active::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  bottom: 0;
  width: 3px;
  background: #ae8947;
}
.nav-map .nav-child .nav-item.active .nav-item__url {
  color: #ae8947;
}

.nav-footer {
  background: #000;
}
.nav-footer .mainnav {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  margin: 0 60px 0 4.7%;
}
@media (max-width: 1024px) {
  .nav-footer .mainnav {
    margin: 0 60px;
  }
}
@media (max-width: 839px) {
  .nav-footer .mainnav {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .nav-footer .mainnav {
    flex-wrap: wrap;
    margin-right: 0;
  }
}
.nav-footer__infor {
  flex: 0 0 214px;
  margin-left: 4.7%;
}
@media (max-width: 1024px) {
  .nav-footer__infor {
    flex: 1 1 auto;
    align-self: center;
    margin-left: 0;
    margin-bottom: 50px;
  }
}
.nav-footer__infor__logo {
  max-width: 214px;
  background: url(../images/nav-footer-logo.png) no-repeat center/contain;
}
.nav-footer__infor__logo::before {
  content: "";
  display: block;
  padding-top: 19.6261682243%;
}
.nav-footer__infor__address {
  display: block;
  margin-top: 28px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}
.nav-footer__infor__phone {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}
.nav-footer .nav-item {
  min-width: 80px;
}
@media (max-width: 768px) {
  .nav-footer .nav-item {
    display: block;
    margin-bottom: 30px;
    padding-right: 30px;
  }
}
.nav-footer .nav-item__url {
  display: inline-block;
}
.nav-footer .nav-item__url:hover {
  text-decoration: underline white;
}
.nav-footer .nav-item__txt {
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
  font-size: 1rem;
}
.nav-footer .nav-child .nav-item {
  margin-bottom: 15px;
  font-size: 0.75rem;
}
.nav-footer .nav-child .nav-item:first-child {
  margin-top: 25px;
}
.nav-footer .nav-child .nav-item__url {
  display: inline-block;
  font-size: 0.75rem;
}
.nav-footer .nav-child .nav-item__txt {
  display: inline-block;
  color: white;
  font-weight: 400;
  font-size: 0.75rem;
}
.nav-footer .nav-child .nav-item__txt:hover {
  color: #d9d9d9;
  text-decoration: underline rgba(255, 255, 255, 0.6);
}

.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.hero__bg-after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero__bg-after canvas {
  max-width: 100%;
}
.hero__sectionTop {
  flex: 0 0 62.97%;
  background: url(../images/hero/hero-before-bg.jpg) no-repeat center/cover;
}
.hero__sectionBottom {
  flex: 1 1 auto;
  background: url(../images/hero/hero-after-bg.png);
  background-repeat: no-repeat;
  background-position: 50% 60%;
  background-size: cover;
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-top: 175px;
  margin-bottom: 111px;
}
.hero__title__title {
  user-select: none;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  font-size: 2.375rem;
}
@media (max-width: 480px) {
  .hero__title__title {
    font-size: 1.6875rem;
  }
}
@media (max-width: 330px) {
  .hero__title__title {
    font-size: 1.5rem;
  }
}
.hero__title__title--sub {
  position: relative;
  margin-top: 10px;
  user-select: none;
  color: #fff;
  font-weight: 300;
  font-size: 1.125rem;
}
.hero__title__title--sub::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  width: 133px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(0, -50%);
}
@media (max-width: 480px) {
  .hero__title__title--sub::before {
    width: 80px;
  }
}
.hero__title__title--sub::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  width: 133px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(0, -50%);
}
@media (max-width: 480px) {
  .hero__title__title--sub::after {
    width: 80px;
  }
}

.hero__news {
  margin-top: 158px;
  margin-bottom: 103px;
}
.hero__latest {
  flex: 0 0 55.7%;
  background: #142e5e;
}
.hero__latest__item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px;
}
.hero__latest__item__type {
  color: #ae8947;
  font-weight: 500;
  font-size: 0.75rem;
}
.hero__latest__item__created {
  font-weight: 300;
  font-size: 0.75rem;
}
.hero__latest__item__container {
  display: inline-block;
  position: absolute;
  top: -12px;
  padding: 10px 20px;
  background: #fff;
}
.hero__latest__item__title {
  display: block;
  margin: 20px 0 13px;
  color: #fff;
  font-size: 1.125rem;
}
.hero__latest__item__desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: #fff;
  font-weight: 300;
  line-height: 13px;
  font-size: 0.875rem;
}
.hero__web {
  flex: 1 1 auto;
  backdrop-filter: blur(10px);
  background: rgba(239, 247, 253, 0.69);
}
.hero__web__item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px;
}
.hero__web__item__type {
  color: #ae8947;
  font-weight: 500;
  font-size: 0.75rem;
}
.hero__web__item__created {
  font-weight: 300;
  font-size: 0.75rem;
}
.hero__web__item__container {
  display: inline-block;
  position: absolute;
  top: -12px;
  padding: 10px 20px;
  background: #fff;
}
.hero__web__item__title {
  display: block;
  margin: 20px 0 13px;
  color: #fff;
  font-size: 1.125rem;
}
.hero__web__item__desc {
  display: flex;
  align-items: center;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: #142e5e;
  font-weight: 300;
  line-height: 1.38;
  height: 100%;
  font-size: 1.125rem;
}
.hero__web__item__img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 134px;
  height: 169px;
  transform: translate(0, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
}

.hero__intro {
  position: relative;
  max-width: 600px;
  margin: 50px auto 68px;
  padding: 37px 41px 29px;
  border: 1px solid rgba(20, 46, 94, 0.5);
}
.hero__intro::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 51px;
  background: rgba(20, 46, 94, 0.5);
  transform: translate(-50%, 0);
}
.hero__intro__title {
  margin-bottom: 20px;
  color: #142e5e;
  font-weight: 500;
  text-align: center;
  font-size: 1.25rem;
}
.hero__intro__desc {
  color: #142e5e;
  font-weight: 300;
  line-height: 1.428;
  font-size: 0.875rem;
}
.hero__intro__desc:last-child {
  margin-bottom: 42px;
}
.hero__intro__mind {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  padding: 17px 31px;
  color: #fff;
  font-weight: 500;
  background: #ae8947;
  transform: translate(-50%, 50%);
  font-size: 1.25rem;
}

.section__view {
  display: flex;
  background: #142e5e;
}
@media (max-width: 768px) {
  .section__view {
    flex-direction: column;
  }
}
.section__view__img {
  flex: 0 0 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .section__view__img {
    margin: 0 -30px;
  }
}
.section__view__img::before {
  content: none;
}
@media (max-width: 768px) {
  .section__view__img::before {
    content: "";
    display: block;
    padding-top: 53.3333333333%;
  }
}
.section__view__item {
  flex: 1 1 auto;
  padding-top: 46px;
  padding-left: 50px;
  padding-right: 40px;
  padding-bottom: 40px;
  background: #142e5e;
}
@media (max-width: 768px) {
  .section__view__item {
    padding-top: 36px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .section__view__item {
    padding-top: 34px;
  }
}
.section__view__item__container {
  display: flex;
  flex-direction: column;
}
.section__view__item__type {
  margin-bottom: 28px;
  color: #e1c36c;
  font-weight: 100;
  font-size: 2.25rem;
}
@media (max-width: 480px) {
  .section__view__item__type {
    text-align: center;
    font-size: 1.25rem;
  }
}
.section__view__item__created {
  color: #FAFAFA;
  font-weight: 100;
  font-size: 0.75rem;
}
.section__view__item__title {
  display: block;
  margin-top: 14px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 100;
  line-height: 1.44;
  transition: 0.15s;
  font-size: 1.625rem;
}
.section__view__item__title:hover {
  color: #d9d9d9;
}
@media (max-width: 480px) {
  .section__view__item__title {
    font-size: 1.375rem;
  }
}
.section__view__item__desc {
  display: block;
  color: #fff !important;
  font-weight: 300;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.section__view__item__more {
  display: flex;
  justify-content: flex-end;
}
.section__view__item__more-link {
  position: relative;
  margin-top: 25px;
  padding-right: 12px;
  color: #ae8947;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.15s;
  font-size: 0.875rem;
}
.section__view__item__more-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 14px;
  background: url(../images/arrow-right.png) no-repeat center/contain;
}
.section__view__item__more-link:hover {
  text-decoration: underline;
}

.section__event {
  background: linear-gradient(180deg, white 0%, #ecf2f6 100%);
}
.section__event__inner {
  padding-bottom: 30px;
}
.section__event__group {
  width: 100%;
  display: flex;
  position: relative;
}
@media (max-width: 839px) {
  .section__event__group {
    flex-direction: column;
  }
}
.section__event__more {
  display: flex;
  align-items: center;
  position: relative;
  color: #ae8947;
  font-weight: 600;
  z-index: 2;
  font-size: 1rem;
}
.section__event__more:hover {
  color: #c8ac79;
}
.section__event__more .fa-angle-double-right {
  margin-left: 7px;
  font-size: 0.875rem;
}
.section__event__more__group {
  padding: 20px 0;
}
.section__event__standard {
  flex: 1 1 auto;
  position: relative;
  margin-right: 37px;
}
@media (max-width: 839px) {
  .section__event__standard {
    margin-right: 0;
  }
}
.section__event__features {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 568px) {
  .section__event__features {
    flex-direction: column;
    flex: 0 0 100%;
  }
}
.section__event__title {
  margin-bottom: 28px;
  color: #142e5e;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 2.25rem;
}
@media (max-width: 839px) {
  .section__event__title {
    margin-bottom: 22px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .section__event__title {
    font-size: 1.75rem;
  }
}
.section__event__img {
  flex: 0 0 100%;
  display: inherit;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 7px 18px -5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 568px) {
  .section__event__img {
    flex: 0 0 35%;
  }
}
.section__event__img::before {
  content: "";
  display: block;
  padding-top: 50%;
}
@media (max-width: 568px) {
  .section__event__img::before {
    padding-top: 65.3846153846%;
  }
}
.section__event__content {
  flex: 1 1 auto;
}
.section__event__features .section__event__content {
  padding: 32px 23px 42px;
}
@media (max-width: 568px) {
  .section__event__features .section__event__content {
    padding: 13px 15px 12px 15px;
  }
}
.section__event__item {
  transition: 0.15s;
}
.section__event__standard .section__event__item:nth-child(1) {
  margin-top: 5px;
  margin-bottom: 22px;
}
@media (max-width: 839px) {
  .section__event__standard .section__event__item:nth-child(2) {
    margin-bottom: 20px;
  }
}
.section__event__features .section__event__item {
  flex: 0 0 24%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
  transition: 0.2s;
}
.section__event__features .section__event__item:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.15);
}
@media (max-width: 568px) {
  .section__event__features .section__event__item:nth-child(3) {
    margin-bottom: 0;
  }
}
@media (max-width: 568px) {
  .section__event__features .section__event__item {
    flex: 0 0 100%;
    flex-wrap: nowrap;
    margin-bottom: 11px;
  }
}
.section__event__item__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section__event__item__type {
  display: inline-block;
}
.section__event__item__type .fc_categories {
  position: relative;
  color: #ae8947;
  font-weight: 400;
  letter-spacing: 1px;
  z-index: 2;
  font-size: 0.75rem;
}
.section__event__item__type .fc_categories:hover {
  text-decoration: underline;
}
.section__event__item__created {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  color: #142e5e;
  font-weight: 200;
  font-size: 0.75rem;
}
.section__event__item__created:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  width: 6px;
  height: 1px;
  background: #142e5e;
  transform: translate(-50%, -50%);
}
.section__event__standard .section__event__item__title {
  display: block;
  position: relative;
  padding: 14px 0 18px;
  color: #142e5e;
  line-height: 1.43;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: 0.15s;
}
.section__event__standard .section__event__item__title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(151, 151, 151, 0.35);
}
.section__event__standard .section__event__item__title:hover {
  color: #214d9d;
  text-decoration: underline;
}
.section__event__features .section__event__item__title {
  display: block;
  position: relative;
  margin-top: 13px;
  color: #142e5e;
  font-weight: 600;
  line-height: 1.36;
  transition: 0.15s;
  z-index: 2;
  font-size: 1rem;
}
.section__event__features .section__event__item__title:hover {
  color: #214d9d;
  text-decoration: underline;
}

.item__news-nav {
  background: #142e5e;
}
.item__news-nav__title {
  flex: 0 0 100%;
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.1875rem;
}
.item__news-nav .item {
  flex: 0 0 48%;
  display: flex;
  background: #fff;
  overflow: hidden;
}
.item__news-nav__img {
  flex: 1 1 auto;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 158px;
  box-shadow: 0 10px 23px rgba(0, 0, 0, 0.16);
}
.item__news-nav__article {
  flex: 0 0 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px;
}
.item__news-nav__article__type {
  flex: 1 1 auto;
  margin-right: 10px;
}
.item__news-nav__article__type a {
  display: inline-block;
  padding: 11px;
  color: #142e5e;
  font-weight: 400 !important;
  border: 1px solid rgba(20, 46, 94, 0.2);
  white-space: nowrap;
  transition: 0.2s;
  font-size: 0.875rem;
}
.item__news-nav__article__type a:hover {
  color: #fff;
  background: #142e5e;
  border: 1px solid #142e5e;
}
.item__news-nav__article__created {
  flex: 0 0 auto;
  align-self: center;
  margin-top: 15px;
  color: #142e5e;
  font-weight: 300;
  font-size: 0.875rem;
}
.item__news-nav__article__title {
  flex: 0 0 100%;
  position: relative;
  margin-top: 16px;
  padding-top: 22px;
  color: #142e5e;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1rem;
}
.item__news-nav__article__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(20, 46, 94, 0.2);
}
.item__news-nav__article__title:hover {
  color: #1d4388;
}

.article__control {
  display: flex;
}
.article__control__vote .fcvote-label-outer {
  display: none;
}
.article__control__fav .fcfavs-btn-inner {
  width: 20px;
  height: 20px;
}
.article__control__fav .fcfavs-btn {
  position: relative;
}
.article__control__fav .fcfavs-responce-tip {
  position: absolute;
  left: 0;
  top: 100%;
}

.tooltip {
  display: none !important;
}

.news-category-inner {
  padding-bottom: 30px !important;
}
.news__category__header {
  position: relative;
  min-height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.news__category__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
}
@media (max-width: 480px) {
  .news__category__header {
    min-height: 300px;
    background-position: 25%;
  }
}
.news__category__header__title {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  color: #fff;
  font-weight: 200;
  transform: translate(-50%, -50%);
  font-size: 2.8125rem;
  white-space: nowrap;
  z-index: 9;
}
@media (max-width: 480px) {
  .news__category__header__title {
    font-size: 2.375rem;
  }
}
.news__category__header__filter {
  clear: both;
  max-width: 1100px;
  margin: 10px auto 0;
  padding: 6px 0;
}
@media (max-width: 480px) {
  .news__category__header__filter {
    margin-bottom: 25px;
  }
}
.news__category__header__filter .catlink {
  color: #3c6abf;
}
.news__category__header__filter .catlink:hover {
  color: #142e5e;
}
.news__category__header__filter .catinfo {
  margin-right: 5px;
}
.news__category__header__filter .catinfo .count {
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  color: #aaa;
}
.news__category__content {
  position: relative;
  padding-top: 40px;
  padding-inline: 60px;
  padding-bottom: 72px;
}
.news__category__content__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
@media (max-width: 480px) {
  .news__category__content {
    margin-top: 0;
  }
}
.news__category__content .empty-msg {
  text-align: center;
  flex: 1 1 100%;
}
.news__category__content .fc_return_msg {
  display: inline-block;
  max-width: 320px;
  padding: 20px;
  background: #eee;
  text-align: center;
  margin: 5px auto;
  color: #888;
  border-radius: 4px;
}
.news__category__content .fc_return_msg a {
  color: #142e5e;
}
.news__category__item {
  flex: 0 0 335px;
  max-width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.news__category__item:hover {
  box-shadow: 0 25px 38px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -5px, 0);
}
.news__category__item:empty {
  background: none;
  box-shadow: none;
}
.news__category__item.empty {
  pointer-events: none;
}
.news__category__item__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 25px;
}
.news__category__item__img {
  flex: 0 0 100%;
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.news__category__item__type {
  flex: 1 1 auto;
}
.news__category__item__type a {
  display: inline-block;
  padding: 11px 13px;
  color: #142e5e;
  white-space: nowrap;
  border: 1px solid rgba(20, 46, 94, 0.12);
  font-weight: 400 !important;
  transition: 0.2s;
}
.news__category__item__type a:hover {
  color: #fff;
  background: #142e5e;
  border: 1px solid #142e5e;
}
.news__category__item__created {
  flex: 0 0 auto;
  align-self: center;
  color: #142e5e;
  font-weight: 300;
}
.news__category__item__title {
  flex: 0 0 100%;
  position: relative;
  margin-top: 16px;
  padding-top: 17px;
}
.news__category__item__title a {
  color: #142e5e;
  font-size: 1.25rem;
  line-height: 1.45;
}
.news__category__item__title a:hover {
  color: #1d4388;
}
.news__category__item__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(20, 46, 94, 0.12);
}

.peercategorieslist + .subcategorieslist {
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
  padding-top: 10px;
}

.subcategorieslabel,
.peercategorieslabel {
  font-size: 0.8125rem;
  color: #777;
  margin-right: 10px;
}

.category-breadcrumb {
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}
.category-breadcrumb .breadcrumb {
  border-top: none;
  margin-top: 0;
}

.news__item__container .content {
  padding: 10px clamp(20px, 10%, 120px) 60px;
  background: #fff;
  box-shadow: 0 29px 39px rgba(0, 0, 0, 0.13);
}
.news__item__container .content img {
  max-width: 100%;
}
@media (max-width: 480px) {
  .news__item__container .content img {
    max-height: 250px;
  }
}
.news__item__container .content p,
.news__item__container .content span,
.news__item__container .content h1,
.news__item__container .content h2,
.news__item__container .content h3,
.news__item__container .content tr,
.news__item__container .content td {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #333;
}
.news__item__container .content tr,
.news__item__container .content td {
  line-height: 2;
}
.news__item__container .content .jfk-bubble {
  display: none;
}
@media (max-width: 1024px) {
  .news__item__container .content {
    padding: 60px clamp(20px, 10%, 120px);
  }
}
@media (max-width: 480px) {
  .news__item__container .content {
    padding: 40px clamp(20px, 10%, 120px);
  }
}
.news__item__container .jssocials-share-link a {
  color: #fff !important;
}
.news__item__container .jssocials-share-link a span {
  color: #fff !important;
}
.news__item__container .jssocials-share-label {
  color: #fff !important;
}
.news__item__hero {
  position: relative;
  min-height: 420px;
}
.news__item__hero figure {
  min-height: 420px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.news__item__hero figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
.news__item__hero__title {
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
  color: #fff;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
  transform: translate(-50%, -50%);
  z-index: 9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 2.8125rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .news__item__hero__title {
    left: 0;
    transform: none;
    font-size: 1.875rem;
  }
}
@media (max-width: 480px) {
  .news__item__hero__title {
    font-size: 1.75rem;
  }
}
.news__item__hero__title div {
  text-shadow: 0 1px 5px black;
}
.news__item__title {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding: 27px 0;
  color: #000;
  font-weight: lighter;
  line-height: 1.4;
  font-size: 2.1875rem;
}
.news__item__title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(151, 151, 151, 0.26);
}
.news__item__description {
  font-size: 1.2rem;
  line-height: 1.6;
}
.news__item__header__info {
  display: flex;
}
.news__item__header__source {
  display: inline-block;
  font-size: 16px;
  color: #666;
  margin-right: 10px;
  margin-left: auto;
}
.news__item__header__source a {
  font-weight: bold;
  margin-right: 5px;
}
.news__item__header__category {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin-right: 10px;
}
.news__item__header__category a {
  font-weight: bold !important;
  margin-right: 5px;
}
.news-article .item-inner {
  padding: 0;
}

.contact__group {
  display: flex;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: 0 7px 50px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .contact__group {
    flex-direction: column;
  }
}
.contact__img {
  position: absolute;
  left: -5px;
  bottom: -13px;
  width: 750px;
  max-width: 100%;
  background: url(../images/moutaint.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .contact__img {
    display: none;
  }
}
.contact__img::before {
  content: "";
  display: block;
  padding-top: 18.4%;
}
.contact__left {
  flex: 1 1 auto;
  padding-left: 7.18%;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .contact__left {
    padding: 0 30px;
    padding-bottom: 50px;
  }
}
.contact__left::after {
  content: "";
  display: block;
  padding-top: 20%;
}
@media (max-width: 768px) {
  .contact__left::after {
    content: none;
  }
}
.contact__left__head {
  margin-top: 25px;
  margin-bottom: 60px;
  color: #142e5e;
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .contact__left__head {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .contact__left__head {
    font-size: 1.25rem;
  }
}
.contact__left__title {
  margin-bottom: 25px;
  color: #142e5e;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.25rem;
}
.contact__left__content {
  position: relative;
  padding-left: 30px;
}
.contact__left__content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: rgba(20, 46, 94, 0.3);
}
.contact__left__name {
  margin-bottom: 17px;
  color: #142e5e;
  font-weight: 600;
  font-size: 0.875rem;
}
.contact__left__name span {
  display: block;
  margin-top: 10px;
  color: #142e5e;
  font-weight: 200;
  line-height: 1.423;
  font-size: 1.625rem;
}
@media (max-width: 480px) {
  .contact__left__name span {
    font-size: 1.25rem;
  }
}
.contact__left__name a {
  display: block;
  margin-top: 10px;
  color: #3c6abf;
  text-decoration: underline;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
}
.contact__left__name a:hover {
  color: #2a4a85;
}
@media (max-width: 480px) {
  .contact__left__name a {
    font-size: 0.875rem;
  }
}
.contact__right {
  flex: 0 0 50%;
  margin-right: 80px;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .contact__right {
    margin: 0 30px;
    padding: 0;
  }
}
.contact__right__title {
  display: block;
  margin-bottom: 15px;
  color: #142e5e;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.25rem;
}
.contact__right__title--sub {
  margin-bottom: 27px;
  color: #142e5e;
  font-weight: 400;
  line-height: 1.43;
  font-size: 0.875rem;
}
.contact__right .formContainer .formRow .rsform-input-box {
  width: calc(100% - 11px) !important;
  margin-bottom: 15px;
  border: 1px solid #dfdfdf;
  border-radius: 0px;
  box-shadow: none;
  font-size: 1rem;
}
.contact__right .formContainer .formRow .rsform-input-box:focus {
  border: 1px solid rgba(20, 46, 94, 0.7);
}
.contact__right .formContainer .formRow .rsform-text-box {
  width: calc(100% - 11px) !important;
  min-height: 185px;
  resize: none;
  border: 1px solid #dfdfdf;
  box-shadow: none;
}
.contact__right .formContainer .formRow .rsform-text-box:focus {
  border: 1px solid rgba(20, 46, 94, 0.7);
}
@media (max-width: 768px) {
  .contact__right .formContainer .formRow .rsform-block-sent {
    text-align: center;
  }
}
.contact__right .formContainer .formRow .rsform-submit-button {
  padding: 19px 30px;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0px;
  background: #142e5e;
  letter-spacing: 0.5px;
  transition: 0.2s;
  box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  font-size: 1.125rem;
}
.contact__right .formContainer .formRow .rsform-submit-button:hover {
  box-shadow: 0px 5px 5px -2px rgba(0, 0, 0, 0.75);
  transform: translate3d(0, -5px, 0);
}
.contact__right .formContainer .formControlLabel {
  display: inline-block;
  margin-bottom: 7px;
  color: #142e5e;
  font-weight: 600;
  font-size: 0.875rem;
}
.contact__right .formContainer .formControlLabel .formRequired {
  color: #d75360;
  font-weight: 600;
}

#userForm {
  padding: 20px;
  text-align: left;
}
#userForm .formControlLabel {
  margin-bottom: 10px;
  display: block;
}

.login__head {
  background: url(../images/login-bg.jpg) no-repeat center/cover;
}
.login__head__title {
  padding-top: 150px;
  padding-bottom: 95px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 2.8125rem;
}
.login__moutaint {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 576px;
  background: url(../images/moutaint.png) no-repeat center/contain;
}
.login__moutaint::before {
  content: "";
  display: block;
  padding-top: 18.4027777778%;
}
.login__group {
  display: flex;
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding-top: 54px;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 86px;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.15);
}
@media (max-width: 839px) {
  .login__group {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .login__group {
    flex-direction: column;
  }
}
.login__left {
  flex: 0 0 50%;
  position: relative;
  padding-right: 50px;
}
@media (max-width: 768px) {
  .login__left {
    padding-right: 0;
  }
}
.login__left::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(20, 46, 94, 0.2);
}
@media (max-width: 768px) {
  .login__left::before {
    content: none;
  }
}
.login__left::after {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(20, 46, 94, 0.2);
}
@media (max-width: 768px) {
  .login__left::after {
    content: "";
  }
}
.login__left__title {
  margin-bottom: 40px;
  color: #142e5e;
  font-weight: 300;
  font-size: 2.375rem;
}
@media (max-width: 768px) {
  .login__left__title {
    text-align: center;
  }
}
.login__left .login-reset {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 17px;
}
.login__left .login-reset a {
  color: #142e5e;
}
.login__left .login-reset a:hover {
  text-decoration: underline;
}
.login__left .control-group {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.login__left .control-group:nth-child(2) {
  margin-bottom: 13px;
}
.login__left .control-group .control-label {
  padding-right: 16px;
  color: #686C73;
  font-size: 1.125rem;
}
.login__left .control-group .controls {
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  .login__left .control-group .controls.login {
    text-align: center;
  }
}
.login__left .control-group .controls input {
  width: 100%;
  padding: 5px;
  border: 1px solid #dfdfdf;
  transition: 0.2s;
  outline: none;
  font-size: 1.125rem;
}
.login__left .control-group .controls input:focus {
  border: 1px solid rgba(20, 46, 94, 0.7);
}
.login__left .control-group .controls .btn {
  padding: 12.5px 35px;
  color: #fff;
  border: none;
  background: #142e5e;
  transition: 0.2s;
  font-size: 1.125rem;
}
.login__left .control-group .controls .btn:hover {
  transform: translate(0, -5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.login__right {
  flex: 1 1 auto;
  padding-left: 70px;
}
@media (max-width: 768px) {
  .login__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
    padding-left: 0;
  }
}
.login__right__title {
  margin-bottom: 40px;
  color: #142e5e;
  font-weight: 300;
  font-size: 2.375rem;
}
.login__right__desc {
  max-width: 300px;
  color: #142e5e;
  line-height: 1.5;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .login__right__desc {
    text-align: center;
  }
}
.login__right__button {
  display: none;
  margin-top: 36px;
  padding: 15px 50px;
  color: #fff;
  background: #d1b060;
  transition: 0.2s;
}
.login__right__button:hover {
  transform: translate(0, -5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#fc_filter_form_blocker {
  position: absolute;
  display: none !important;
}

.wrapper .main #adminForm_filter_box .fc_field_filter {
  margin: 0 !important;
}
.wrapper .main #adminForm_filter_box .fc_field_filter .select2-choice {
  background: #fff !important;
  border: none !important;
  height: 32px !important;
  min-height: unset !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}
.wrapper .main #adminForm_filter_box .fc_field_filter .select2-choice .select2-chosen {
  font-size: 12px;
  color: #142e5e;
}
.wrapper .main #adminForm_filter_box .fc_field_filter .select2-choice .select2-arrow {
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding-right: 6px;
}
.wrapper .main #adminForm_filter_box .fc_field_filter .select2-choice .select2-arrow b {
  width: 8px;
  height: 16px;
  background: url(../images/chevron-down-solid.svg) no-repeat center/contain !important;
}
.wrapper .main #adminForm_filter_box .fc_buttons .btn {
  background: #fff;
  border-radius: 4px;
  line-height: 30px;
  height: 30px;
  font-size: 12px;
  padding: 0 12px !important;
  border: none;
  color: rgba(20, 46, 94, 0.6);
  transition: 0.3s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.wrapper .main #adminForm_filter_box .fc_buttons .btn [class^=icon-],
.wrapper .main #adminForm_filter_box .fc_buttons .btn [class*=" icon-"] {
  transform: scale(0.7) translate3d(0, -1px, 0);
  background: none !important;
}
.wrapper .main #adminForm_filter_box .fc_buttons .btn:hover {
  background: #142e5e;
  color: #fff;
  text-shadow: none;
}
.wrapper .main #adminForm_filter_box .fc_filter {
  margin-bottom: 0;
  padding: 0;
}
.wrapper .main #adminForm_filter_box .fc_text_search {
  margin-bottom: 0;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike {
  margin: 0 !important;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike.select2-dropdown-open .select2-choices .select2-search-choice {
  height: 14px !important;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike .select2-choices {
  margin: 0 !important;
  width: 200px !important;
  height: 32px !important;
  border-radius: 4px;
  border: none !important;
  background: #fff !important;
  display: flex;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike .select2-choices .select2-search-choice {
  height: 18px !important;
  background: #eee !important;
  display: flex !important;
  padding-right: 3px !important;
  white-space: nowrap;
  align-items: center;
  transition: 0.2s;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike .select2-choices .select2-search-choice div {
  flex: 1 1 auto;
  white-space: nowrap;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike .select2-choices .select2-search-choice .select2-search-choice-close {
  position: relative;
  flex: 0 0 auto;
  transform: translate3d(3px, -3px, 0);
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike .select2-choices .select2-input {
  border: none !important;
  background: none !important;
  width: 100% !important;
  min-width: 100% !important;
  line-height: 32px !important;
  height: 32px !important;
  outline: none;
  padding: 0 10px !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none;
}
.wrapper .main #adminForm_filter_box .fc_text_search .select2-container-multi.fc_index_complete_tlike .select2-choices .select2-input.select2-focused {
  width: 100% !important;
  min-width: 100% !important;
}

div.select2-drop {
  border: none !important;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2) !important;
}
div.select2-drop .select2-results li {
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  color: #666;
}
div.select2-drop .select2-results .select2-result {
  font-size: 14px;
  border-radius: 4px;
  padding: 4px;
  white-space: nowrap;
}
div.select2-drop .select2-results .select2-result-selectable .select2-result-label {
  background: none !important;
  padding-left: 0 !important;
}
div.select2-drop .select2-results .select2-no-results {
  padding: 6px 20px;
  text-align: center;
  font-size: 14px;
  background: #fff;
  color: #666;
}
div.select2-drop .select2-results .select2-highlighted {
  color: #fff;
  border-radius: 4px;
  padding: 4px;
  background: #142e5e;
  white-space: nowrap;
}
div.select2-drop .select2-results .select2-highlighted .select2-result-label {
  color: #fff;
}
div.select2-drop .select2-results .select2-highlighted .select2-result-label .select2-match {
  background: #ee9d28;
  color: #fff;
  padding: 0 4px;
  border-radius: 3px;
  display: inline-block;
}

div.select2-drop.select2-drop-multi {
  width: 200px !important;
  border: none !important;
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2) !important;
}

.article-category {
  position: relative;
  padding: 100px 0 20px;
}
.article-category__filter {
  padding-bottom: 13px;
}
.article-category__title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.article-category__bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.article-category__bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.article-category .inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 90%;
}
@media (max-width: 960px) {
  .article-category .inner {
    display: block;
  }
}
.article-category__nav {
  flex: 0 0 auto;
  width: calc(20% + 20px);
  position: relative;
  z-index: 2;
}
.article-category__main {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 40px 0 0 50px;
  min-height: calc(100% - 40px);
}
.article-category__list__wrap {
  background: #fff;
  padding: 20px 30px 40px 70px;
  margin-left: -50px;
}
.article-category__list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}
.article-category__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.article-category__nav {
  position: relative;
  z-index: 2;
}
@media (max-width: 839px) {
  .article-category__nav {
    width: 100%;
  }
}
.article-category__nav__inner {
  width: calc(100% + 20px);
  margin-top: 20px;
  padding: 30px;
  background: #000;
  color: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
  overflow: auto;
  max-height: 90%;
}
@media (max-width: 839px) {
  .article-category__nav__inner {
    top: 65px;
    margin-top: 0;
    padding: 0;
    position: fixed;
  }
}
@media (max-width: 839px) {
  .article-category__nav__inner .categories-module {
    display: flex;
    gap: 5px;
  }
}
.article-category__nav__inner .categories-module .cat__item__link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}
.article-category__nav__inner .categories-module .cat__item__link:hover {
  color: #ee9d28;
}
.article-category__nav__inner .categories-module .cat__item__name {
  flex: 1 1 auto;
}
.article-category__nav__inner .categories-module .cat__item__count {
  flex: 0 0 auto;
  padding: 0 8px;
  min-width: 20px;
  line-height: 18px;
  height: 18px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  transform: scale(0.9);
}
@media (max-width: 768px) {
  .article-category__nav__inner .categories-module .cat__item__count {
    display: none;
  }
}
.article-category__nav__inner .categories-module a {
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
  display: block;
  padding: 4px 1px;
  letter-spacing: 0.1em;
}
.article-category__nav__inner .categories-module > li.active {
  border-bottom: 3px solid #fff;
}
.article-category__nav__inner .categories-module > li h4 {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 5px;
}
@media (max-width: 839px) {
  .article-category__nav__inner .categories-module > li h4 {
    border-left: none;
  }
}
.article-category__nav__inner .categories-module > li h4 a.cat__item__link .cat__item__name {
  color: #ee9d28;
  font-size: 16px;
}
@media (max-width: 768px) {
  .article-category__nav__inner .categories-module > li h4 a.cat__item__link .cat__item__name {
    font-size: 14px;
  }
}
.article-category__nav__inner .categories-module > li > ul li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding-left: 2px;
}
.article-category__nav__inner .categories-module > li > ul li > * {
  flex: 1 1 auto;
}
.article-category__nav__inner .categories-module > li > ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.article-category__nav__inner .categories-module > li > ul li a:hover {
  color: #ee9d28;
}
.article-category__nav__inner .categories-module > li > ul li:before {
  content: "";
  flex: 0 0 10px;
  margin-right: 2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.article__item__img {
  background-size: cover;
  aspect-ratio: 3/2;
  flex: 0 0 auto;
  position: relative;
  transition: 0.3s;
  box-shadow: 0px 51px 78px rgba(17, 7, 53, 0.05), 0px 21.3066px 35.4944px rgba(17, 7, 53, 0.04), 0px 11.3915px 18.9418px rgba(17, 7, 53, 0.03), 0px 6.38599px 9.8801px rgba(17, 7, 53, 0.03), 0px 3.39155px 4.58665px rgba(17, 7, 53, 0.02), 0px 1.4113px 1.55262px rgba(17, 7, 53, 0.01), inset 0px 1px 0px rgba(41, 56, 78, 0.05);
}
.article__item__img.no-img {
  background: url(../images/default-img.jpg) no-repeat center/cover;
}
.article__item__img.no-img:before, .article__item__img.no-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
}
.article__item__img.no-img:before {
  z-index: 1;
  filter: blur(20px);
  transform: translate3d(0, 3px, 0) scale(0.93);
  transition: 0.3s;
}
.article__item__img.no-img:after {
  z-index: 2;
}
.article__item__img:hover .article__item__img__src.--true, .article__item__img:hover:after {
  transform: translate3d(0, -2px, 0);
}
.article__item__img:hover .article__item__img__src.--shadow, .article__item__img:hover:before {
  transform: translate3d(0, 12px, 0) scale(1);
  opacity: 0.7;
}
.article__item__img__src {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.article__item__img__src.--true {
  z-index: 2;
  transition: 0.2s;
}
.article__item__img__src.--shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: blur(20px);
  transform: translate3d(0, 8px, 0) scale(0.98);
  transition: 0.3s;
}
.article__item__title {
  margin: 20px 0 5px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article__item__summary {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.partner-category__item {
  display: block;
  position: relative;
}
.partner__item__img {
  z-index: 1;
  display: block;
  background-size: cover;
  aspect-ratio: 3/2;
  flex: 0 0 auto;
  position: relative;
  transition: 0.3s;
  box-shadow: 0px 51px 78px rgba(17, 7, 53, 0.05), 0px 21.3066px 35.4944px rgba(17, 7, 53, 0.04), 0px 11.3915px 18.9418px rgba(17, 7, 53, 0.03), 0px 6.38599px 9.8801px rgba(17, 7, 53, 0.03), 0px 3.39155px 4.58665px rgba(17, 7, 53, 0.02), 0px 1.4113px 1.55262px rgba(17, 7, 53, 0.01), inset 0px 1px 0px rgba(41, 56, 78, 0.05);
}
.partner__item__img.no-img {
  background: url(../images/default-img.jpg) no-repeat center/cover;
}
.partner__item__img.no-img:before, .partner__item__img.no-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
}
.partner__item__img.no-img:before {
  z-index: 1;
  filter: blur(20px);
  transform: translate3d(0, 3px, 0) scale(0.93);
  transition: 0.3s;
}
.partner__item__img.no-img:after {
  z-index: 2;
}
.partner__item__img:hover .partner__item__img__src.--shadow, .partner__item__img:hover:before {
  transform: translate3d(0, 12px, 0) scale(1);
  opacity: 0.7;
}
.partner__item__img__src {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner__item__img__src.--true {
  position: relative;
  z-index: 2;
  transition: 0.2s;
}
.partner__item__img__src.--shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: blur(20px);
  transform: translate3d(0, 8px, 0) scale(0.98);
  transition: 0.3s;
}
.partner__item__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  inset: 0;
  padding: 15px;
  position: absolute;
  color: #fff;
  z-index: 2;
  font-size: 12px;
}
.partner__item__text:before {
  transition: 0.24s;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}
.partner__item__text:after {
  transition: 0.24s;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.partner__item__text:hover:before {
  opacity: 1;
}
.partner__item__text:hover:after {
  opacity: 0;
}
.partner__item__text:hover .partner__item__summary {
  height: 4.55rem;
}
.partner__item__text:hover .partner__item__summary:empty {
  height: 0;
}
.partner__item__title {
  font-size: 20px;
  margin-bottom: 5px;
  pointer-events: auto;
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: bold;
}
.partner__item__summary {
  pointer-events: auto;
  line-height: 1.6;
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.partner__item__summary:empty {
  display: none;
}

.pagination {
  margin: 10px 40px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  display: flex;
  color: #142e5e;
  font-size: 12px;
  align-items: center;
  padding: 10px 20px;
}
@media (max-width: 839px) {
  .pagination {
    margin: 0 !important;
  }
}
.pagination .counter {
  white-space: nowrap;
}
@media (max-width: 839px) {
  .pagination .page-item {
    display: none;
    height: 30px;
  }
  .pagination .page-item span, .pagination .page-item a {
    height: 30px;
    box-sizing: border-box;
  }
  .pagination .page-item.active, .pagination .page-item:nth-last-child(2), .pagination .page-item:nth-child(2) {
    display: block;
  }
  .pagination .page-item:nth-last-child(2) span, .pagination .page-item:nth-last-child(2) a {
    border-radius: 0 4px 4px 0;
  }
  .pagination .page-item:nth-child(2) {
    border-radius: 4px 0 0 4px;
  }
  .pagination .page-item:nth-child(2) span, .pagination .page-item:nth-child(2) a {
    border-radius: 4px 0 0 4px;
  }
}
.fcdirectory .pagination {
  display: none;
}
.pagination .pagination-list {
  display: flex;
  font-size: 12px;
  align-items: center;
  gap: 4px;
}
.pagination .pagination-list li span,
.pagination .pagination-list li a {
  display: block;
  line-height: 20px;
  padding: 0 7px;
  border-radius: 10px;
  color: #142e5e;
  transition: 0.3s;
}
.pagination .pagination-list li span:hover,
.pagination .pagination-list li a:hover {
  background: #fff;
  color: #ee9d28;
}
.pagination .pagination-list li.active a {
  background: #142e5e;
  color: #fff;
}
.pagination .pagination-list li.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.mod-breadcrumbs li {
  display: inline-flex;
  vertical-align: middle;
  float: none !important;
  align-items: center;
}
@media (max-width: 839px) {
  .mod-breadcrumbs li {
    font-size: 12px;
    color: #888;
  }
}
@media (max-width: 839px) {
  .mod-breadcrumbs li span, .mod-breadcrumbs li a {
    font-size: 12px;
    color: #888;
  }
  .mod-breadcrumbs li span span, .mod-breadcrumbs li a span {
    color: #888;
  }
}
.mod-breadcrumbs li.active span {
  margin-bottom: 0;
  color: #333;
}

.fc_editbutton {
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 12px;
  padding: 5px 10px;
  background: #f4f4f4;
  color: #aaa;
}
.fc_editbutton:hover {
  background: #888;
  color: #fff;
  border: 1px solid #555;
}

.article__voting {
  position: absolute;
  inset: 10px 90px auto auto;
}
.article__voting .fcvote-label {
  display: none;
}
.article__voting .fcvote_message {
  position: absolute;
  inset: 100% 50% auto auto;
  transform: translate3d(50%, -10px, 0);
}
.article__voting .fcvote_message .fc-mssg {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.article__voting .fcvote_message .fc-mssg .close {
  width: 10px;
  height: 10px;
  padding: 0;
  display: none;
}
.article__voting .fcvote_message .fc-mssg:before {
  content: "";
  position: absolute;
  inset: auto 50% 100% auto;
  transform: translate3d(50%, 0, 0);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}
.article__favor {
  position: absolute;
  inset: -10px 30px auto auto;
  width: 55px;
  height: 70px;
}
.article__favor .fav-block {
  width: 55px;
  height: 70px;
  display: block;
  line-height: 1;
}
.article__favor .fcfavs-subscribers-count {
  position: absolute;
  inset: auto 0 10px 0;
  display: flex;
  height: auto !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 9;
  line-height: 1;
  background: none;
}
.article__favor .fcfavs-subscribers-count .fcfavs-counter-num {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  font-size: 12px;
  padding: 0;
  color: #142e5e;
  min-width: 20px;
  text-align: center;
}
.article__favor .fcfavs-subscribers-count:after {
  display: none;
}
.article__favor .fcfavs-btn-inner {
  display: block;
  width: 55px !important;
  height: 70px !important;
  position: absolute !important;
  inset: 0 !important;
  background: none !important;
  font-size: 12px;
}
.article__favor .fcfavs-btn-inner:after {
  position: absolute;
  inset: 0;
  clip-path: polygon(100% 0, 100% 100%, 50% 73%, 0 100%, 0 0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
  transition: 0.3s;
  color: #fff;
  display: flex;
  text-align: center;
  padding-top: 7px !important;
  margin: 0 !important;
  justify-content: center;
  color: #fff !important;
}
.article__favor .fcfavs-btn-inner:before {
  content: "";
  position: absolute;
  inset: 5px 0 10px;
  background: rgba(0, 0, 0, 0.1) !important;
  filter: blur(5px);
  z-index: 1;
}
.article__favor .fcfavs-heart-fill:after {
  content: "訂閱";
  background: rgba(231, 68, 53, 0.8) !important;
}
.article__favor .fcfavs-heart-fill:hover:after {
  background: rgba(237, 157, 40, 0.6) !important;
}
.article__favor .fcfavs-heart-border:after {
  content: "未訂閱";
  background: rgba(237, 157, 40, 0.6) !important;
  padding-top: 15px;
}
.article__favor .fcfavs-heart-border:hover:after {
  background: rgba(248, 128, 112, 0.8) !important;
}
.article__favor .fcfavs-responce-tip {
  position: absolute;
  inset: 0 50% auto auto;
  transform: translate3d(50%, -100%, 0);
}
.article__favor .fcfavs-responce-tip .fc-mssg {
  background: none;
  border: none;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

#kt.kt-frontend {
  margin-top: 50px;
}
#kt.kt-frontend .kt-title-bar__title {
  font-size: 26px;
}
#kt.kt-frontend .kt-title-bar__title .commentCounter {
  display: inline-block;
  background: #f1f1f1;
  color: rgba(20, 46, 94, 0.6);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 14px;
}
#kt.kt-frontend .markItUpHeader__bg-select-txt {
  white-space: nowrap;
}

#flexicontent.article-manager.inner {
  margin: 90px auto;
  padding: 20px 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#flexicontent.article-manager .pagination {
  justify-content: center;
}
#flexicontent.article-manager .noitems.group {
  display: block;
  text-align: center;
  padding: 20px 20px 0;
}
#flexicontent.article-manager .fc_return_msg {
  display: block;
  text-align: center;
  padding: 10px 20px 20px;
}
#flexicontent.article-manager .fc_addbutton {
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  font-size: 13px;
  background: #142e5e !important;
  color: #fff;
  border-radius: 5px;
  border: none !important;
}
#flexicontent.article-manager .fc_filter_text_search {
  margin-right: 10px;
  padding-left: 20px;
  display: block !important;
}
#flexicontent.article-manager .fc_filter_set {
  display: inline-flex;
  align-items: center;
}
#flexicontent.article-manager .fc_filter {
  margin-right: 10px;
}
#flexicontent.article-manager .fc_filter .select2-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#flexicontent.article-manager .fc_filter .select2-container .select2-chosen {
  font-size: 12px;
  color: #142e5e;
  white-space: nowrap !important;
}
#flexicontent.article-manager #item_total > div,
#flexicontent.article-manager #item_total .select2-container {
  display: flex;
  align-items: center;
}
#flexicontent.article-manager #item_total .select2-choice {
  background: #fff !important;
  border: none !important;
  height: 32px !important;
  min-height: unset !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}
#flexicontent.article-manager #item_total .select2-choice .select2-chosen {
  font-size: 12px;
  color: #142e5e;
  white-space: nowrap !important;
}
#flexicontent.article-manager #item_total .select2-choice .select2-arrow {
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding-right: 6px;
}
#flexicontent.article-manager #item_total .select2-choice .select2-arrow b {
  width: 8px;
  height: 16px;
  background: url(../images/chevron-down-solid.svg) no-repeat center/contain !important;
}
#flexicontent.article-manager #item_total .select2-choices {
  margin: 0 !important;
  width: 200px !important;
  height: 32px !important;
  border-radius: 4px;
  border: none !important;
  background: #fff !important;
  display: flex;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}
#flexicontent.article-manager #item_total .select2-choices .select2-input {
  border: none !important;
  background: none !important;
  width: 100% !important;
  min-width: 100% !important;
  line-height: 32px !important;
  height: 32px !important;
  outline: none;
  padding: 0 10px !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none;
}
#flexicontent.article-manager #item_total .select2-choices .select2-input.select2-focused {
  width: 100% !important;
  min-width: 100% !important;
}
#flexicontent.article-manager .buttons {
  display: flex;
}
#flexicontent.article-manager .buttons .fc_printbutton,
#flexicontent.article-manager .buttons .fc_mailbutton {
  display: none;
}
#flexicontent.article-manager .fc_filter_set {
  border: none;
  padding: 5px;
}
#flexicontent.article-manager #fc_mainChooseColBox_btn {
  display: none;
}
#flexicontent.article-manager .item_total {
  padding: 5px;
  border: none;
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 10px;
}
#flexicontent.article-manager .item_total .fc_limit_box,
#flexicontent.article-manager .item_total .fc_orderby_box {
  margin: 0;
}
#flexicontent.article-manager .item_total .fc_field_filter {
  margin: 0 !important;
}
#flexicontent.article-manager .item_total .fc_field_filter .select2-choice {
  background: #fff !important;
  border: none !important;
  height: 32px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}
#flexicontent.article-manager .item_total .fc_field_filter .select2-choice .select2-chosen {
  font-size: 12px;
  color: #142e5e;
}
#flexicontent.article-manager .item_total .fc_field_filter .select2-choice .select2-arrow {
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding-right: 6px;
}
#flexicontent.article-manager .item_total .fc_field_filter .select2-choice .select2-arrow b {
  width: 8px;
  height: 16px;
  background: url(../images/chevron-down-solid.svg) no-repeat center/contain !important;
}
#flexicontent.article-manager #adminListTableFCcategory {
  margin: 10px 0;
  width: 100%;
}
#flexicontent.article-manager #adminListTableFCcategory thead {
  border-bottom: 1px solid rgba(134, 151, 185, 0.4);
}
#flexicontent.article-manager #adminListTableFCcategory thead th {
  padding: 15px 5px;
  font-size: 13px;
  color: #142e5e;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: bold;
}
#flexicontent.article-manager #adminListTableFCcategory td .fc_field_image {
  width: 80px;
  aspect-ratio: 3/2;
  margin: 0;
}
#flexicontent.article-manager #adminListTableFCcategory tbody tr.row1 td {
  background: #f7f7f7 !important;
}
#flexicontent.article-manager #adminListTableFCcategory tbody tr.row1 td a [class^=icon-],
#flexicontent.article-manager #adminListTableFCcategory tbody tr.row1 td a [class*=" icon-"] {
  margin-right: 4px;
}
#flexicontent.article-manager #adminListTableFCcategory tbody tr:hover td {
  background: #8697b9 !important;
  color: #fff;
}
#flexicontent.article-manager #adminListTableFCcategory tbody tr:hover td a {
  color: #fff;
}
#flexicontent.article-manager #adminListTableFCcategory tbody tr:hover td a.btn {
  color: #142e5e;
}
#flexicontent.article-manager #adminListTableFCcategory tbody tr:hover td .fc_item_title {
  background: none !important;
}
#flexicontent.article-manager #adminListTableFCcategory tbody td {
  vertical-align: middle;
  padding: 5px;
  font-size: 14px;
  transition: 0.3s;
}
#flexicontent.article-manager #adminListTableFCcategory tbody .fc_title_col {
  padding-left: 20px;
}
#flexicontent.article-manager #adminListTableFCcategory tbody .fc_title_col > * {
  display: inline-block !important;
  vertical-align: middle;
  float: none;
  margin: 0 4px !important;
}
#flexicontent.article-manager #adminListTableFCcategory tbody .fc_title_col .fc_delete_link {
  display: none !important;
}
#flexicontent.article-manager #adminListTableFCcategory tbody .fc_title_col .fc_item_title {
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 65.83px;
  display: inline-flex !important;
  align-items: center;
}
#flexicontent.article-manager #adminListTableFCcategory tbody .fc_title_col ~ td {
  text-align: center;
}
#flexicontent.article-manager #adminListTableFCcategory tbody .fc_categories {
  margin-right: 5px;
  display: inline-block;
  font-size: 12px;
}

.manager__head {
  display: flex;
  padding: 0 20px 20px;
  align-items: center;
}
.manager__head .componentheading {
  font-size: 26px;
  font-weight: bold;
  flex: 1 1 auto;
}
.manager__control {
  padding: 5px 20px;
  background: #f1f1f1;
}
.manager__control + .btn-group {
  display: none !important;
}
.manager__control #adminForm {
  display: flex;
  align-items: center;
}
.manager__control #adminForm .fc_filter_box {
  margin: 0 !important;
}
.manager__control .fc_filter_set,
.manager__control .item_total {
  margin: 0 !important;
}
.manager__control #adminForm_filter_box {
  flex: 0 0 auto;
}
.manager__control #item_total {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.cat-layout-myitems {
  background: #142e5e;
}

.item-id-127 {
  background: #142e5e;
}

#flexicontent.flexi_edit {
  width: 1340px;
  margin: 90px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#flexicontent.flexi_edit #flexiaccess {
  display: none;
}

.wrapper .btn-group fctoolbar,
.wrapper .btn-group .btn {
  display: inline-flex !important;
  align-items: center !important;
}
.wrapper .btn-group fctoolbar [class^=icon-],
.wrapper .btn-group .btn [class^=icon-] {
  margin-right: 5px;
}
.wrapper .dropdown-menu .btn.btn-small {
  display: flex !important;
  align-items: center;
}
.wrapper #fctoolbar joomla-toolbar-button > ul.dropdown-menu > li,
.wrapper #fctoolbar joomla-toolbar-button > ul.dropdown-menu > li .toolbar,
.wrapper #toolbar joomla-toolbar-button > ul.dropdown-menu > li,
.wrapper #toolbar joomla-toolbar-button > ul.dropdown-menu > li .toolbar,
.wrapper #fctoolbar .buttons.btn-group > ul.dropdown-menu > li,
.wrapper #fctoolbar .buttons.btn-group > ul.dropdown-menu > li .toolbar,
.wrapper #toolbar .buttons.btn-group > ul.dropdown-menu > li,
.wrapper #toolbar .buttons.btn-group > ul.dropdown-menu > li .toolbar {
  display: flex !important;
  align-items: center;
}
.wrapper .fctoolbar_top_placement {
  position: relative;
  z-index: 3;
}
.wrapper .fctoolbar_top_placement + .fcform_tabs_above {
  position: relative;
  z-index: 2;
}

.cat-layout-myitems .breadcrumb .inner,
.article-category .breadcrumb .inner {
  padding-inline: 0;
}
.cat-layout-myitems .breadcrumb span,
.cat-layout-myitems .breadcrumb a,
.cat-layout-myitems .breadcrumb li,
.article-category .breadcrumb span,
.article-category .breadcrumb a,
.article-category .breadcrumb li {
  color: #fff;
  text-shadow: none;
}
.cat-layout-myitems .breadcrumb a:hover span,
.article-category .breadcrumb a:hover span {
  color: #ffb005;
}
.cat-layout-myitems .breadcrumb li > span,
.article-category .breadcrumb li > span {
  color: #e4c482;
}

#search-wrap {
  position: relative;
  margin-left: 5px;
  height: 44px;
  width: 44px;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
#search-wrap:hover .search-icon {
  font-size: 21px;
}
#search-wrap .search-icon {
  position: relative;
  color: #fff;
  font-size: 20px;
  transition: 0.2s;
}
#search-wrap .search-form {
  position: absolute;
  inset: auto 0 auto auto;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
#search-wrap .search-query {
  width: 44px;
  height: 32px;
  background: transparent;
  border-radius: 24px;
  border: none;
  opacity: 0;
  transition: 0.26s;
  text-indent: 12px;
}
#search-wrap .search-query:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
#search-wrap .btn-success {
  position: absolute;
  z-index: 9999;
  inset: 3px 8px auto auto;
  border-radius: 16px;
  border: none;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  background: #2a496f;
  color: #fff;
  line-height: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  font-size: 13px;
  padding-inline: 12px;
  cursor: pointer;
}
#search-wrap.has-value .search-icon {
  opacity: 0;
}
#search-wrap.has-value .search-query {
  width: 200px;
  opacity: 1;
  background: #fff;
}
#search-wrap.has-value .btn-success {
  opacity: 1;
  pointer-events: auto;
}

#flexicontent.fcsearch .noitems_search {
  padding: 30px 20px !important;
  text-align: center;
}
#flexicontent.fcsearch .news__category__header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/hero/hero-before-bg.jpg) no-repeat center/cover;
}
#flexicontent.fcsearch .news__category__header .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#flexicontent.fcsearch .news__category__header .inner .contentheading {
  font-size: 40px;
  color: #fff;
}
#flexicontent.fcsearch .fc_basic_complete {
  background: none;
  border: none;
  outline: none;
  height: 100%;
  width: 80%;
}
#flexicontent.fcsearch #item_total {
  float: none !important;
}
#flexicontent.fcsearch #item_total .inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}
#flexicontent.fcsearch .buttons {
  display: none;
}
#flexicontent.fcsearch .fc_search_set {
  background: #f3f3f3;
  border-radius: 5px;
  transition: 0.3s;
  padding-left: 20px;
  align-items: center;
}
#flexicontent.fcsearch .fc_search_set:focus-within {
  background: #fff;
}
#flexicontent.fcsearch .fc_search_set .fc_search_option_cell {
  height: 40px;
}
#flexicontent.fcsearch .fc_search_set .fc_filter_html {
  height: 100%;
}
#flexicontent.fcsearch .fc_search_set .fc_filter_html span {
  display: block;
  height: 100%;
}
#flexicontent.fcsearch .fc_search_set .button_go {
  position: absolute;
  inset: 3px 3px 3px auto;
  width: auto !important;
  height: auto;
  display: flex;
  align-items: center;
}
#flexicontent.fcsearch .fc_search_set legend {
  display: none;
}
#flexicontent.fcsearch .fc_search_set .label_fcflt {
  display: none;
}
#flexicontent.fcsearch .fc_search_set #use_advsearch_options_lbl {
  display: none;
}
#flexicontent.fcsearch .fc_search_result {
  margin: 30px 0;
}
#flexicontent.fcsearch .fc_search_result_text {
  font-size: 13px;
  line-height: 1.6;
}
#flexicontent.fcsearch .highlight {
  display: inline-block;
  background: #ffeecc;
  padding: 1px 2px;
}

.wrapper {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "main" "footer";
}

.header {
  grid-area: header;
  width: 100%;
  position: fixed;
  z-index: 9;
}

.main {
  grid-area: main;
  position: relative;
  z-index: 2;
  top: -65px;
  padding-top: 65px;
}

.footer {
  grid-area: footer;
  position: relative;
  z-index: 3;
}

.inner,
[data-eb-container],
.main #es.es-component,
.noitems_search {
  display: block;
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 30px;
  float: none !important;
}
@media (max-width: 768px) {
  .inner.contact,
  [data-eb-container].contact,
  .main #es.es-component.contact,
  .noitems_search.contact {
    padding: 0;
  }
}
.inner.nav-footer-inner,
[data-eb-container].nav-footer-inner,
.main #es.es-component.nav-footer-inner,
.noitems_search.nav-footer-inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 30px;
}
@media (max-width: 1024px) {
  .inner.nav-footer-inner,
  [data-eb-container].nav-footer-inner,
  .main #es.es-component.nav-footer-inner,
  .noitems_search.nav-footer-inner {
    flex-direction: column;
  }
}
.inner.hero-news,
[data-eb-container].hero-news,
.main #es.es-component.hero-news,
.noitems_search.hero-news {
  display: flex;
  max-width: 980px;
}
.inner.section-event-inner,
[data-eb-container].section-event-inner,
.main #es.es-component.section-event-inner,
.noitems_search.section-event-inner {
  padding-top: 47px;
  padding-bottom: 74px;
}
@media (max-width: 480px) {
  .inner.section-event-inner,
  [data-eb-container].section-event-inner,
  .main #es.es-component.section-event-inner,
  .noitems_search.section-event-inner {
    padding-top: 30px;
  }
}
.inner.news-category-inner,
[data-eb-container].news-category-inner,
.main #es.es-component.news-category-inner,
.noitems_search.news-category-inner {
  max-width: 1280px;
  padding-top: 20px;
  background: #f7f7f7;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.inner.item-inner,
[data-eb-container].item-inner,
.main #es.es-component.item-inner,
.noitems_search.item-inner {
  transform: translate(0, -93px);
}
@media (max-width: 480px) {
  .inner.item-inner,
  [data-eb-container].item-inner,
  .main #es.es-component.item-inner,
  .noitems_search.item-inner {
    padding: 0;
  }
}
.inner.item-inner-nav,
[data-eb-container].item-inner-nav,
.main #es.es-component.item-inner-nav,
.noitems_search.item-inner-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 52px;
}

.inner.item-inner {
  width: min(100%, 1024px);
}

.section_news {
  font-size: 16px;
  position: relative;
  z-index: 9;
  background: #132e5e;
  overflow: hidden;
  padding-bottom: 6px;
}
.section_news .junewsticker-title {
  color: #e1c36c;
}
.section_news .junewsticker {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.section_news .junewsticker a {
  color: #fff;
  font-size: 16px;
}

.social-channel-sticky {
  position: fixed !important;
  top: 30px !important;
  left: 0 !important;
}

.jssocials-shares a {
  color: #fff;
}

ul.breadcrumb {
  padding: 15px 0 15px;
  margin-top: 20px;
}
ul.breadcrumb li {
  display: inline-block;
  font-size: 14px;
  color: #888;
}
ul.breadcrumb li a {
  color: #132e5e;
}
ul.breadcrumb li a:hover {
  color: #1c4388;
}
ul.breadcrumb li.active {
  font-weight: bold;
  color: #333;
}

.directory {
  padding: 0;
}
@media (max-width: 480px) {
  .directory {
    padding-left: 40px;
  }
}
.directory .fccatcolumn {
  display: grid;
  grid-template-columns: repeat(4, auto);
}
@media (max-width: 839px) {
  .directory .fccatcolumn {
    grid-template-columns: 1fr 1fr;
  }
}
.directory .fccatcolumn .floattext {
  padding: 10px;
  background: #f9f9f9;
  margin: 10px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .directory .fccatcolumn .floattext {
    margin: 5px;
  }
}
.directory .fccatcolumn .fccat_descr {
  display: block;
  color: #666;
  font-size: 13px;
  padding: 5px 10px 10px;
  line-height: 1.4;
  margin: 5px 0;
  border-bottom: 3px double #e4e4e4;
}
.directory .fccatcolumn .fccat_title_box {
  font-size: 1.25rem;
  color: #3c6abf;
  padding: 10px;
  border-bottom: 3px double #e4e4e4;
  display: block;
}
@media (max-width: 480px) {
  .directory .fccatcolumn .fccat_title_box {
    padding: 10px 6px;
  }
}
.directory .fccatcolumn .fccat_title_box a {
  color: #3c6abf;
  font-weight: bold;
}
.directory .fccatcolumn .fcsubcats_list {
  padding-top: 5px;
}
.directory .fccatcolumn .fcsubcats_list .fcsubcat_title {
  color: #142e5e;
  display: block;
  padding: 6px 10px;
  font-size: 1rem;
}
.directory .fccatcolumn .fcsubcats_list .fcsubcat_title svg {
  margin-right: 5px;
  opacity: 0.5;
  transform: scale(0.7);
  transition: 0.3s;
}
.directory .fccatcolumn .fcsubcats_list .fcsubcat_title:hover svg {
  transform: translate3d(4px, 0, 0) scale(0.7);
}
@media (max-width: 480px) {
  .directory .fccatcolumn .fcsubcats_list .fcsubcat_title {
    padding: 6px 6px;
  }
}

.junewsticker-controls {
  display: none !important;
}

.junewsticker-wrapper {
  opacity: 0;
  transition: 0.3s;
}
.junewsticker-wrapper.has-js {
  opacity: 1;
}

.btn-register {
  padding: 10px 20px;
  display: block;
  background: #142e5e;
  color: #fff;
  font-size: 0.875rem;
  transition: 0.3s;
  text-align: center;
  border-radius: 4px;
}
.btn-register:hover {
  color: #fff;
  background: #3c6abf;
  box-shadow: 0 5px 10px #3c6abf;
}

#userForm {
  margin: 20px auto;
  max-width: 460px;
  background: #f3f3f3;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

[data-eb-container] {
  padding: 90px 30px 40px !important;
}

#eb .eb-reading-indicator {
  font-size: 14px;
}
#eb .eb-entry-head {
  font-size: 14px;
}
#eb .eb-entry-head .eb-entry-title {
  font-size: 28px;
}
#eb .eb-card__bd-content {
  font-size: 13px;
  line-height: 1.5;
}
#eb .eb-card__title {
  font-size: 18px;
}
#eb .eb-card__ft-content,
#eb .eb-post-actions,
#eb .eb-blog-grid__body {
  font-size: 13px;
  line-height: 1.5;
}
#eb [data-eb-container] {
  background: #fff;
  padding: 10px;
  border-radius: 3px;
}
#eb .eb-empty {
  margin-inline: auto;
}
#eb .eb-dashboard-empty__text,
#eb .eb-login {
  line-height: 1.6;
}
#eb [itemprop=articleBody] {
  line-height: 1.7;
}
#eb .o-nav__link span {
  font-size: 14px;
}
#eb .eb-entry-article {
  line-height: 1.7;
}

.main #es.es-component {
  padding-block: 90px;
}

.breadcrumb {
  padding: 0 !important;
  background: none !important;
  margin: 20px 0 !important;
}

#es .o-avatar-v2__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  #es .o-media__image {
    margin-right: 0 !important;
  }
}
@media (max-width: 1024px) {
  #es .o-media__body {
    display: none;
  }
}
