@charset "UTF-8";
@import url("phf1kac.css");
.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-revoke:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active,
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}

.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: -2em;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
  display: none;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-revoke,
.cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }

  .cc-window.cc-bottom {
    bottom: 0;
  }

  .cc-window.cc-banner,
.cc-window.cc-floating,
.cc-window.cc-left,
.cc-window.cc-right {
    left: 0;
    right: 0;
  }

  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .cc-window.cc-floating {
    max-width: none;
  }

  .cc-window .cc-message {
    margin-bottom: 1em;
  }

  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.iti {
  position: relative;
  display: block;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

[dir=rtl] .iti__arrow {
  margin-right: 6px;
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  outline: none;
  color: black;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}

[dir=rtl] .iti__flag-box,
[dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

[dir=rtl] .iti--allow-dropdown input,
[dir=rtl] .iti--allow-dropdown input[type=text],
[dir=rtl] .iti--allow-dropdown input[type=tel],
[dir=rtl] .iti--separate-dial-code input,
[dir=rtl] .iti--separate-dial-code input[type=text],
[dir=rtl] .iti--separate-dial-code input[type=tel] {
  padding-right: 52px;
  padding-left: 6px;
  margin-right: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0.5rem;
}

[dir=rtl] .iti--allow-dropdown .iti__flag-container,
[dir=rtl] .iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0);
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
}

[dir=rtl] .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5762px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 12px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cq {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1269px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1357px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1379px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1467px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1511px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1555px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1577px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1599px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1621px 0px;
}

.iti__flag.iti__ez {
  height: 14px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1731px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1775px 0px;
}

.iti__flag.iti__fx {
  height: 14px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1863px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2149px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2171px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2237px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2303px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2325px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2369px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2391px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2413px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2435px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2457px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2479px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2501px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2567px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2589px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2611px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2633px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2655px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2699px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2743px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2809px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2853px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2875px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2897px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2985px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -3051px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3073px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3095px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3117px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3139px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3161px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3183px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3205px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3226px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3270px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3556px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3622px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3666px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3688px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3710px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3732px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3752px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3774px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3818px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3840px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3862px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3899px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3921px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3965px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -4031px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4097px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4163px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4185px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4207px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4229px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4251px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4273px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4361px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4405px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4537px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4647px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4669px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4713px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4735px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4757px 0px;
}

.iti__flag.iti__su {
  height: 10px;
  background-position: -4779px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4801px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4823px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4889px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4911px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4977px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -5021px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5109px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5175px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5197px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5219px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5263px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uk {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5329px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5351px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5373px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5395px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5417px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5439px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5456px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5522px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5566px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5610px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5632px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5654px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5676px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5698px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5720px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5742px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/flags.png");
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../img/flags%402x.png");
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s)*.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

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

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0))*-0.5);
  width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

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

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

/**
 * Accordion v3.4.0
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */
.ac {
  margin-bottom: 8px;
  border: 1px solid #f5eadd;
  background-color: #fffffe;
  box-sizing: border-box;
}

.ac .ac-header {
  margin: 0;
  padding: 0;
}

.ac .ac-trigger {
  text-align: left;
  width: 100%;
  padding: 0.7em 1em;
  display: block;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
  margin: 0;
  border: 0;
  text-transform: uppercase;
  background-color: #28347e;
  color: #faf8f4;
  font-weight: 500;
}

.ac .ac-trigger::after {
  content: "+";
  text-align: center;
  width: 2em;
  transform: translate(0, -50%);
  position: absolute;
  right: 0.35em;
  top: 50%;
}

.ac .ac-trigger:hover {
  background-color: #1c2457;
}

.ac.is-active .ac-trigger {
  background-color: #192259;
  color: #faf8f4;
}

.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
}

.ac .ac-panel .ac-text {
  color: #584d40;
  padding: 8px;
  margin: 0;
}

.ac.js-enabled .ac-panel {
  visibility: hidden;
}

.ac.is-active .ac-panel {
  visibility: visible;
}

.ac.is-active > .ac-header .ac-trigger::after {
  content: "–";
}

.accordion-container-info .ac .ac-trigger {
  background-color: #fffffe;
  color: #28347e;
  font-size: 1.5rem;
}
@media screen and (max-width: 1040px) {
  .accordion-container-info .ac .ac-trigger {
    font-size: 1.2rem;
  }
}
.accordion-container-info .ac .ac-panel .content {
  padding: 2em;
  padding-top: 0;
}
.accordion-container-info .ac .ac-panel .content > * {
  margin-bottom: 1.2em;
}
.accordion-container-info .ac .ac-panel .content > *:last-child {
  margin-bottom: 0;
}
.accordion-container-info .ac .ac-panel .content img {
  max-width: 480px;
}

.tooltip {
  --tooltip-zindex: 1080;
  --tooltip-padding-x: 1.2em;
  --tooltip-padding-y: 1em;
  --tooltip-margin: ;
  --tooltip-color: #faf8f4;
  --tooltip-bg: #28347e;
  --tooltip-border-radius: 0.7em;
  --tooltip-opacity: 0.9;
  --tooltip-arrow-width: 0.8rem;
  --tooltip-arrow-height: 0.4rem;
  z-index: var(--tooltip-zindex);
  display: block;
  margin: var(--tooltip-margin);
  font-size: 0.86em;
  word-wrap: break-word;
  position: absolute;
  max-width: 320px;
  visibility: hidden;
}
@media screen and (min-width: 680px) {
  .tooltip {
    max-width: 480px;
  }
}
.tooltip.show {
  visibility: visible;
}
.tooltip .tooltip-arrow {
  display: block;
  width: 0.8rem;
  height: 0.4rem;
  position: absolute;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: -0.4rem;
  left: 50%;
  margin-left: -0.4rem;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: var(--tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc( 		-1 * $tooltip-arrow-height 	);
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: var(--tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc( 		-1 * $tooltip-arrow-height 	);
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: var(--tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc( 		-1 * $tooltip-arrow-height 	);
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: var(--tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--tooltip-max-width);
  padding: 1.2em 1.6em;
  color: var(--tooltip-color);
  text-align: left;
  background-color: var(--tooltip-bg);
  border-radius: var(--tooltip-border-radius);
}
.tooltip-inner > * {
  margin: 0;
  margin-top: 0.7em;
}
.tooltip-inner > *:first-child {
  margin-top: 0;
}

.tooltip.olive-bg {
  --tooltip-bg: $olive;
}
.tooltip.olive-bg .tooltip-inner {
  background-color: #788b88;
}

.tooltip.light-bg {
  --tooltip-bg: $gray-100;
}
.tooltip.light-bg .tooltip-inner {
  background-color: #faf8f4;
  color: #28347e;
}

@media screen and (max-width: 680px) {
  .dnone-sm {
    display: none;
  }
}

.d-none {
  display: none !important;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.7;
  background-color: #faf8f4;
  font-weight: 400;
  text-align: center;
  padding: 0;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@keyframes spinnerborder {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  border: 4px dashed #28347e;
  border-right-color: #28347e;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border-radius: 50%;
  animation: spinnerborder 0.75s linear infinite;
  position: relative;
}

.container {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
}
@media screen and (min-width: 680px) {
  .container {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  .container {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  .container {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  .container {
    width: 100%;
    padding: 0 1.3rem;
  }
}

.content-group > * {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 680px) {
  .content-group > * {
    margin-bottom: 1rem;
  }
}
.content-group > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  .content-group > *:last-child {
    margin-bottom: 0;
  }
}
.content-group > h1 {
  margin-bottom: 1.5rem;
}
.content-group > h2 {
  margin-bottom: 1.5rem;
}

.vertical-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.shape {
  display: block;
}
.shape.shape-vertical {
  padding-top: 300%;
}
.shape.shape-banner {
  padding: 20%;
}
.shape.shape-portrait {
  padding-top: 65%;
}
.shape.shape-square {
  padding: 100%;
  width: 100%;
  display: block;
}
.shape.shape-img {
  background-color: #ebe0d3;
  background-size: cover;
  background-position: center;
}

.title-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

.bg-orange {
  background-color: #f49525;
}

.bg-teal {
  background-color: #50a4a9;
}

.bg-wine {
  background-color: #b83c68;
}

.bg-blue {
  background-color: #28347e;
}

.highlight {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1040px) {
  .highlight {
    flex-direction: column;
  }
}
.highlight > .shape-img {
  width: 40%;
  padding-top: 40%;
}
@media screen and (max-width: 1040px) {
  .highlight > .shape-img {
    width: 100%;
    padding-top: 100%;
  }
}
.highlight > div {
  width: 48%;
}
@media screen and (max-width: 1040px) {
  .highlight > div {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1040px) {
  .highlight.left > .shape-img {
    margin-bottom: 2rem;
  }
}
.highlight.left > div {
  margin-left: 12%;
}
.highlight.left.full-width > div {
  width: 48%;
  margin-left: 6%;
  margin-right: 6%;
}
@media screen and (max-width: 1040px) {
  .highlight.right > .shape-img {
    margin-top: 2rem;
  }
}
.highlight.right > div {
  margin-right: 12%;
}
.highlight.right.full-width > div {
  width: 48%;
  margin-left: 6%;
  margin-right: 6%;
}

ol.numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
}
ol.numbered-list li {
  counter-increment: item;
  margin-bottom: 1.2rem;
  padding-left: 3.2rem;
  position: relative;
}
ol.numbered-list li:last-child {
  margin-bottom: 0;
}
ol.numbered-list li:before {
  content: counter(item);
  background: #ea546c;
  border-radius: 100%;
  color: white;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.row {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -4rem;
  list-style: none;
}
.row.center {
  justify-content: center;
}
.row.vcenter {
  align-items: center;
}
@media screen and (max-width: 680px) {
  .row {
    margin-bottom: -2rem;
  }
}
.row > * {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1040px) {
  .row > * {
    width: 100% !important;
  }
}
@media screen and (max-width: 680px) {
  .row > * {
    padding-bottom: 2.5rem;
  }
}
.row.g-sm {
  margin-left: -1.3rem;
  margin-right: -1.3rem;
  margin-bottom: -2.6rem;
}
.row.g-sm > * {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  padding-bottom: 2.6rem;
}
.row.g-none {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.row.g-none > * {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.row > .col-1 {
  width: 8.333333%;
}
.row > .col-2 {
  width: 16.666667%;
}
.row > .col-3 {
  width: 25%;
}
.row > .col-4 {
  width: 33.333333%;
}
.row > .col-5 {
  width: 41.666667%;
}
.row > .col-6 {
  width: 50%;
}
.row > .col-7 {
  width: 58.333333%;
}
.row > .col-8 {
  width: 66.666667%;
}
.row > .col-9 {
  width: 75%;
}
.row > .col-10 {
  width: 83.333333%;
}
.row > .col-11 {
  width: 91.666667%;
}
.row > .col-12 {
  width: 100%;
}

pre {
  text-align: left;
}

body {
  font-family: "titillium-web", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #584d40;
}
@media screen and (min-width: 440px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1040px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 1390px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1540px) {
  body {
    font-size: 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0;
}

h1,
.h1 {
  font-size: 2.85em;
}
@media screen and (max-width: 1390px) {
  h1,
.h1 {
    font-size: 2.65em;
  }
}
@media screen and (max-width: 1040px) {
  h1,
.h1 {
    font-size: 2.2em;
  }
}

h2,
.h2 {
  font-size: 2.7em;
}
@media screen and (max-width: 1390px) {
  h2,
.h2 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 1040px) {
  h2,
.h2 {
    font-size: 1.8em;
  }
}

h3,
.h3 {
  font-size: 2em;
}
@media screen and (max-width: 1390px) {
  h3,
.h3 {
    font-size: 1.7em;
  }
}
@media screen and (max-width: 1040px) {
  h3,
.h3 {
    font-size: 1.5em;
  }
}

h4,
.h4 {
  font-size: 1.5em;
}

h5,
.h5 {
  font-size: 1.25em;
}

.lead {
  font-size: 1.2em;
}

.overline {
  font-size: 0.86em;
  line-height: 0.86em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 680px) {
  .overline {
    font-size: 0.7em;
    line-height: 0.7em;
  }
}

.tag {
  font-size: 0.86em;
  line-height: 0.86em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #faf8f4;
  display: inline-block;
  padding: 0.5em;
}
@media screen and (max-width: 680px) {
  .tag {
    padding: 0.35em;
    font-size: 0.7em;
    line-height: 0.7em;
  }
}

body.page-identifier-news-and-events .nav-led .item-link.news-and-events a:after {
  background-color: #28347e;
}

#navbar {
  position: absolute;
  width: 100%;
  top: 5rem;
  transition: opacity 0.4s;
  z-index: 99;
}
@media screen and (max-width: 1040px) {
  #navbar {
    padding-top: 88px;
    position: relative;
  }
}
@media screen and (max-height: 720px) {
  #navbar {
    top: 3rem;
  }
}
#navbar > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1040px) {
  #navbar > .container {
    display: none;
  }
}
#navbar > .container > a img {
  max-width: 20rem;
}
@media screen and (max-width: 1040px) {
  #navbar .nav {
    display: none;
  }
}

html.lang-fr #navbar > .container > a img {
  max-width: 16rem;
}
@media screen and (max-width: 1390px) {
  html.lang-fr #navbar > .container > a img {
    max-width: 12rem;
  }
}

#toolbar .nav-led,
#navbar .nav-led {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#toolbar .nav-led > li.item-link > a,
#toolbar .nav-led > li.item-lang > a,
#navbar .nav-led > li.item-link > a,
#navbar .nav-led > li.item-lang > a {
  font-size: 0.86em;
  font-weight: 700;
  color: #28347e;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0.8rem;
}
#toolbar .nav-led > li.item-link > a:after,
#toolbar .nav-led > li.item-lang > a:after,
#navbar .nav-led > li.item-link > a:after,
#navbar .nav-led > li.item-lang > a:after {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  background-color: transparent;
  border-radius: 8px;
}
#toolbar .nav-led > li.item-link > a.active:after, #toolbar .nav-led > li.item-link > a:hover:after, #toolbar .nav-led > li.item-link > a:focus:after,
#toolbar .nav-led > li.item-lang > a.active:after,
#toolbar .nav-led > li.item-lang > a:hover:after,
#toolbar .nav-led > li.item-lang > a:focus:after,
#navbar .nav-led > li.item-link > a.active:after,
#navbar .nav-led > li.item-link > a:hover:after,
#navbar .nav-led > li.item-link > a:focus:after,
#navbar .nav-led > li.item-lang > a.active:after,
#navbar .nav-led > li.item-lang > a:hover:after,
#navbar .nav-led > li.item-lang > a:focus:after {
  background-color: #28347e;
}
#toolbar .nav-led > li.item-lang > a,
#navbar .nav-led > li.item-lang > a {
  font-weight: 400;
  padding-right: 0;
  opacity: 0.5;
}
#toolbar .nav-led > li.item-lang > a:after,
#navbar .nav-led > li.item-lang > a:after {
  visibility: hidden;
}
#toolbar .nav-led > li.item-lang > a.active, #toolbar .nav-led > li.item-lang > a:hover, #toolbar .nav-led > li.item-lang > a:focus,
#navbar .nav-led > li.item-lang > a.active,
#navbar .nav-led > li.item-lang > a:hover,
#navbar .nav-led > li.item-lang > a:focus {
  font-weight: 700;
  opacity: 1;
}
#toolbar .nav-led > li.item-lang + .item-btn,
#navbar .nav-led > li.item-lang + .item-btn {
  margin-left: 1rem;
}
#toolbar .nav-led > .item-btn,
#navbar .nav-led > .item-btn {
  margin-left: 0.5rem;
}
#toolbar .nav-led > .item-btn .btn-link,
#navbar .nav-led > .item-btn .btn-link {
  color: #28347e;
}
#toolbar .nav-led .item-link.has-submenu,
#navbar .nav-led .item-link.has-submenu {
  position: relative;
}
#toolbar .nav-led .item-link.has-submenu:hover .sub-menu, #toolbar .nav-led .item-link.has-submenu:focus .sub-menu,
#navbar .nav-led .item-link.has-submenu:hover .sub-menu,
#navbar .nav-led .item-link.has-submenu:focus .sub-menu {
  display: block;
}
#toolbar .nav-led .item-link.has-submenu .sub-menu,
#navbar .nav-led .item-link.has-submenu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background-color: #faf8f4;
  box-shadow: 0 0 0.5rem rgba(125, 114, 101, 0.4);
  z-index: 1000;
  padding: 0;
  list-style: none;
}
#toolbar .nav-led .item-link.has-submenu .sub-menu > li > a,
#navbar .nav-led .item-link.has-submenu .sub-menu > li > a {
  color: #28347e;
  text-decoration: none;
  font-size: 0.86em;
  padding: 0.75rem 1rem;
  display: block;
  text-align: left;
}
#toolbar .nav-led .item-link.has-submenu .sub-menu > li > a.active,
#navbar .nav-led .item-link.has-submenu .sub-menu > li > a.active {
  font-weight: 700;
}
#toolbar .nav-led .item-link.has-submenu .sub-menu > li > a:hover,
#navbar .nav-led .item-link.has-submenu .sub-menu > li > a:hover {
  background-color: #28347e;
  color: #faf8f4;
}

#toolbar {
  position: fixed;
  top: -10rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #faf8f4;
  box-shadow: 0 0 0.5rem rgba(125, 114, 101, 0.4);
  padding: 0.75rem 0;
  transition: top 0.4s ease-out;
}
@media screen and (max-width: 1040px) {
  #toolbar {
    top: 0;
  }
}
@media screen and (max-width: 1040px) {
  #toolbar .nav {
    display: none;
  }
}
#toolbar > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#toolbar > .container .brand {
  display: block;
}
#toolbar > .container .brand img {
  height: 4rem;
  width: auto;
}

body.headroom--not-top #toolbar,
body:not(.home) #toolbar {
  top: 0;
}
body.headroom--not-top #navbar,
body:not(.home) #navbar {
  opacity: 0;
}

body:not(.home) {
  padding-top: 5.5rem;
}

#responsive-nav {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background-color: #28347e;
  z-index: 1050;
  transition: right 0.4s ease-out;
  color: #faf8f4;
  display: none;
}
#responsive-nav:before {
  content: "";
  position: fixed;
  top: 0;
  right: 260px;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 248, 244, 0.65);
  z-index: -1;
  opacity: 0;
  display: none;
}
@media screen and (max-width: 1040px) {
  #responsive-nav {
    display: block;
  }
}
#responsive-nav .close {
  position: absolute;
  top: 1.5rem;
  right: 260px;
  font-size: 2rem;
  color: #faf8f4;
  cursor: pointer;
  color: #fffffe;
  background-color: #28347e !important;
  border-color: #28347e !important;
  border: none;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
}
#responsive-nav .close:not(:disabled):hover {
  background-color: #161c44 !important;
}
#responsive-nav .close:not(:disabled):focus, #responsive-nav .close:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(40, 52, 126, 0.5) !important;
}
#responsive-nav .close svg {
  width: 1.25rem;
  height: auto;
}
#responsive-nav .close svg.cancel {
  display: none;
}
#responsive-nav .nav-led {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 2rem 1.75rem;
  list-style: none;
  margin: 0;
  text-align: left;
}
#responsive-nav .nav-led > li {
  text-align: left;
}
#responsive-nav .nav-led > li.item-link {
  width: 100%;
}
#responsive-nav .nav-led > li.item-link > a {
  display: block;
  color: #faf8f4;
  font-size: 1.2em;
  padding: 0.75rem 0;
  text-decoration: none;
  opacity: 0.7;
}
#responsive-nav .nav-led > li.item-link > a.active {
  opacity: 1;
  font-weight: 700;
}
#responsive-nav .nav-led > li.item-link.has-submenu .sub-menu {
  list-style: none;
  margin: 0 0 1rem 1rem;
  padding: 0;
}
#responsive-nav .nav-led > li.item-link.has-submenu .sub-menu a {
  display: block;
  color: #faf8f4;
  padding: 0.25rem 0;
  font-size: 1em;
  text-decoration: none;
  opacity: 0.7;
}
#responsive-nav .nav-led > li.item-link.has-submenu .sub-menu a.active {
  font-weight: 700;
  opacity: 1;
}
#responsive-nav .nav-led > li.item-btn {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  margin-left: 0;
}
#responsive-nav .nav-led > li.item-btn > .btn:not(.btn-link) {
  color: #fffffe;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
}
#responsive-nav .nav-led > li.item-btn > .btn:not(.btn-link):not(:disabled):hover {
  background-color: #d71a39 !important;
}
#responsive-nav .nav-led > li.item-btn > .btn:not(.btn-link):not(:disabled):focus, #responsive-nav .nav-led > li.item-btn > .btn:not(.btn-link):not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}
#responsive-nav .nav-led > li.item-btn > .btn {
  width: 100%;
}
#responsive-nav .nav-led > li.item-lang {
  display: inline-block;
  width: auto;
  margin-top: 1.15rem;
}
#responsive-nav .nav-led > li.item-lang > a {
  color: #faf8f4;
  font-size: 1em;
  padding-left: 0;
  padding-right: 1rem;
  display: block;
  text-decoration: none;
  opacity: 0.7;
}
#responsive-nav .nav-led > li.item-lang > a.active {
  font-weight: 700;
  opacity: 1;
}

@media screen and (max-width: 1040px) {
  body.navbar--on #responsive-nav {
    right: 0;
  }
}
@media screen and (max-width: 1040px) {
  body.navbar--on #responsive-nav:before {
    display: block;
    opacity: 1;
  }
}
body.navbar--on #responsive-nav .close svg.cancel {
  display: block;
}
body.navbar--on #responsive-nav .close svg.burguer {
  display: none;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
  border-radius: 5rem;
  vertical-align: middle;
}
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.btn.btn-icon {
  width: 3.5rem;
}
@media screen and (max-width: 680px) {
  .btn.btn-icon {
    width: 2.4rem;
  }
}
.btn.btn-icon > i {
  font-size: 1.5rem;
}
@media screen and (max-width: 680px) {
  .btn.btn-icon > i {
    font-size: 1.2rem;
  }
}
.btn.btn-icon > i:before {
  height: 3.5rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 680px) {
  .btn.btn-icon > i:before {
    height: 2.4rem;
    line-height: 2.2rem;
  }
}
.btn.btn-sm.btn-icon {
  width: 2.5rem;
}
.btn.btn-sm.btn-icon > i {
  font-size: 1.2rem;
}
.btn.btn-sm.btn-icon > i:before {
  height: 2.5rem;
  line-height: 2.5rem;
}

body .wp-block-button__link {
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
  border-radius: 5rem;
  vertical-align: middle;
}
body .wp-block-button__link:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
body .wp-block-button__link.btn-icon {
  width: 3.5rem;
}
@media screen and (max-width: 680px) {
  body .wp-block-button__link.btn-icon {
    width: 2.4rem;
  }
}
body .wp-block-button__link.btn-icon > i {
  font-size: 1.5rem;
}
@media screen and (max-width: 680px) {
  body .wp-block-button__link.btn-icon > i {
    font-size: 1.2rem;
  }
}
body .wp-block-button__link.btn-icon > i:before {
  height: 3.5rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 680px) {
  body .wp-block-button__link.btn-icon > i:before {
    height: 2.4rem;
    line-height: 2.2rem;
  }
}
body .wp-block-button__link.btn-sm.btn-icon {
  width: 2.5rem;
}
body .wp-block-button__link.btn-sm.btn-icon > i {
  font-size: 1.2rem;
}
body .wp-block-button__link.btn-sm.btn-icon > i:before {
  height: 2.5rem;
  line-height: 2.5rem;
}

.btn-sm {
  padding: 0 1.5rem;
  height: 2.4rem;
  line-height: 2.2rem;
  font-size: 0.86em;
}

.btn-lg {
  padding: 0 2.6rem;
  height: 3.5rem;
  line-height: 3.3rem;
  font-size: 1.2em;
}

.btn-md {
  padding: 0 2rem;
  height: 3rem;
  line-height: 2.7rem;
  font-size: 1em;
}

.btn-blue,
body .wp-block-button__link.has-vivid-cyan-blue-background-color {
  color: #fffffe;
  background-color: #28347e !important;
  border-color: #28347e !important;
}
.btn-blue:not(:disabled):hover,
body .wp-block-button__link.has-vivid-cyan-blue-background-color:not(:disabled):hover {
  background-color: #161c44 !important;
}
.btn-blue:not(:disabled):focus, .btn-blue:not(:disabled):active,
body .wp-block-button__link.has-vivid-cyan-blue-background-color:not(:disabled):focus,
body .wp-block-button__link.has-vivid-cyan-blue-background-color:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(40, 52, 126, 0.5) !important;
}

.btn-olive {
  color: #fffffe;
  background-color: #788b88 !important;
  border-color: #788b88 !important;
}
.btn-olive:not(:disabled):hover {
  background-color: #546260 !important;
}
.btn-olive:not(:disabled):focus, .btn-olive:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(120, 139, 136, 0.5) !important;
}

.btn-indigo {
  color: #fffffe;
  background-color: #6f4f9b !important;
  border-color: #6f4f9b !important;
}
.btn-indigo:not(:disabled):hover {
  background-color: #4b3568 !important;
}
.btn-indigo:not(:disabled):focus, .btn-indigo:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(111, 79, 155, 0.5) !important;
}

.btn-light {
  color: #788b88;
  background-color: #faf8f4 !important;
  border-color: #faf8f4 !important;
}
.btn-light:not(:disabled):hover {
  background-color: #e2d7bf !important;
}
.btn-light:not(:disabled):focus, .btn-light:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(250, 248, 244, 0.5) !important;
}

.btn-pink,
body .wp-block-button__link.has-pale-pink-background-color {
  color: #fffffe;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
}
.btn-pink:not(:disabled):hover,
body .wp-block-button__link.has-pale-pink-background-color:not(:disabled):hover {
  background-color: #d71a39 !important;
}
.btn-pink:not(:disabled):focus, .btn-pink:not(:disabled):active,
body .wp-block-button__link.has-pale-pink-background-color:not(:disabled):focus,
body .wp-block-button__link.has-pale-pink-background-color:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}

.btn-outline-pink {
  color: #ea546c;
  background-color: transparent;
  border-color: #ea546c;
}
.btn-outline-pink:hover {
  border-color: rgba(234, 84, 108, 0.5);
}
.btn-outline-pink:focus, .btn-outline-pink:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5);
}

.btn-outline-blue {
  color: #28347e;
  background-color: transparent;
  border-color: #28347e;
}
.btn-outline-blue:hover {
  border-color: rgba(40, 52, 126, 0.5);
}
.btn-outline-blue:focus, .btn-outline-blue:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(40, 52, 126, 0.5);
}

.btn-outline-light {
  color: #faf8f4;
  background-color: transparent;
  border-color: #faf8f4;
}
.btn-outline-light:hover {
  border-color: rgba(250, 248, 244, 0.5);
}
.btn-outline-light:focus, .btn-outline-light:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(250, 248, 244, 0.5);
}

.btn-outline-orange {
  color: #f49525;
  background-color: transparent;
  border-color: #f49525;
}
.btn-outline-orange:hover {
  border-color: rgba(244, 149, 37, 0.5);
}
.btn-outline-orange:focus, .btn-outline-orange:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(244, 149, 37, 0.5);
}

.btn-outline-teal {
  color: #50a4a9;
  background-color: transparent;
  border-color: #50a4a9;
}
.btn-outline-teal:hover {
  border-color: rgba(80, 164, 169, 0.5);
}
.btn-outline-teal:focus, .btn-outline-teal:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(80, 164, 169, 0.5);
}

.btn-outline-green {
  color: #80ba27;
  background-color: transparent;
  border-color: #80ba27;
}
.btn-outline-green:hover {
  border-color: rgba(128, 186, 39, 0.5);
}
.btn-outline-green:focus, .btn-outline-green:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(128, 186, 39, 0.5);
}

.btn-icon {
  padding: 0 !important;
}
.btn-icon > i {
  display: block;
}

.btn-group {
  display: flex;
  flex-direction: row;
  margin-left: -0.5rem;
}
@media screen and (max-width: 680px) {
  .btn-group {
    flex-direction: column;
    margin-left: 0;
  }
}
.btn-group > .btn,
.btn-group > .wp-block-button {
  margin: 0 0.5rem;
}
@media screen and (max-width: 680px) {
  .btn-group > .btn,
.btn-group > .wp-block-button {
    margin: 0.5rem 0;
    width: 100%;
  }
}
.btn-group > .btn .wp-block-button__link,
.btn-group > .wp-block-button .wp-block-button__link {
  width: 100%;
}

.form-row {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: 1.5rem;
}

.form-col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 1040px) {
  .form-col {
    width: 100% !important;
  }
}

.form-control {
  display: block;
  width: 100%;
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0 1rem;
  height: 3.5rem;
  line-height: 3.2rem;
  font-size: 1.2em;
}
.form-control:focus {
  outline: 0;
}
.form-control:disabled, .form-control.is-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-control option {
  color: black;
}

textarea.form-control {
  line-height: 2rem;
  min-height: 5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.2rem;
  max-width: 100%;
}
textarea.form-control[maxlength="1000"] {
  min-height: 10rem;
}
textarea.form-control[data-maxwords="60"], textarea.form-control[data-maxwords="150"] {
  min-height: 10rem;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
}
select.form-control::-ms-expand {
  display: none;
}

.light .form-control {
  color: #584d40;
  background-color: #fffffe;
  border-color: #ebe0d3;
}
.light .form-control:focus {
  color: #584d40;
  border-color: #28347e;
  box-shadow: 0 0 0 0.2rem rgba(40, 52, 126, 0.25);
}
.light .form-control::placeholder {
  color: #7d7265;
}
.light .iti {
  color: #584d40;
}

.dark .iti {
  color: #faf8f4;
}
.dark .grouped-inputs > label {
  color: #cfd3f0;
}
.dark .form-control {
  color: #faf8f4;
  background-color: #222c6b;
  border-color: #1f2963;
}
.dark .form-control:focus {
  background-color: #2e3c91;
  border-color: #3444a5;
  box-shadow: 0 0 0 0.2rem #3444a5;
}
.dark .form-control::placeholder {
  color: #faf8f4;
}

.brevo-form {
  max-width: 560px;
  text-align: left;
}
.brevo-form > label {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  display: none;
}
.brevo-form .form-control {
  margin-bottom: 1rem;
}
.brevo-form p {
  margin-bottom: 1.5rem;
  font-size: 1.2em;
}
.brevo-form .btn {
  margin-top: 1rem;
  width: 100%;
}
.brevo-form > div label {
  line-height: 2;
}
.brevo-form > div label a {
  color: #28347e;
}
.brevo-form > div label small {
  display: block;
}

.form-radio ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.form-radio ul li {
  display: inline-block;
  margin-right: 1rem;
  text-align: left;
}
.form-radio ul li:last-child {
  margin-right: 0;
}
.form-radio ul li input {
  display: inline-block;
}
.form-radio ul li label {
  cursor: pointer;
  display: inline-block;
}

.help-text {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86em;
}
.help-text span pre {
  display: inline;
  font-family: inherit;
}

.grouped-inputs {
  text-align: left;
}
.grouped-inputs.dependant {
  display: none;
}
.grouped-inputs.dependant.shown {
  display: block;
}
.grouped-inputs > label {
  text-align: left;
  display: inline-block;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.grouped-inputs > label:after {
  content: " ";
  display: block;
  clear: both;
  height: 2px;
  border-radius: 2px;
}
.grouped-inputs > label span {
  font-weight: 700;
  color: #e62640;
}
.grouped-inputs .check-options {
  position: relative;
  padding-left: 1.7rem;
  display: block;
  margin-bottom: 1rem;
}
.grouped-inputs .check-options label {
  line-height: 1.5;
}
.grouped-inputs .check-options.inline {
  display: inline-block;
  margin-right: 1rem;
}
.grouped-inputs .check-options input {
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.grouped-inputs.grouped-select.is-multiple > label {
  display: block;
  margin-bottom: 1rem;
}
.grouped-inputs.grouped-select.is-multiple input:checked + label {
  font-weight: 700;
}
.grouped-inputs.grouped-select.is-multiple .columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grouped-inputs.grouped-select.is-multiple .columns.columns-2 > div {
  width: 48%;
}
@media screen and (max-width: 1040px) {
  .grouped-inputs.grouped-select.is-multiple .columns.columns-2 > div {
    width: 100%;
  }
}
.grouped-inputs.is-disabled .form-control {
  opacity: 0.65;
}
.grouped-inputs.is-invalid .form-control {
  border-color: #e62640;
}
.grouped-inputs.is-invalid .form-control:focus {
  box-shadow: 0 0 0 0.2rem #eb5468;
}
.grouped-inputs.is-invalid.grouped-radio > label:after {
  background-color: #e62640;
}
.grouped-inputs.is-invalid.grouped-radio .form-radio ul li label {
  color: #e62640;
  font-weight: bold;
}
.grouped-inputs.is-invalid.grouped-select.is-multiple .check-options label {
  color: #e62640;
}
.grouped-inputs.is-invalid + .help-text {
  color: #e62640;
}

.form-check .form-check-label small {
  display: block;
}

#form {
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1040px) {
  #form {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
#form .alert-danger {
  text-align: left;
  margin-bottom: 3rem;
}
#form .poly {
  position: absolute;
  top: -35rem;
  left: -30rem;
  width: 60rem;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 1040px) {
  #form .poly {
    top: -9rem;
    right: -15rem;
    left: auto;
  }
}
@media screen and (max-width: 1040px) and (orientation: portrait) {
  #form .poly {
    top: -35rem;
    right: -25rem;
  }
}
#form div.parallel-info {
  margin-bottom: 0;
  text-align: left;
}
#form div.parallel-info .wp-block-heading {
  color: #ea546c;
  font-size: 2.1rem;
}
#form div.parallel-info a {
  color: #28347e;
  font-weight: 700;
}
#form div.parallel-info .content-group .alert.alert-warning {
  background-color: #28347e;
  color: #faf8f4;
  border-left: none;
  padding-left: 1.7rem;
  text-align: center;
}
#form div.parallel-info .content-group > * {
  margin-bottom: 1rem;
}
#form .alert {
  margin-bottom: 2rem;
}
#form h2.register-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding-bottom: 0rem;
}
@media screen and (max-width: 1040px) {
  #form h2.register-title {
    flex-direction: column;
  }
}
#form h2.register-title .text-primary {
  text-align: right;
  padding-right: 0;
  font-size: 2rem;
  margin-bottom: 2rem;
}
#form h2.register-title .navbar-brand {
  text-align: left;
  padding-left: 2rem;
}
@media screen and (max-width: 1040px) {
  #form h2.register-title .navbar-brand {
    width: 100%;
    padding-left: 0;
  }
}
#form h2.register-title .navbar-brand img {
  max-width: 320px;
  height: auto;
}
@media screen and (max-width: 1040px) {
  #form h2.register-title .navbar-brand img {
    max-width: 230px;
  }
}
#form h2.register-title .navbar-brand .date {
  font-size: 1.5rem;
  margin-left: 0;
  color: #ea546c;
  display: block;
  margin: 1rem 0;
}
@media screen and (max-width: 1040px) {
  #form h2.register-title .navbar-brand .date {
    font-size: 1.2rem;
  }
}
#form .overline {
  margin-bottom: 1.4rem;
  display: block;
}

body.page-identifier-register {
  background-color: #28347e;
}
body.page-identifier-register #form {
  color: #faf8f4;
  max-width: 820px;
}

body.page-identifier-parallel #form .overline {
  font-size: 160%;
  letter-spacing: 0;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: #28347e;
  display: block;
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-align: left;
  font-weight: 500;
}

ul.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 2rem 0;
  list-style: none;
  padding: 0;
}
ul.logos li {
  margin: 1rem 0;
}
@media screen and (max-width: 680px) {
  ul.logos li {
    margin: 0.25rem 0;
  }
}
ul.logos li img {
  width: auto;
  height: 80px;
}
@media screen and (min-width: 1540px) {
  ul.logos li img {
    height: 100px;
  }
}
@media screen and (max-width: 1390px) {
  ul.logos li img {
    height: 70px;
  }
}
@media screen and (max-width: 1040px) {
  ul.logos li img {
    height: 60px;
  }
}
@media screen and (max-width: 680px) {
  ul.logos li img {
    height: 50px;
  }
}
@media screen and (max-width: 680px) {
  ul.logos li img {
    height: 45px;
  }
}
ul.logos + .logos {
  margin-top: 3rem;
}
@media screen and (max-width: 680px) {
  ul.logos + .logos {
    margin-top: 2rem;
  }
}

body.forum-child-page #footer .footer-logos {
  display: none;
}

#footer {
  position: relative;
  z-index: 3;
  background-color: #28347e;
  color: #faf8f4;
  padding: 0;
  text-align: left;
  border-top: 1px solid #f5eadd;
  overflow: hidden;
}
#footer a {
  color: #faf8f4;
  text-decoration: none;
}
#footer a:hover {
  color: #ebe0d3;
}
#footer .brand {
  display: block;
}
#footer .brand img {
  width: 12rem;
  height: auto;
}
#footer > .container {
  padding-bottom: 3rem;
}
#footer .footer-logos {
  padding: 1rem 0;
  overflow: hidden;
  background-color: #fffffe;
}
#footer .footer-logos .caption {
  color: #7d7265;
  font-size: 0.86em;
  margin: 0;
  text-align: center;
  display: none;
}
#footer .footer-logos ul.logos {
  margin: 0;
  justify-content: center;
}
#footer .cols {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
@media screen and (max-width: 1040px) {
  #footer .cols {
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer .cols > div {
  display: flex;
}
@media screen and (max-width: 1040px) {
  #footer .cols > div {
    flex-direction: column;
  }
}
#footer .cols > div > div {
  padding-right: 6rem;
}
@media screen and (max-width: 1040px) {
  #footer .cols > div > div {
    display: flex;
    gap: 2rem;
  }
}
@media screen and (max-width: 680px) {
  #footer .cols > div > div {
    flex-direction: column;
    gap: 0;
  }
}
#footer .cols > div > div p {
  font-size: 0.86em;
}
#footer .cols > div > div > img {
  width: 165px;
  height: 70px;
}
@media screen and (max-width: 680px) {
  #footer .cols > div > div > img {
    width: 120px;
    height: 50px;
  }
}
#footer .cols > div > div > * {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
#footer .cols > div > div > *:last-child {
  margin-bottom: 0;
}
#footer .cols > div > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-right: 2rem;
}
@media screen and (max-width: 1040px) {
  #footer .cols > div > ul {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 680px) {
  #footer .cols > div > ul {
    flex-direction: column;
  }
}
#footer .cols > div > ul > li {
  line-height: 2.5rem;
}
@media screen and (max-width: 1040px) {
  #footer .cols > div > ul > li {
    margin-right: 1rem;
  }
}
#footer .cols > div > ul > li .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
#footer .cols > form {
  width: 40%;
}
@media screen and (min-width: 1390px) {
  #footer .cols > form {
    width: 35%;
  }
}
@media screen and (max-width: 1040px) {
  #footer .cols > form {
    width: 100%;
    max-width: 480px;
  }
}
#footer .cols > form h3 {
  margin-bottom: 0.5rem;
}
#footer .cols > form p {
  margin: 0;
  margin-bottom: 0.5rem;
  font-size: 0.86em;
}
#footer .cols > form .fields {
  position: relative;
  margin-top: 1.5rem;
}
#footer .cols > form .fields .form-control {
  height: 4.2rem;
}
@media screen and (max-width: 680px) {
  #footer .cols > form .fields .form-control {
    height: 3.1rem;
  }
}
#footer .cols > form .fields .btn {
  position: absolute;
  right: 0.33rem;
  top: 0.33rem;
  border-width: 2px;
  border-color: #faf8f4;
  font-size: 1.5rem;
  border-radius: 0.3rem !important;
  cursor: pointer;
}
#footer .cols > form .fields .btn:hover {
  background-color: #3444a5;
}
@media screen and (max-width: 680px) {
  #footer .cols > form .fields .btn {
    height: 2.5rem;
  }
}
#footer .colophon {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 2rem;
}
#footer .colophon p {
  margin: 0;
}
#footer .colophon p,
#footer .colophon li {
  font-size: 0.86em;
}
#footer .colophon ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
#footer .colophon ul li a {
  display: inline-block;
  padding-left: 0.5rem;
}
#footer .colophon ul li a i {
  font-size: 1.5rem;
}
#footer .colophon ul li a i.icon-x {
  font-size: 1.25rem;
}

body.page-identifier-register #footer .cols > form,
body.page-identifier-parallel #footer .cols > form {
  display: none;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(250, 248, 244, 0.8);
  z-index: 2000;
}
.modal.scrollable {
  overflow-y: auto;
}
.modal.hidden {
  display: none;
}
.modal.modal-warning .modal-dialog {
  color: #f49525;
}
.modal.modal-warning .modal-dialog .modal-header {
  background-color: rgba(244, 149, 37, 0.2);
}
.modal.modal-warning .modal-dialog .modal-header .btn-close {
  color: #f49525;
}
.modal.modal-warning .modal-dialog .modal-header .btn-close:hover {
  color: #f49525;
}
.modal.modal-warning .modal-dialog .modal-footer .btn {
  color: #fffffe;
  background-color: #f49525 !important;
  border-color: #f49525 !important;
}
.modal.modal-warning .modal-dialog .modal-footer .btn:not(:disabled):hover {
  background-color: #c36e0a !important;
}
.modal.modal-warning .modal-dialog .modal-footer .btn:not(:disabled):focus, .modal.modal-warning .modal-dialog .modal-footer .btn:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(244, 149, 37, 0.5) !important;
}
.modal.modal-success .modal-dialog {
  color: #80ba27;
}
.modal.modal-success .modal-dialog .modal-header {
  background-color: rgba(128, 186, 39, 0.2);
}
.modal.modal-success .modal-dialog .modal-header .btn-close {
  color: #80ba27;
}
.modal.modal-success .modal-dialog .modal-header .btn-close:hover {
  color: #80ba27;
}
.modal.modal-success .modal-dialog .modal-footer .btn {
  color: #fffffe;
  background-color: #80ba27 !important;
  border-color: #80ba27 !important;
}
.modal.modal-success .modal-dialog .modal-footer .btn:not(:disabled):hover {
  background-color: #547b1a !important;
}
.modal.modal-success .modal-dialog .modal-footer .btn:not(:disabled):focus, .modal.modal-success .modal-dialog .modal-footer .btn:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(128, 186, 39, 0.5) !important;
}
.modal.modal-danger .modal-dialog {
  color: #e62640;
}
.modal.modal-danger .modal-dialog .modal-header {
  background-color: rgba(230, 38, 64, 0.2);
}
.modal.modal-danger .modal-dialog .modal-header .btn-close {
  color: #e62640;
}
.modal.modal-danger .modal-dialog .modal-header .btn-close:hover {
  color: #e62640;
}
.modal.modal-danger .modal-dialog .modal-footer .btn {
  color: #fffffe;
  background-color: #e62640 !important;
  border-color: #e62640 !important;
}
.modal.modal-danger .modal-dialog .modal-footer .btn:not(:disabled):hover {
  background-color: #ac1428 !important;
}
.modal.modal-danger .modal-dialog .modal-footer .btn:not(:disabled):focus, .modal.modal-danger .modal-dialog .modal-footer .btn:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 38, 64, 0.5) !important;
}
.modal.modal-info .modal-dialog {
  color: #50a4a9;
}
.modal.modal-info .modal-dialog .modal-header {
  background-color: rgba(80, 164, 169, 0.2);
}
.modal.modal-info .modal-dialog .modal-header .btn-close {
  color: #50a4a9;
}
.modal.modal-info .modal-dialog .modal-header .btn-close:hover {
  color: #50a4a9;
}
.modal.modal-info .modal-dialog .modal-footer .btn {
  color: #fffffe;
  background-color: #50a4a9 !important;
  border-color: #50a4a9 !important;
}
.modal.modal-info .modal-dialog .modal-footer .btn:not(:disabled):hover {
  background-color: #377275 !important;
}
.modal.modal-info .modal-dialog .modal-footer .btn:not(:disabled):focus, .modal.modal-info .modal-dialog .modal-footer .btn:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(80, 164, 169, 0.5) !important;
}
.modal .modal-dialog {
  position: static;
  background-color: #faf8f4;
  border-radius: 0.5rem;
  width: 96%;
  max-width: 480px;
  margin: 2rem auto;
  box-shadow: 0 1rem 4rem rgba(88, 77, 64, 0.4);
}
.modal .modal-dialog.modal-dialog-large {
  max-width: 960px;
}
.modal .modal-dialog.modal-dialog-medium {
  max-width: 720px;
}
.modal .modal-dialog.modal-dialog-large .modal-body > p,
.modal .modal-dialog.modal-dialog-large .modal-body li, .modal .modal-dialog.modal-dialog-medium .modal-body > p,
.modal .modal-dialog.modal-dialog-medium .modal-body li {
  font-size: 0.86em;
}
.modal .modal-dialog .modal-header {
  padding: 1.5rem;
  position: relative;
}
.modal .modal-dialog .modal-header .modal-title {
  font-size: 1.4rem;
}
.modal .modal-dialog .modal-header .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.15rem;
  font-size: 1rem;
  border: none;
  background: transparent;
  display: block;
  width: 2rem;
  height: 2rem;
  padding: 0;
  cursor: pointer;
}
.modal .modal-dialog .modal-header .btn-close:hover, .modal .modal-dialog .modal-header .btn-close:focus, .modal .modal-dialog .modal-header .btn-close:active {
  transform: scale(1.2);
}
.modal .modal-dialog .modal-body {
  padding: 1.5rem;
  text-align: left;
}
.modal .modal-dialog .modal-body > * {
  margin-top: 0;
  margin-bottom: 1rem;
}
.modal .modal-dialog .modal-body > *:last-child {
  margin-bottom: 0;
}
.modal .modal-dialog .modal-body > p,
.modal .modal-dialog .modal-body li {
  font-size: 1.2em;
}
.modal .modal-dialog .modal-footer .btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.2em;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.alert {
  width: 100%;
  padding: 1rem;
  border-radius: 0.25rem;
  border-left: 5px solid transparent;
  font-size: 1.2em;
}
.alert > * {
  margin-top: 0;
  margin-bottom: 0;
}
.alert.alert-warning {
  background-color: white;
  color: #f49525;
  border-left-color: #f49525;
}
.alert.alert-success {
  background-color: #e7f5d1;
  color: #80ba27;
  border-left-color: #80ba27;
}
.alert.alert-danger {
  background-color: #fef4f5;
  color: #e62640;
  border-left-color: #e62640;
}
.alert.alert-info {
  background-color: #eaf4f5;
  color: #50a4a9;
  border-left-color: #50a4a9;
}
.alert .alert-content {
  padding: 1rem;
  text-align: center;
}

ul.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
  margin: 2rem 0 0 0;
  padding: 0;
}
ul.pagination li {
  margin: 0 0.15rem;
}
ul.pagination li a {
  text-decoration: none;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
}
@media screen and (max-width: 1040px) {
  ul.pagination li a {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }
}
ul.pagination li a:hover, ul.pagination li a:focus {
  color: #faf8f4 !important;
}
ul.pagination li.active a {
  color: #faf8f4;
}

.excerpt {
  text-align: left;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1040px) {
  .excerpt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 720px;
  }
}
@media screen and (max-width: 1040px) {
  .excerpt > .thumbnail-wrapper {
    width: 30%;
    margin: 0 !important;
  }
}
@media screen and (max-width: 1040px) {
  .excerpt > div {
    width: 70%;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .excerpt > div {
    padding-left: 1rem;
  }
}
.excerpt h2 {
  font-size: 1em !important;
  line-height: 1.4;
  text-transform: none;
}
@media screen and (max-width: 1040px) {
  .excerpt h2 {
    font-size: 0.86em !important;
    line-height: 1.6em !important;
    max-height: 4.8em;
    overflow: hidden;
  }
}
.excerpt > .thumbnail-wrapper {
  margin-bottom: 1rem;
}
.excerpt > div.text-wrapper > * {
  margin-top: 0;
  margin-bottom: 1rem;
  display: block;
}
@media screen and (max-width: 1040px) {
  .excerpt > div.text-wrapper > * {
    margin-bottom: 0.5rem;
  }
}
.excerpt > div.text-wrapper > *:last-child {
  margin-bottom: 0;
}
.excerpt > div.text-wrapper > p {
  font-size: 0.86em;
  opacity: 0.6;
}
.excerpt.excerpt-resource {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fffffe;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.excerpt.excerpt-resource > .thumbnail-wrapper {
  width: 20%;
  margin-bottom: 0;
}
.excerpt.excerpt-resource > .thumbnail-wrapper .shape-img {
  width: 100%;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-top: 134%;
}
.excerpt.excerpt-resource > .text-wrapper {
  width: 80%;
  padding: 2rem;
}
.excerpt.excerpt-resource > .text-wrapper > * {
  margin-bottom: 0.5rem;
}
.excerpt.excerpt-resource > .text-wrapper > h2 {
  font-size: 1.2em !important;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  text-transform: none;
  line-height: 1.4;
}
.excerpt.excerpt-resource.excerpt-featured > .thumbnail-wrapper {
  width: calc(50% - 2rem);
}
.excerpt.excerpt-resource.excerpt-featured > .text-wrapper {
  width: 50%;
}
.excerpt.excerpt-resource.excerpt-featured > .text-wrapper > h2 {
  font-size: 1.8rem !important;
}

body.OLD_HOME #home {
  height: 100vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1840px) and (max-height: 810px) {
  body.OLD_HOME #home {
    height: auto;
    padding-top: 13rem;
  }
}
@media screen and (min-width: 1540px) and (max-height: 814px) {
  body.OLD_HOME #home {
    height: auto;
    padding-top: 12rem;
  }
}
@media screen and (min-width: 1390px) and (max-height: 720px) {
  body.OLD_HOME #home {
    height: auto;
    padding-top: 13rem;
  }
}
@media screen and (min-width: 1040px) and (max-height: 590px) {
  body.OLD_HOME #home {
    height: auto;
    padding-top: 8rem;
  }
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #home {
    height: auto;
  }
}
body.OLD_HOME #home > .container {
  height: 100vh;
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #home > .container {
    height: auto;
  }
}
@media screen and (min-width: 1540px) and (max-height: 814px) {
  body.OLD_HOME #home > .container {
    height: auto;
  }
}
@media screen and (min-width: 1840px) and (max-height: 810px) {
  body.OLD_HOME #home > .container {
    height: auto;
  }
}
@media screen and (min-width: 1390px) and (max-height: 720px) {
  body.OLD_HOME #home > .container {
    height: auto;
  }
}
@media screen and (min-width: 1040px) and (max-height: 590px) {
  body.OLD_HOME #home > .container {
    height: auto;
  }
}
body.OLD_HOME #home::before, body.OLD_HOME #home::after {
  content: " ";
  position: absolute;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
body.OLD_HOME #home::before {
  top: 23%;
  left: 0;
  background-image: url("../img/home-splash-left.gif");
  z-index: -2;
  width: 11%;
  padding-top: 28%;
}
body.OLD_HOME #home::after {
  background-image: url("../img/home-splash-right.gif");
  bottom: 0;
  right: -6%;
  width: 28.7%;
  padding-top: 55%;
}
body.OLD_HOME #home .poly {
  position: absolute;
  bottom: 0;
  left: -11%;
  width: 42.5%;
  padding-top: 27.7%;
  z-index: -1;
  background: url("../img/home-splash-poly.gif") no-repeat center center;
  background-size: 100% auto;
  z-index: 2;
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #home .poly {
    left: 0;
  }
}
body.OLD_HOME #home > .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}
body.OLD_HOME #home > .container > div {
  text-align: left;
  width: 67%;
  margin-left: 33%;
  padding-bottom: 6rem;
  color: #ea546c;
}
@media screen and (min-width: 1040px) {
  body.OLD_HOME #home > .container > div {
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #home > .container > div {
    width: 100%;
    margin-left: 0;
    padding-top: 4rem;
    padding-bottom: 300px;
    text-align: center;
  }
}
@media screen and (max-width: 680px) {
  body.OLD_HOME #home > .container > div {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #home > .container > div .btn-group {
    justify-content: center;
  }
}
body.OLD_HOME #home #poly {
  position: absolute;
  bottom: -56%;
  left: -10%;
  width: 65%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #home #poly {
    left: 50%;
    margin-left: -33%;
  }
}
body.OLD_HOME #vi-forum {
  overflow: hidden;
  background: #ea546c;
  color: #faf8f4;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}
body.OLD_HOME #vi-forum::after {
  content: " ";
  position: absolute;
  top: 0;
  right: -6.5%;
  width: 123.7%;
  height: 100%;
  background-size: 100% auto;
  z-index: 1;
}
body.OLD_HOME #vi-forum .container {
  position: relative;
  z-index: 3;
}
body.OLD_HOME #speakers {
  padding-top: 6rem;
}
body.OLD_HOME video {
  width: 100%;
}
body.OLD_HOME section.programme {
  padding-top: 2rem;
}
body.OLD_HOME #about {
  padding: 6rem 0;
  color: #f49525;
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #about {
    padding: 2rem 0;
  }
}
body.OLD_HOME #about .shape-vertical {
  background: url("../img/home-the-wfled.gif") no-repeat center center;
  background-color: #f49525;
  background-size: 100% auto;
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #about .shape-vertical {
    display: none;
  }
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #about .content-group {
    margin-top: 2rem;
  }
}
body.OLD_HOME #what-is-led {
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #80ba27;
  position: relative;
}
body.OLD_HOME #what-is-led::before {
  content: " ";
  position: absolute;
  top: -26%;
  right: 0;
  width: 28%;
  padding-top: 25%;
  background: url("../img/home-what-is-led.gif") no-repeat center center;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (max-width: 1040px) {
  body.OLD_HOME #what-is-led::before {
    display: none;
  }
}
body.OLD_HOME #what-is-led .container {
  position: relative;
  z-index: 3;
}
body.OLD_HOME #news {
  padding-top: 0;
  padding-bottom: 4rem;
  color: #50a4a9;
  position: relative;
}
body.OLD_HOME #news::before {
  content: " ";
  position: absolute;
  top: -22%;
  left: 0;
  width: 100%;
  padding-top: 18%;
  background: url("../img/home-news-events.gif") no-repeat center center;
  background-size: 100% auto;
  z-index: 1;
}
body.OLD_HOME #news > .container {
  padding-top: 6%;
  position: relative;
  z-index: 3;
}

body.redirect-page #page-header,
body.redirect-page .page-content {
  display: none;
}
body.redirect-page #loading {
  padding: 3rem 0;
  display: flex;
}

body.loading {
  overflow: hidden;
}
body.loading #loading {
  display: flex;
}

#loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(40, 52, 126, 0.8);
  align-items: center;
  justify-content: center;
}
#loading .spinner-border {
  border-color: white !important;
}

body #the-wfled p,
body #the-wfled li,
body #what-is-led p,
body #what-is-led li,
body #vi-foro p,
body #vi-foro li {
  font-size: 1.2em;
}
@media screen and (max-width: 680px) {
  body #the-wfled p,
body #the-wfled li,
body #what-is-led p,
body #what-is-led li,
body #vi-foro p,
body #vi-foro li {
    font-size: 1em;
  }
}
body.page-identifier-vi-foro {
  padding-top: 0;
}
body.page-identifier-vi-foro #toolbar {
  background-color: transparent !important;
}
body.page-identifier-vi-foro #toolbar .container .brand {
  visibility: hidden;
}
body.page-identifier-vi-foro #navbar .nav-led > li.item-link > a.active:after {
  background-color: #faf8f4;
}
body.page-identifier-vi-foro #navbar > .container > a img {
  max-width: 1rem;
}
body.page-identifier-vi-foro #navbar .nav-led > .item-btn .btn-link {
  color: #faf8f4;
}
body.page-identifier-vi-foro #navbar .nav-led > .item-btn .btn-blue {
  color: #faf8f4;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
}
body.page-identifier-vi-foro #navbar .nav-led > .item-btn .btn-blue:not(:disabled):hover {
  background-color: #d71a39 !important;
}
body.page-identifier-vi-foro #navbar .nav-led > .item-btn .btn-blue:not(:disabled):focus, body.page-identifier-vi-foro #navbar .nav-led > .item-btn .btn-blue:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}
body.page-identifier-vi-foro #navbar .brand {
  visibility: hidden;
}
body.page-identifier-vi-foro #navbar .nav-led > li > a {
  color: #faf8f4;
}
body.page-identifier-vi-foro.headroom--not-top #toolbar {
  background-color: #28347e !important;
}
body.page-identifier-vi-foro.headroom--not-top #toolbar .container .brand {
  visibility: visible;
}
body #the-wfled {
  padding-bottom: 6rem;
  color: #f49525;
  background-image: url("../img/the-wfled-poly.gif");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 50% auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  body #the-wfled {
    background: transparent;
    padding-bottom: 2rem;
  }
}
body #the-wfled::before {
  content: " ";
  position: absolute;
  top: 2%;
  right: -8%;
  width: 41%;
  padding-top: 50%;
  background: url("../img/the-wfled-shapes.gif") no-repeat center center;
  background-size: 100% auto;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  body #the-wfled::before {
    width: 71%;
    padding-top: 86%;
    right: -39%;
    top: -3%;
  }
}
body #the-wfled .intro {
  position: relative;
  z-index: 3;
  padding-top: 28%;
}
body #the-wfled .intro > .container {
  text-align: left;
  padding-right: 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
@media screen and (max-width: 680px) {
  body #the-wfled .intro > .container {
    padding-right: 1rem;
  }
}
body #the-wfled .results {
  background-color: #f49525;
  color: #faf8f4;
  margin-top: 6rem;
  padding: 6rem 0;
  text-align: left;
  background-image: url(../img/the-wfled-results.gif);
  background-size: 20% auto;
  background-repeat: no-repeat;
  background-position: top right;
}
@media screen and (max-width: 680px) {
  body #the-wfled .results {
    background-size: 40% auto;
    background-position: 100% -38%;
    padding: 3rem 0;
    margin-top: 3rem;
  }
}
body #the-wfled .results > .container {
  padding-right: 30%;
}
@media screen and (max-width: 680px) {
  body #the-wfled .results > .container {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 680px) {
  body #the-wfled .results > .container > header {
    padding-right: 40%;
  }
}
body #the-wfled .results ol.numbered-list li:before {
  background: #faf8f4;
  color: #f49525;
}
body #the-wfled .coalition,
body #the-wfled .co-creation,
body #the-wfled .committee,
body #the-wfled .secretariat {
  padding-top: 6rem;
}
@media screen and (max-width: 680px) {
  body #the-wfled .coalition,
body #the-wfled .co-creation,
body #the-wfled .committee,
body #the-wfled .secretariat {
    padding-top: 3rem;
  }
}
body #what-is-led {
  color: #80ba27;
  padding-bottom: 6rem;
  background-image: url(../img/what-is-led-poly.gif);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 36% auto;
  position: relative;
}
@media screen and (max-width: 680px) {
  body #what-is-led {
    background: transparent;
    padding-bottom: 3rem;
  }
}
body #what-is-led::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  padding-top: 14.8%;
  background: url("../img/what-is-led-shapes.gif") no-repeat top left;
  background-size: 100% auto;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  body #what-is-led::before {
    width: 100%;
    padding-top: 30%;
  }
}
body #what-is-led > section {
  position: relative;
  z-index: 3;
  padding-top: 6rem;
  text-align: left;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section {
    padding-top: 3rem;
  }
}
body #what-is-led > section.intro {
  padding-top: 20%;
  text-align: left;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section.intro {
    padding-top: 30%;
  }
}
body #what-is-led > section.intro > .container > div {
  padding-right: 40%;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section.intro > .container > div {
    padding-right: 0;
  }
}
body #what-is-led > section:nth-child(3) {
  background-color: #80ba27;
  color: #faf8f4;
  margin-top: 6rem;
  padding: 6rem 0;
  position: relative;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section:nth-child(3) {
    margin-top: 3rem;
    padding: 3rem 0;
  }
}
body #what-is-led > section:nth-child(3):before, body #what-is-led > section:nth-child(3):after {
  content: " ";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  z-index: 2;
  display: block;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section:nth-child(3):before, body #what-is-led > section:nth-child(3):after {
    width: 14%;
  }
}
body #what-is-led > section:nth-child(3):before {
  left: -3%;
  background-image: url("../img/what-is-led-green-left.gif");
  background-position: left center;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section:nth-child(3):before {
    background-position: right center;
  }
}
body #what-is-led > section:nth-child(3):after {
  right: -3%;
  background-image: url("../img/what-is-led-green-right.gif");
  background-position: right center;
}
@media screen and (max-width: 680px) {
  body #what-is-led > section:nth-child(3):after {
    background-position: left center;
  }
}
body #what-is-led > section:nth-child(3) > .container {
  position: relative;
  z-index: 3;
}
body #what-is-led > section:nth-child(3) > .container > div {
  width: 74%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1840px) {
  body #what-is-led > section:nth-child(3) > .container > div {
    width: 100%;
  }
}
body #news-archive {
  color: #50a4a9;
  padding-bottom: 2rem;
}
body #news-archive > header {
  background-color: #50a4a9;
  text-align: left;
  padding: 2rem 0;
  color: #faf8f4;
  margin-bottom: 3rem;
}
body #news-archive ul.pagination li a {
  border-color: #50a4a9;
}
body #news-archive ul.pagination li a:hover, body #news-archive ul.pagination li a:focus {
  background-color: #50a4a9;
}
body #news-archive ul.pagination li:not(.active) a {
  color: #50a4a9;
}
body #news-archive ul.pagination li.active a {
  background-color: #50a4a9;
}
body #resources {
  padding: 0 0 4rem;
}
body #resources ul.pagination li:not(.active) a {
  color: #b83c68;
}
body #resources ul.pagination li a {
  border-color: #b83c68;
}
body #resources ul.pagination li a:hover, body #resources ul.pagination li a:focus {
  background-color: #b83c68;
}
body #resources ul.pagination li.active a {
  background-color: #b83c68;
}
body #vi-foro {
  overflow-x: hidden;
}
body #vi-foro p.caption {
  font-size: 0.86em;
  color: #7d7265;
}
body #vi-foro > .collapse {
  display: none;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ea546c;
  color: #faf8f4;
  background-image: url(../img/vi-foro-read-more.gif);
  background-size: 25% auto;
  background-repeat: no-repeat;
  background-position: center right;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1040px) {
  body #vi-foro > .collapse {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-image: none;
  }
}
body #vi-foro > .collapse.show {
  display: block;
}
body #vi-foro > .collapse section {
  padding-right: 28%;
}
@media screen and (max-width: 1040px) {
  body #vi-foro > .collapse section {
    padding-right: 0;
  }
}
body #vi-foro > .collapse section.about {
  text-align: left;
}
body #vi-foro > .collapse section.goals {
  padding-top: 5rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  body #vi-foro > .collapse section.goals {
    padding-top: 2rem;
  }
}
body #vi-foro > .collapse section.goals .wp-block-heading {
  text-align: left;
}
@media screen and (max-width: 680px) {
  body #vi-foro > .collapse section.goals .wp-block-heading {
    text-align: center;
  }
}
body #vi-foro > .collapse section.goals a {
  text-align: left;
  font-size: 1.2em;
  display: block;
  padding-right: 2rem;
  text-decoration: none;
  position: relative;
  padding-left: 45px;
}
body #vi-foro > .collapse section.goals a i {
  font-size: 35px;
  position: absolute;
  top: -5px;
  left: -10px;
}
body #vi-foro > .collapse section.goals a span {
  display: block;
}
body #vi-foro > section {
  text-align: left;
}
body #vi-foro > section.intro {
  background-color: #28347e;
  color: #faf8f4;
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  background-image: url(../img/vi-foro-intro.gif);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center right;
}
@media screen and (min-width: 1540px) {
  body #vi-foro > section.intro {
    padding: 8rem 0 6rem;
  }
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.intro {
    background-image: none;
    padding: 5rem 0 3rem;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.intro {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}
body #vi-foro > section.intro > .container .row-intro {
  align-items: center;
  margin-bottom: 0;
}
body #vi-foro > section.intro > .container .row-intro > * {
  padding-bottom: 0;
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.intro > .container .row-intro > *:nth-child(2) {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.intro > .container .row-intro > *:nth-child(2) {
    padding-top: 1rem;
  }
}
body #vi-foro > section.intro > .container .row-intro > *:nth-child(2) p {
  margin-top: 0;
}
body #vi-foro > section.intro > .container img {
  width: 90%;
  height: auto;
  max-width: 440px;
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.intro > .container img {
    width: 50%;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.intro > .container img {
    width: 70%;
  }
}
body #vi-foro > section.intro > .container .video-link {
  margin-top: 1rem;
}
body #vi-foro > section.intro > .container video {
  width: 100%;
  height: auto;
}
body #vi-foro > section.intro > .container .btn-group .btn {
  min-width: 200px;
}
@media screen and (max-width: 1390px) {
  body #vi-foro > section.intro > .container .btn-group .btn {
    min-width: 180px;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.intro > .container .btn-group .btn {
    min-width: 160px;
  }
}
body #vi-foro > section.concept {
  color: #28347e;
  position: relative;
  padding: 6rem 0 0;
  z-index: 1;
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.concept:before {
    content: " ";
    display: block;
    width: 100%;
    padding-top: 25%;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.concept {
    padding: 3rem 0;
  }
}
body #vi-foro > section.concept .poly {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: -15%;
  width: 48%;
  padding-top: 42%;
  z-index: 1;
  background: url("../img/circle-dark.svg") no-repeat center center;
  background-size: 100% auto;
  z-index: 2;
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.concept .poly {
    width: 120%;
    padding-top: 112%;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-101%);
    top: 50%;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.concept .poly {
    transform: translateX(-50%) translateY(-108%);
  }
}
@media screen and (max-width: 440px) {
  body #vi-foro > section.concept .poly {
    transform: translateX(-50%) translateY(-132%);
  }
}
body #vi-foro > section.concept .wp-block-heading {
  line-height: 1.2;
}
body #vi-foro > section.concept .wp-block-button__link {
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
  border-radius: 5rem;
  vertical-align: middle;
  color: #faf8f4;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
  padding: 0 2.6rem;
  height: 3.5rem;
  line-height: 3.3rem;
  font-size: 1.2em;
}
body #vi-foro > section.concept .wp-block-button__link:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
body #vi-foro > section.concept .wp-block-button__link.btn-icon {
  width: 3.5rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.concept .wp-block-button__link.btn-icon {
    width: 2.4rem;
  }
}
body #vi-foro > section.concept .wp-block-button__link.btn-icon > i {
  font-size: 1.5rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.concept .wp-block-button__link.btn-icon > i {
    font-size: 1.2rem;
  }
}
body #vi-foro > section.concept .wp-block-button__link.btn-icon > i:before {
  height: 3.5rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.concept .wp-block-button__link.btn-icon > i:before {
    height: 2.4rem;
    line-height: 2.2rem;
  }
}
body #vi-foro > section.concept .wp-block-button__link.btn-sm.btn-icon {
  width: 2.5rem;
}
body #vi-foro > section.concept .wp-block-button__link.btn-sm.btn-icon > i {
  font-size: 1.2rem;
}
body #vi-foro > section.concept .wp-block-button__link.btn-sm.btn-icon > i:before {
  height: 2.5rem;
  line-height: 2.5rem;
}
body #vi-foro > section.concept .wp-block-button__link:not(:disabled):hover {
  background-color: #d71a39 !important;
}
body #vi-foro > section.concept .wp-block-button__link:not(:disabled):focus, body #vi-foro > section.concept .wp-block-button__link:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}
body #vi-foro > section.concept .btn-group {
  margin-top: 2rem;
}
body #vi-foro > section.speakers {
  padding-top: 6rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.speakers {
    padding-top: 2rem;
  }
}
body #vi-foro > section.programme {
  padding: 2rem 0 6rem 0;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.programme {
    padding: 2rem 0;
  }
}
body #vi-foro > section.parallel {
  color: #ea546c;
  padding-top: 6rem;
  padding-bottom: 6rem;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
body #vi-foro > section.parallel:before {
  content: " ";
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  left: 0;
  width: 31%;
  padding-top: 41%;
  background: url("../img/vi-foro-shape_2.gif") no-repeat top right;
  background-size: 100% auto;
  z-index: 2;
}
@media screen and (min-width: 1540px) {
  body #vi-foro > section.parallel:before {
    width: 28%;
  }
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.parallel:before {
    width: 45%;
    padding-top: 56%;
    left: -15%;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel:before {
    display: none;
  }
}
@media screen and (max-width: 1040px) {
  body #vi-foro > section.parallel .row {
    padding-left: 33%;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel .row {
    padding-left: 0;
  }
}
body #vi-foro > section.parallel .wp-block-heading strong {
  font-weight: inherit;
}
body #vi-foro > section.parallel .alert.alert-warning {
  text-align: center;
  background-color: rgba(234, 84, 108, 0.15);
  color: #ea546c;
  border-left: none;
}
body #vi-foro > section.parallel .btn-group {
  margin-top: 2rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel .btn-group {
    margin-top: 1rem;
  }
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link {
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
  border-radius: 5rem;
  vertical-align: middle;
  color: #faf8f4;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
  padding: 0 2.6rem;
  height: 3.5rem;
  line-height: 3.3rem;
  font-size: 1.2em;
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-icon {
  width: 3.5rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-icon {
    width: 2.4rem;
  }
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-icon > i {
  font-size: 1.5rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-icon > i {
    font-size: 1.2rem;
  }
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-icon > i:before {
  height: 3.5rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-icon > i:before {
    height: 2.4rem;
    line-height: 2.2rem;
  }
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-sm.btn-icon {
  width: 2.5rem;
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-sm.btn-icon > i {
  font-size: 1.2rem;
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link.btn-sm.btn-icon > i:before {
  height: 2.5rem;
  line-height: 2.5rem;
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link:not(:disabled):hover {
  background-color: #d71a39 !important;
}
body #vi-foro > section.parallel .btn-group .wp-block-button__link:not(:disabled):focus, body #vi-foro > section.parallel .btn-group .wp-block-button__link:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}
body #vi-foro > section.roadmap {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.roadmap {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}
body #vi-foro > section.roadmap > .container {
  color: #ea546c;
  margin-bottom: 4rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.roadmap > .container .wp-block-heading {
    text-align: center;
  }
}
body #vi-foro > section.roadmap > .container .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.roadmap > .container .info {
    flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.roadmap > .container .info > p {
    margin-bottom: 1.5rem;
  }
}
body #vi-foro > section.roadmap > .container .info > div span {
  display: inline-block;
  padding-right: 1rem;
}
body #vi-foro > section.roadmap > .container .info > div span svg {
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.5rem;
}
body #vi-foro > section.roadmap > .container .info > div span.pink {
  color: #ea546c;
}
body #vi-foro > section.roadmap > .container .info > div span.teal {
  color: #50a4a9;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.roadmap > .roadmap {
    width: 100%;
    overflow-x: auto;
  }
}
body #vi-foro > section.roadmap > .roadmap img {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.roadmap > .roadmap img {
    max-width: none;
    width: 200%;
    max-width: 200%;
  }
}
body #vi-foro > section.practical-information {
  padding: 4rem 0;
  background-color: #50a4a9;
  color: #faf8f4;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.practical-information {
    padding: 2rem 0;
  }
}
body #vi-foro > section.practical-information .content-group {
  max-width: 800px;
  text-align: center;
}
body #vi-foro > section.practical-information .btn-group {
  justify-content: center;
}
body #vi-foro > section.practical-information .wp-block-button__link {
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
  border-radius: 5rem;
  vertical-align: middle;
  color: #faf8f4;
  background-color: transparent;
  border-color: #faf8f4;
  padding: 0 2.6rem;
  height: 3.5rem;
  line-height: 3.3rem;
  font-size: 1.2em;
}
body #vi-foro > section.practical-information .wp-block-button__link:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
body #vi-foro > section.practical-information .wp-block-button__link.btn-icon {
  width: 3.5rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.practical-information .wp-block-button__link.btn-icon {
    width: 2.4rem;
  }
}
body #vi-foro > section.practical-information .wp-block-button__link.btn-icon > i {
  font-size: 1.5rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.practical-information .wp-block-button__link.btn-icon > i {
    font-size: 1.2rem;
  }
}
body #vi-foro > section.practical-information .wp-block-button__link.btn-icon > i:before {
  height: 3.5rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 680px) {
  body #vi-foro > section.practical-information .wp-block-button__link.btn-icon > i:before {
    height: 2.4rem;
    line-height: 2.2rem;
  }
}
body #vi-foro > section.practical-information .wp-block-button__link.btn-sm.btn-icon {
  width: 2.5rem;
}
body #vi-foro > section.practical-information .wp-block-button__link.btn-sm.btn-icon > i {
  font-size: 1.2rem;
}
body #vi-foro > section.practical-information .wp-block-button__link.btn-sm.btn-icon > i:before {
  height: 2.5rem;
  line-height: 2.5rem;
}
body #vi-foro > section.practical-information .wp-block-button__link:hover {
  border-color: rgba(250, 248, 244, 0.5);
}
body #vi-foro > section.practical-information .wp-block-button__link:focus, body #vi-foro > section.practical-information .wp-block-button__link:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(250, 248, 244, 0.5);
}
body.forum-child-page #page-header {
  background-color: #ea546c;
  color: #faf8f4;
}
body.forum-child-page #toolbar {
  background-color: #28347e;
  box-shadow: none;
}
body.forum-child-page #toolbar .nav-led > li.item-link > a,
body.forum-child-page #toolbar .nav-led > li.item-lang > a,
body.forum-child-page #toolbar .nav-led > li.item-btn > a.btn-link,
body.forum-child-page #toolbar #navbar .nav-led > li.item-link > a {
  color: #faf8f4;
}
body.forum-child-page #toolbar .nav-led > li.item-link > a.active:after {
  background-color: #faf8f4;
}
body.forum-child-page #toolbar .btn-blue {
  color: #faf8f4;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
}
body.forum-child-page #toolbar .btn-blue:not(:disabled):hover {
  background-color: #d71a39 !important;
}
body.forum-child-page #toolbar .btn-blue:not(:disabled):focus, body.forum-child-page #toolbar .btn-blue:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}

#page-header {
  text-align: left;
  background-color: #28347e;
  padding: 2rem 0;
}
#page-header a {
  font-size: 1.3rem;
  color: #faf8f4;
  text-decoration: none;
}
#page-header .poly {
  display: none;
}
#page-header .h3 {
  font-weight: 500;
}

.video-link {
  position: relative;
  display: block;
}
.video-link > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #faf8f4;
}

body.page-identifier-subscriber #page-header {
  color: #faf8f4;
}
body.page-identifier-subscriber #footer .cols > form {
  display: none;
}
body.page-identifier-subscriber .page-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-identifier-register #footer .cols > form {
  display: none;
}

.vi-forum-logos {
  background-color: #fffffe;
  padding: 3rem 1rem;
  border-top: 1px solid #f5eadd;
}
@media screen and (max-width: 680px) {
  .vi-forum-logos {
    padding: 1rem;
  }
}
.vi-forum-logos p.caption {
  font-size: 0.86em;
  color: #7d7265;
  text-align: center !important;
}
.vi-forum-logos ul.logos {
  justify-content: center;
}

.regular-page #page-header {
  color: #faf8f4;
}
.regular-page .page-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: left;
}
@media screen and (max-width: 680px) {
  .regular-page .page-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.regular-page .page-content h4,
.regular-page .page-content h5 {
  color: #28347e;
}

.private-element {
  display: none !important;
}

body.role-administrator .private-element,
body.role-editor .private-element {
  display: block !important;
}

body.search #page-header {
  padding: 0;
  overflow: hidden;
}
body.search #page-header h1 {
  display: none;
}
body.search form.search-form .search-field {
  border: none;
}
body.search form.search-form .search-submit {
  color: #faf8f4;
  background-color: #ea546c !important;
  border-color: #ea546c !important;
}
body.search form.search-form .search-submit:not(:disabled):hover {
  background-color: #d71a39 !important;
}
body.search form.search-form .search-submit:not(:disabled):focus, body.search form.search-form .search-submit:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 84, 108, 0.5) !important;
}
body.search p.sorry {
  color: #7d7265;
  font-size: 1.2em;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

body.error404 #page-header {
  text-align: center;
  background-color: #faf8f4;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
body.error404 #page-header .container {
  position: relative;
  z-index: 2;
}
body.error404 #page-header h1 {
  color: #28347e;
}
body.error404 #page-header .poly {
  position: absolute;
  z-index: 1;
  width: 50%;
  padding-top: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  display: block;
}

body.error404 #page-header {
  padding-bottom: 20%;
}

form.search-form {
  max-width: 780px;
  margin: 3rem auto;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media screen and (max-width: 1040px) {
  form.search-form {
    max-width: 600px;
  }
}
@media screen and (max-width: 680px) {
  form.search-form {
    flex-direction: column;
    margin: 1rem auto;
  }
}
form.search-form > * {
  flex: 1;
}
@media screen and (max-width: 680px) {
  form.search-form > * {
    flex: 0 0 100%;
    width: 100%;
  }
}
form.search-form .search-field {
  display: block;
  width: 100%;
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0 1rem;
  height: 3.5rem;
  line-height: 3.2rem;
  font-size: 1.2em;
  color: #584d40;
  background-color: #fffffe;
  border-color: #ebe0d3;
  border-radius: 5rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
form.search-form .search-field:focus {
  outline: 0;
}
form.search-form .search-field:disabled, form.search-form .search-field.is-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
form.search-form .search-field option {
  color: black;
}
form.search-form .search-field:focus {
  color: #584d40;
  border-color: #28347e;
  box-shadow: 0 0 0 0.2rem rgba(40, 52, 126, 0.25);
}
form.search-form .search-field::placeholder {
  color: #7d7265;
}
@media screen and (max-width: 680px) {
  form.search-form .search-field {
    max-width: 100%;
    border-radius: 5rem;
    margin-bottom: 1rem;
  }
}
form.search-form .search-submit {
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 700;
  border-radius: 5rem;
  vertical-align: middle;
  color: #faf8f4;
  background-color: #28347e !important;
  border-color: #28347e !important;
  padding: 0 2.6rem;
  height: 3.5rem;
  line-height: 3.3rem;
  font-size: 1.2em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  max-width: 200px;
}
form.search-form .search-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
form.search-form .search-submit.btn-icon {
  width: 3.5rem;
}
@media screen and (max-width: 680px) {
  form.search-form .search-submit.btn-icon {
    width: 2.4rem;
  }
}
form.search-form .search-submit.btn-icon > i {
  font-size: 1.5rem;
}
@media screen and (max-width: 680px) {
  form.search-form .search-submit.btn-icon > i {
    font-size: 1.2rem;
  }
}
form.search-form .search-submit.btn-icon > i:before {
  height: 3.5rem;
  line-height: 3.3rem;
}
@media screen and (max-width: 680px) {
  form.search-form .search-submit.btn-icon > i:before {
    height: 2.4rem;
    line-height: 2.2rem;
  }
}
form.search-form .search-submit.btn-sm.btn-icon {
  width: 2.5rem;
}
form.search-form .search-submit.btn-sm.btn-icon > i {
  font-size: 1.2rem;
}
form.search-form .search-submit.btn-sm.btn-icon > i:before {
  height: 2.5rem;
  line-height: 2.5rem;
}
form.search-form .search-submit:not(:disabled):hover {
  background-color: #161c44 !important;
}
form.search-form .search-submit:not(:disabled):focus, form.search-form .search-submit:not(:disabled):active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(40, 52, 126, 0.5) !important;
}
@media screen and (max-width: 680px) {
  form.search-form .search-submit {
    max-width: 100%;
    border-radius: 5rem;
  }
}

ul.results {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
}
ul.results li {
  margin: 0 auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1040px) {
  ul.results li {
    margin: 1rem auto;
  }
}
ul.results li > a {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background-color: #fffffe;
  border: 1px solid #ebe0d3;
}
@media screen and (max-width: 1040px) {
  ul.results li > a {
    flex-direction: column;
  }
}
ul.results li > a:hover h2, ul.results li > a:focus h2 {
  text-decoration: underline;
}
ul.results li > a > * {
  flex: 1;
}
@media screen and (max-width: 1040px) {
  ul.results li > a > * {
    flex: 0 0 100%;
    width: 100%;
  }
}
ul.results li > a > *.thumbnail-wrapper {
  max-width: 200px;
  margin-bottom: 0;
  order: 2;
}
@media screen and (max-width: 1040px) {
  ul.results li > a > *.thumbnail-wrapper {
    max-width: 140px;
  }
}
ul.results li > a > *.text-wrapper h2 {
  font-weight: 500;
}
ul.results li > a > *.text-wrapper > * {
  margin-bottom: 0.5rem;
}
ul.results li > a > *.text-wrapper .overline {
  color: #7d7265;
}
ul.results li > a > *.text-wrapper .tag {
  background: transparent !important;
  color: #7d7265;
  padding: 0;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
}
ul.results li > a > *.text-wrapper .tag:before {
  content: " ";
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  border-radius: 2rem;
  background-color: #28347e;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -3px;
}
ul.results li > a > *.text-wrapper .tag.bg-teal:before {
  background-color: #50a4a9;
}
ul.results li > a > *.text-wrapper .tag.bg-orange:before {
  background-color: #f49525;
}
ul.results li > a > *.text-wrapper .tag.bg-wine:before {
  background-color: #b83c68;
}

body.qrscan {
  padding: 1rem;
}

.card.userbadge {
  max-width: 360px;
  margin: 0 auto;
  border-width: 0px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card.userbadge span.logo {
  padding: 0 1rem;
  display: block;
  overflow: hidden;
}
.card.userbadge span.logo img {
  width: 120px;
  height: auto;
  margin: 1rem auto;
  position: relative;
}
.card.userbadge span.qr {
  display: block;
  overflow: hidden;
}
.card.userbadge span.qr img {
  width: 200px;
  height: auto;
  margin: 0 80px 40px;
}
.card.userbadge .card-title {
  padding: 1rem 0.5rem 0.5rem;
  font-weight: 500;
  font-size: 22px;
  border-top: #fff 1px solid;
  color: #fff;
}
.card.userbadge .card-body {
  padding: 0;
}
.card.userbadge .card-body .table {
  margin: 0;
}
.card.userbadge ol {
  padding: 0;
  margin: 0 1rem 1rem;
}
.card.userbadge ol li {
  font-size: 14px;
  margin: 0;
  border: rgba(255, 255, 255, 0.3) solid 1px;
  border-radius: 10px;
  overflow: hidden;
}
.card.userbadge ol li + li {
  margin-top: 0.5rem;
}
.card.userbadge td,
.card.userbadge th {
  font-size: 14px;
  padding: 0.7rem;
}
.card.userbadge .alert {
  font-size: 14px;
  border: none;
  border-radius: 0;
  padding: 0;
  line-height: 3rem;
}
.card.userbadge h1 .badge {
  height: 3rem;
  width: 3rem;
  font-size: 26px;
  line-height: 3rem;
  padding: 0;
  border-radius: 0;
}

.page-a4 {
  width: 420mm;
  height: 594mm;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  position: relative;
}
.page-a4 img.pdf {
  width: 420mm;
  height: 594mm;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-a4 div.all {
  position: absolute;
  top: 376mm;
  left: 0mm;
  width: 210mm;
  z-index: 2;
}
.page-a4 div.all div {
  position: relative;
}
.page-a4 div.all div.name {
  padding: 14mm 8mm;
  font-weight: bold;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500;
  color: #fff;
  height: 60mm;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-a4 div.all div.name span {
  position: relative;
  display: block;
  font-size: 14mm;
  line-height: 16mm;
  max-height: 32mm;
  transform: translateY(-5mm);
}
.page-a4 div.all div.name span:after {
  content: " ";
  display: block;
  width: 100%;
  height: 90mm;
  background-color: #28347e;
  position: absolute;
  top: 38mm;
  left: 0;
  z-index: 1;
}
.page-a4 div.all div.name.bg-info span:after {
  background-color: var(--bs-info-rgb);
}
.page-a4 div.all div.name.bg-danger span:after {
  background-color: #e62640;
}
.page-a4 div.all div.name.bg-warning span:after {
  background-color: #f49525;
}
.page-a4 div.all div.name.bg-success span:after {
  background-color: #80ba27;
}
.page-a4 div.all div.name.bg-secondary span:after {
  background-color: var(--bs-secondary-rgb);
}
.page-a4 div.all div.name.bg-danger span:after {
  background-color: var(--bs-danger-rgb);
}
.page-a4 div.all div.who {
  padding: 8mm;
  color: #28347e;
}
.page-a4 div.all div.who > * {
  display: block;
  font-size: 9mm;
  line-height: 12mm;
  max-height: 24mm;
  text-align: center;
  transform: translateY(-5mm);
}
.page-a4 div.all div.qr {
  position: absolute;
  top: 130mm;
  right: 85mm;
}
.page-a4 div.all div.qr img {
  width: 40mm;
  height: 40mm;
}
.page-a4 div.all div.id {
  width: 100%;
  position: absolute;
  top: 184mm;
  right: 0;
  font-size: 8mm;
  color: #28347e;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
}

body.page-template-page-attendance > form {
  max-width: 620px;
  min-width: 620px;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border: #faf8f4 1px solid;
  margin: 1.5rem auto;
  border-radius: 10px;
}
body.page-template-page-attendance > form h1 {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: #28347e;
}
body.page-template-page-attendance > form em {
  font-style: normal;
  margin-bottom: 1rem;
  display: block;
}
body.page-template-page-attendance > form .btn {
  margin-top: 1.5rem;
}
body.page-template-page-attendance > form .form-check {
  text-align: left;
}
body.page-template-page-attendance > form .form-check.checkes {
  position: relative;
}
body.page-template-page-attendance > form .form-check.checkes input {
  position: fixed;
  top: -999em;
}
body.page-template-page-attendance > form .form-check.checkes input:checked + label {
  background-color: #eaf4f5;
  box-shadow: 0 0 6px #b6dadc;
}
body.page-template-page-attendance > form .form-check.checkes input:checked + label b {
  border-color: #50a4a9;
}
body.page-template-page-attendance > form .form-check.checkes input:checked + label b i {
  background-color: #50a4a9;
  box-shadow: 0 0 6px #b6dadc;
  margin-left: 26px;
}
body.page-template-page-attendance > form .form-check.checkes input:checked + label span {
  color: #408286;
}
body.page-template-page-attendance > form .form-check.checkes label {
  background-color: #faf8f4;
  border-radius: 10px;
  border: #ebe0d3 0px solid;
  padding: 0.5rem;
  display: block;
  cursor: pointer;
}
body.page-template-page-attendance > form .form-check.checkes label b {
  display: inline-block;
  width: 56px;
  height: 30px;
  padding: 0 2px;
  border-radius: 30px;
  background-color: #fff;
  vertical-align: middle;
  border: #ebe0d3 1px solid;
}
body.page-template-page-attendance > form .form-check.checkes label b i {
  display: block;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  background-color: #dcd1c4;
  border-radius: 26px;
  transition: margin-left 0.3s;
}
body.page-template-page-attendance > form .form-check.checkes label span {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-weight: bold;
  color: #7d7265;
}
body.page-template-page-attendance > form .form-check.checkes + .checkes {
  margin-top: 1rem;
}

#resources {
  color: #b83c68;
}

body.page-identifier-resources #page-header {
  background-color: #b83c68;
  color: #faf8f4;
  margin-bottom: 4rem;
}
body.page-identifier-resources .pagination {
  margin-top: 4rem;
}
body.page-identifier-resources .excerpt-resource {
  height: 100%;
}

body.single-post #page-header {
  background-color: #50a4a9;
}

#post > .container {
  display: flex;
  flex-wrap: wrap;
}
#post > .container > .post {
  width: 60%;
  text-align: left;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1040px) {
  #post > .container > .post {
    width: 100%;
  }
}
#post > .container > .post > header {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #50a4a9;
}
#post > .container > .post > header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: none;
}
#post > .container > .post > .main-image {
  margin-bottom: 2rem;
}
#post > .container > .post > .main-image img {
  width: 100%;
  height: auto;
}
#post > .container > .post .post-content .wp-block-image img {
  width: 100%;
  height: auto;
}
#post > .container > .post .post-content .wp-block-image figcaption {
  font-size: 0.8rem;
  color: #7d7265;
  text-align: center;
  margin-top: 0.5rem;
}
#post > .container > .news-archive {
  width: 30%;
  margin-left: 10%;
}
@media screen and (max-width: 1040px) {
  #post > .container > .news-archive {
    width: 100%;
    margin-left: 0;
  }
}

aside.news-archive {
  padding-top: 2rem;
  border-left: #50a4a9 1px solid;
  padding-left: 3rem;
}
@media screen and (max-width: 1040px) {
  aside.news-archive {
    border-left: none;
    padding-left: 0;
  }
}
aside.news-archive .archive-title {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #50a4a9;
  border-bottom: #50a4a9 1px solid;
  padding-bottom: 2rem;
}
aside.news-archive .excerpt {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 2rem;
  color: #50a4a9;
}
aside.news-archive .excerpt > .shape-img {
  width: 20%;
  padding-top: 20%;
  display: none;
}
aside.news-archive .excerpt > div {
  width: 100%;
}
aside.news-archive .excerpt > div > * {
  margin-bottom: 0.5rem;
}

.img {
  padding-top: 65%;
  display: block;
  background-color: #bdb2a5;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.img.square {
  padding-top: 100%;
}
.img.portrait {
  padding-top: 125%;
}
.img.banner {
  padding-top: 30%;
}
@media screen and (max-width: 680px) {
  .img.banner {
    padding-top: 50%;
  }
}

ol.axis-nav {
  display: flex;
  padding: 0;
  margin: 0 -1.5rem;
  list-style: none;
  counter-reset: axes;
}
@media screen and (max-width: 1040px) {
  ol.axis-nav {
    flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  ol.axis-nav {
    margin-bottom: 3rem;
  }
}
ol.axis-nav li {
  counter-increment: axes;
  min-width: 33.3264%;
  padding: 0 1.5rem;
}
@media screen and (max-width: 1040px) {
  ol.axis-nav li {
    min-width: 100%;
  }
}
@media screen and (max-width: 1040px) {
  ol.axis-nav li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
ol.axis-nav li > span {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background-color: #bdb2a5;
}
ol.axis-nav li > span a {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  text-decoration: none;
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 4.5rem 2rem;
  width: 100%;
  height: 100%;
  color: #fffffe;
  text-align: left;
  position: relative;
  transition: transform 0.3s;
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 680px) {
  ol.axis-nav li > span a {
    padding: 2rem;
    padding-left: 4rem;
    min-height: 160px;
  }
}
ol.axis-nav li > span a > b {
  display: block;
  width: 100%;
  font-weight: 500;
}
ol.axis-nav li > span a:before {
  content: counter(axes);
  background-color: #faf8f4;
  color: #bdb2a5;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  font-size: 2rem;
}
@media screen and (max-width: 680px) {
  ol.axis-nav li > span a:before {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
ol.axis-nav li:nth-child(1) > span a {
  background-color: #50a4a9;
}
ol.axis-nav li:nth-child(1) > span a:before {
  color: #50a4a9;
}
ol.axis-nav li:nth-child(2) > span a {
  background-color: #b83c68;
}
ol.axis-nav li:nth-child(2) > span a:before {
  color: #b83c68;
}
ol.axis-nav li:nth-child(3) > span a {
  background-color: #f49525;
}
ol.axis-nav li:nth-child(3) > span a:before {
  color: #f49525;
}
ol.axis-nav li.current a {
  background-color: #dcd1c4 !important;
  cursor: default;
}
ol.axis-nav li.current a:before {
  color: #dcd1c4 !important;
}
ol.axis-nav li:not(.current) a {
  cursor: pointer;
}
ol.axis-nav li:not(.current) a:hover, ol.axis-nav li:not(.current) a:focus {
  transform: scale(1.025);
}

#concept {
  position: relative;
}
@media screen and (max-width: 680px) {
  #concept {
    padding-top: 2rem;
  }
}
#concept::before {
  content: " ";
  width: 100%;
  padding-top: 14%;
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url(../img/concept-1.svg);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 680px) {
  #concept::before {
    display: none;
  }
}
#concept figure {
  margin: 0;
}
#concept > .circle {
  position: absolute;
  top: -410px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 900px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  #concept > .circle {
    top: -300px;
    width: 700px;
    max-width: 700px;
  }
}
#concept > header {
  transform: translateY(-20%);
  margin-bottom: 3rem;
}
@media screen and (max-width: 1040px) {
  #concept > header {
    margin-bottom: 0rem;
  }
}
@media screen and (max-width: 680px) {
  #concept > header {
    margin-bottom: 2rem;
    transform: translateY(0);
  }
}
#concept > header h1 {
  margin-bottom: 2rem;
  color: #ea546c;
}
#concept > header h1 strong {
  font-weight: 400;
}
#concept > header h2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #28347e;
  font-weight: 300;
  font-size: 3rem;
}
@media screen and (max-width: 680px) {
  #concept > header h2 {
    font-size: 2.2rem;
  }
}
#concept > header h2 strong {
  font-weight: 300;
}
#concept > section > div p {
  text-align: justify;
}
#concept > section.group-0 {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
}
@media screen and (min-width: 680px) {
  #concept > section.group-0 {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  #concept > section.group-0 {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  #concept > section.group-0 {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  #concept > section.group-0 {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  #concept > section.group-0 {
    width: 100%;
    padding: 0 1.3rem;
  }
}
#concept > section.group-0 > div {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 1040px) {
  #concept > section.group-0 > div {
    flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  #concept > section.group-0 > div {
    gap: 2rem;
  }
}
#concept > section.group-0 > div h2.wp-block-heading {
  display: none;
}
#concept > section.group-0 > div > figure {
  min-width: 40%;
}
@media screen and (max-width: 1040px) {
  #concept > section.group-0 > div > figure {
    min-width: 100%;
  }
}
#concept > section.group-1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  #concept > section.group-1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
#concept > section.group-1::before {
  content: " ";
  width: 28%;
  padding-top: 49%;
  background-image: url(../img/concept-2.gif);
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  #concept > section.group-1::before {
    display: none;
  }
}
#concept > section.group-1 > div > div {
  padding-right: 30%;
}
#concept > section.group-1 > div > div > * {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 680px) {
  #concept > section.group-1 > div > div > * {
    margin-bottom: 1rem;
  }
}
#concept > section.group-1 > div > div > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  #concept > section.group-1 > div > div > *:last-child {
    margin-bottom: 0;
  }
}
#concept > section.group-1 > div > div > h1 {
  margin-bottom: 1.5rem;
}
#concept > section.group-1 > div > div > h2 {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1840px) {
  #concept > section.group-1 > div > div {
    padding-right: 20%;
  }
}
@media screen and (max-width: 680px) {
  #concept > section.group-1 > div > div {
    padding-right: 1.3rem;
  }
}
#concept > section.group-2 {
  overflow: hidden;
  background-color: #28347e;
  color: #faf8f4;
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  #concept > section.group-2 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
#concept > section.group-3 {
  padding: 6rem 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 680px) {
  #concept > section.group-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
#concept > section.group-3 .row > div:first-child::after, #concept > section.group-3 .row > div:first-child::before {
  content: " ";
  padding-top: 65%;
  display: block;
  background-color: #bdb2a5;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(../img/concept-2.jpg);
}
#concept > section.group-3 .row > div:first-child::after {
  margin-top: 2rem;
}
@media screen and (max-width: 1040px) {
  #concept > section.group-3 .row > div:first-child::after {
    display: none;
  }
}
#concept > section.group-3 .row > div:first-child::before {
  margin-bottom: 2rem;
  display: none;
}
@media screen and (max-width: 1040px) {
  #concept > section.group-3 .row > div:first-child::before {
    display: block;
  }
}
#concept > section.group-3 .row > div:last-child::before {
  content: " ";
  padding-top: 65%;
  display: block;
  background-color: #bdb2a5;
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
  background-image: url(../img/concept-3.jpg);
}
#concept > section.group-4 {
  padding-top: 0rem;
  padding-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  #concept > section.group-4 {
    padding-bottom: 3rem;
  }
}
#concept > section.group-4::before {
  content: " ";
  display: block;
  width: 30%;
  padding-top: 60%;
  position: absolute;
  bottom: 5%;
  background-image: url(../img/concept-3.gif);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 1540px) {
  #concept > section.group-4::before {
    width: 23%;
    padding-top: 52%;
  }
}
@media screen and (max-width: 680px) {
  #concept > section.group-4::before {
    display: none;
  }
}
#concept > section.group-4 > div {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
}
@media screen and (min-width: 680px) {
  #concept > section.group-4 > div {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  #concept > section.group-4 > div {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  #concept > section.group-4 > div {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  #concept > section.group-4 > div {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  #concept > section.group-4 > div {
    width: 100%;
    padding: 0 1.3rem;
  }
}
#concept > section.group-4 > div > div {
  padding-left: 30%;
}
#concept > section.group-4 > div > div > * {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 680px) {
  #concept > section.group-4 > div > div > * {
    margin-bottom: 1rem;
  }
}
#concept > section.group-4 > div > div > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  #concept > section.group-4 > div > div > *:last-child {
    margin-bottom: 0;
  }
}
#concept > section.group-4 > div > div > h1 {
  margin-bottom: 1.5rem;
}
#concept > section.group-4 > div > div > h2 {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 680px) {
  #concept > section.group-4 > div > div {
    padding-left: 0;
  }
}
#concept > section.group-5 {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 680px) {
  #concept > section.group-5 {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  #concept > section.group-5 {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  #concept > section.group-5 {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  #concept > section.group-5 {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  #concept > section.group-5 {
    width: 100%;
    padding: 0 1.3rem;
  }
}
#concept > section.group-5 .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
#concept > section.group-5 > div > * {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 680px) {
  #concept > section.group-5 > div > * {
    margin-bottom: 1rem;
  }
}
#concept > section.group-5 > div > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  #concept > section.group-5 > div > *:last-child {
    margin-bottom: 0;
  }
}
#concept > section.group-5 > div > h1 {
  margin-bottom: 1.5rem;
}
#concept > section.group-5 > div > h2 {
  margin-bottom: 1.5rem;
}
#concept > section.group-5 > div p {
  font-size: 1.2em;
  text-align: center;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
#concept > section.group-6 {
  overflow: hidden;
  padding: 0 0 3rem;
}
#concept > section.group-6 p {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

body.page-identifier-axis1 #page-header {
  background-color: #50a4a9 !important;
}
body.page-identifier-axis1 h1,
body.page-identifier-axis1 .axis > article > section ol li span:before,
body.page-identifier-axis1 .axis > article > section strong {
  color: #50a4a9;
}

body.page-identifier-axis2 #page-header {
  background-color: #b83c68 !important;
}
body.page-identifier-axis2 h1,
body.page-identifier-axis2 .axis > article > section ol li span:before,
body.page-identifier-axis2 .axis > article > section strong {
  color: #b83c68;
}

body.page-identifier-axis3 #page-header {
  background-color: #f49525 !important;
}
body.page-identifier-axis3 h1,
body.page-identifier-axis3 .axis > article > section ol li span:before,
body.page-identifier-axis3 .axis > article > section strong {
  color: #f49525;
}

.bg-text {
  background-size: cover;
  background-position: bottom center;
  position: relative;
  background-color: #42372a;
}
.bg-text .container {
  max-width: 1100px !important;
}
.bg-text .alert {
  margin-right: 1.2em;
  display: inline-block;
  width: auto;
  text-shadow: none;
}
.bg-text > div {
  padding: 6rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faf8f4;
  text-align: left;
  font-size: 1.1rem;
}
@media screen and (max-width: 1040px) {
  .bg-text > div {
    padding: 3rem 0;
  }
}
.bg-text > div .container {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.bg-text > div .container > * {
  margin: 0 0 1.15rem;
}
.bg-text > div .container > *:last-child {
  margin-bottom: 0;
}
.bg-text > div .container .h3 {
  font-weight: 500;
  font-size: 2.4rem;
}
.bg-text > div .container em {
  display: block;
  font-size: 1.3rem;
}
.bg-text > div .container p {
  max-width: 80%;
  min-width: 300px;
}

body.page-identifier-cultural > .btn {
  margin-top: 3rem;
}
body.page-identifier-cultural .axis > article > section ol li span:before,
body.page-identifier-cultural .axis > article > section strong {
  color: #788b88;
}
body.page-identifier-cultural > .container,
body.page-identifier-cultural #more > .container {
  max-width: 1100px !important;
}
body.page-identifier-cultural #agenda .session-wrapper {
  border-left: 5px #6f4f9b solid;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: 2rem;
}
body.page-identifier-cultural #agenda .session-wrapper:last-child {
  margin-bottom: 2rem;
}
body.page-identifier-cultural #agenda .session-wrapper .session-content {
  background-color: #faf8f4;
  color: #6f4f9b;
}
body.page-identifier-cultural #agenda .session-wrapper .session-content h2 {
  font-size: 28px;
}
body.page-identifier-cultural #agenda .session-wrapper .session-content .category {
  display: none;
}
body.page-identifier-cultural #agenda .session-wrapper .session-content p > img {
  width: 40%;
  margin: 0.25rem 0 1rem 1rem;
  float: right;
}
body.page-identifier-cultural #agenda .ac .ac-trigger {
  background-color: #6f4f9b;
  color: #faf8f4;
}
body.page-identifier-cultural #agenda .ac .ac-trigger:hover {
  background-color: #5c4180;
}
body.page-identifier-cultural #agenda .ac .ac-trigger:focus {
  box-shadow: 0 0 0 3px rgba(111, 79, 155, 0.5);
}
body.page-identifier-cultural #agenda .ac.is-active .ac-trigger {
  box-shadow: none;
  background-color: #6f4f9b;
}
body.page-identifier-cultural #more {
  background-color: #6f4f9b;
  color: #faf8f4;
  padding: 6rem 0;
}
body.page-identifier-cultural #more .container {
  text-align: left;
  font-size: 1.1rem;
}
body.page-identifier-cultural #more .container ol.numbered-list li {
  min-height: 3rem;
}
body.page-identifier-cultural #more .container ol.numbered-list li:before {
  background-color: #faf8f4;
  color: #6f4f9b;
  top: -0.2rem;
}
body.page-identifier-cultural h2.heading {
  color: #6f4f9b;
  font-weight: 500;
  font-size: 2.1rem;
}
body.page-identifier-cultural .container.heading-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
body.page-identifier-cultural #other {
  padding-bottom: 4rem;
}
body.page-identifier-cultural #other .ac .ac-trigger {
  background-color: #fffffe;
  color: #6f4f9b;
}
body.page-identifier-cultural #other .ac .ac-trigger:hover {
  background-color: #faf8f4;
}
body.page-identifier-cultural #other .ac .ac-trigger:focus {
  box-shadow: 0 0 0 3px rgba(111, 79, 155, 0.5);
}
body.page-identifier-cultural #other .ac.is-active .ac-trigger {
  box-shadow: none;
  background-color: #fffffe;
}
body.page-identifier-cultural #other .ac .other-content {
  border-top: #ebe0d3 1px solid;
  overflow: hidden;
  padding: 1.5em;
  text-align: left;
}
body.page-identifier-cultural #other .ac .other-content:after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  clear: both;
}
body.page-identifier-cultural #other .ac .other-content > * {
  margin: 0 0 1em;
}
body.page-identifier-cultural #other .ac .other-content > *:last-child {
  margin-bottom: 0;
}
body.page-identifier-cultural #other .ac .other-content hr {
  clear: both;
}
body.page-identifier-cultural #other .ac .other-content pre {
  background-color: rgba(111, 79, 155, 0.2);
  padding: 1.5rem;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  clear: both;
}
body.page-identifier-cultural #other .ac .other-content .wp-block-image {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}
body.page-identifier-cultural #other .ac .other-content .wp-block-image img {
  max-width: 100%;
}
body.page-identifier-cultural #other .ac .other-content .wp-block-image.alignright {
  float: right;
  margin-left: 1.5em;
  margin-right: 0;
}
body.page-identifier-cultural #other .ac .other-content .wp-block-button {
  text-align: left;
}
body.page-identifier-cultural #other .ac .other-content .wp-block-button__link {
  padding: 0 2rem;
  height: 3rem;
  line-height: 2.7rem;
  font-size: 1em;
  color: #6f4f9b;
  background-color: transparent;
  border-color: #6f4f9b;
}
body.page-identifier-cultural #other .ac .other-content .wp-block-button__link:hover {
  border-color: rgba(111, 79, 155, 0.5);
}
body.page-identifier-cultural #other .ac .other-content .wp-block-button__link:focus, body.page-identifier-cultural #other .ac .other-content .wp-block-button__link:active {
  outline: none;
  box-shadow: 0 0 0 4px rgba(111, 79, 155, 0.5);
}

.axis {
  position: relative;
  overflow: hidden;
}
.axis .axis-nav {
  margin-bottom: 6rem;
}
.axis > img {
  display: block;
  width: 60%;
  height: auto;
  position: absolute;
  top: 0;
  right: -30%;
  transform: translateY(-55%);
}
@media screen and (min-width: 1540px) {
  .axis > img {
    width: 57%;
    right: -31%;
  }
}
.axis #programme {
  margin-bottom: 8rem;
}
@media screen and (max-width: 680px) {
  .axis #programme {
    margin-bottom: 4rem;
  }
}
.axis > article > header {
  text-align: left;
  padding: 4rem 0;
}
@media screen and (max-width: 680px) {
  .axis > article > header {
    padding: 2rem 0;
  }
}
.axis > article > header h1 {
  padding-right: 30%;
  font-size: 3rem;
}
@media screen and (max-width: 1040px) {
  .axis > article > header h1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 680px) {
  .axis > article > header h1 {
    font-size: 2rem;
    padding-right: 10%;
  }
}
.axis > article > section p,
.axis > article > section li {
  text-align: justify;
}
.axis > article > section ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: axes;
}
.axis > article > section ol li {
  counter-increment: axes;
  margin-bottom: 2rem;
  text-align: left;
}
.axis > article > section ol li:last-child {
  margin-bottom: 0;
}
.axis > article > section ol li span {
  position: relative;
  padding-left: 3rem;
  display: block;
}
.axis > article > section ol li span:before {
  content: counter(axes);
  width: 2rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  display: block;
  font-size: 1.5rem;
  position: absolute;
  top: -0.5rem;
  left: -1px;
}
.axis#axis1 #programme > header h2 {
  color: #50a4a9;
}
.axis#axis1 #programme .ac .ac-trigger {
  background-color: #50a4a9;
  color: #faf8f4;
}
.axis#axis1 #programme .ac .ac-trigger:hover {
  background-color: #63b0b5;
}
.axis#axis1 #programme .ac .ac-trigger:focus {
  box-shadow: 0 0 0 3px rgba(80, 164, 169, 0.5);
}
.axis#axis1 #programme .ac.is-active .ac-trigger {
  box-shadow: 0 0 0 3px rgba(80, 164, 169, 0.5);
}
.axis#axis1 > article > section.group-0 .content-group {
  max-width: 960px;
  margin-right: auto;
}
.axis#axis1 > article > section.group-1 .img {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-1 .img {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.axis#axis1 > article > section.group-1 > div {
  padding: 0 0 6rem;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-1 > div {
    padding: 0 0 2rem;
  }
}
.axis#axis1 > article > section.group-1 > div .container > div {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-1 > div .container > div {
    flex-direction: column;
  }
}
.axis#axis1 > article > section.group-1 > div .container > div > p {
  margin: 0;
}
.axis#axis1 > article > section.group-1 > div .container > div > p:first-child {
  font-size: 1.2em;
  min-width: 33.3264%;
  text-align: left;
  border: #50a4a9 1px solid;
  border-left-width: 10px;
  padding: 2.2rem 2rem;
}
.axis#axis1 > article > section.group-2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-2 {
    margin-bottom: 3rem;
  }
}
.axis#axis1 > article > section.group-3 {
  margin-bottom: 6rem;
  position: relative;
}
.axis#axis1 > article > section.group-3:before {
  content: " ";
  display: block;
  width: 30%;
  padding-top: 45%;
  position: absolute;
  top: -3rem;
  background-image: url(../img/axis1-1.gif);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-3:before {
    display: none;
  }
}
.axis#axis1 > article > section.group-3 > div {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
}
@media screen and (min-width: 680px) {
  .axis#axis1 > article > section.group-3 > div {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  .axis#axis1 > article > section.group-3 > div {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  .axis#axis1 > article > section.group-3 > div {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis1 > article > section.group-3 > div {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-3 > div {
    width: 100%;
    padding: 0 1.3rem;
  }
}
.axis#axis1 > article > section.group-3 > div > div {
  padding-left: 30%;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-3 > div > div {
    padding-left: 0;
  }
}
.axis#axis1 > article > section.group-4 {
  margin-bottom: 2rem;
  background-color: #50a4a9;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
  color: rgba(250, 248, 244, 0.8);
}
.axis#axis1 > article > section.group-4 strong {
  color: #faf8f4;
}
.axis#axis1 > article > section.group-5 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-5 {
    margin-bottom: 3rem;
  }
}
.axis#axis1 > article > section.group-5 > div {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 680px) {
  .axis#axis1 > article > section.group-5 > div {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  .axis#axis1 > article > section.group-5 > div {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  .axis#axis1 > article > section.group-5 > div {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis1 > article > section.group-5 > div {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-5 > div {
    width: 100%;
    padding: 0 1.3rem;
  }
}
.axis#axis1 > article > section.group-5 > div:after {
  content: " ";
  display: block;
  min-width: 25%;
  padding-top: 50%;
  background-color: #50a4a9;
  background-image: url(../img/axis1-2.gif);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-5 > div:after {
    display: none;
  }
}
.axis#axis1 > article > section.group-5 > div > div {
  padding-right: 6rem;
}
@media screen and (max-width: 680px) {
  .axis#axis1 > article > section.group-5 > div > div {
    padding-right: 0;
  }
}
.axis#axis2 #programme > header h2 {
  color: #b83c68;
}
.axis#axis2 #programme .ac .ac-trigger {
  background-color: #b83c68;
  color: #faf8f4;
}
.axis#axis2 #programme .ac .ac-trigger:hover {
  background-color: #c54d78;
}
.axis#axis2 #programme .ac .ac-trigger:focus {
  box-shadow: 0 0 0 3px rgba(184, 60, 104, 0.5);
}
.axis#axis2 #programme .ac.is-active .ac-trigger {
  box-shadow: 0 0 0 3px rgba(184, 60, 104, 0.5);
}
.axis#axis2 > article > section.group-0 {
  margin-bottom: 6rem;
}
.axis#axis2 > article > section.group-1 {
  margin-bottom: 6rem;
  overflow: hidden;
}
.axis#axis2 > article > section.group-2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #b83c68;
  color: rgba(250, 248, 244, 0.8);
  position: relative;
  z-index: 2;
}
.axis#axis2 > article > section.group-2 strong {
  color: #faf8f4;
}
.axis#axis2 > article > section.group-3 {
  padding-bottom: 6rem;
  padding-top: 6rem;
  position: relative;
}
.axis#axis2 > article > section.group-3 .content-group {
  padding-right: 55%;
}
@media screen and (max-width: 680px) {
  .axis#axis2 > article > section.group-3 .content-group {
    padding-right: 0;
  }
}
.axis#axis2 > article > section.group-3:after {
  content: " ";
  display: block;
  width: 50%;
  padding-top: 32%;
  position: absolute;
  top: 0;
  background-image: url(../img/axis2-1.gif);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 1540px) {
  .axis#axis2 > article > section.group-3:after {
    width: 39%;
    padding-top: 25%;
  }
}
@media screen and (max-width: 680px) {
  .axis#axis2 > article > section.group-3:after {
    display: none;
  }
}
.axis#axis2 > article > section.group-4 {
  padding-bottom: 6rem;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  .axis#axis2 > article > section.group-4 {
    margin-bottom: 2rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis2 > article > section.group-4 {
    margin-bottom: 6rem;
  }
}
.axis#axis2 > article > section.group-4:after {
  content: " ";
  display: block;
  width: 45%;
  padding-top: 20%;
  position: absolute;
  bottom: 0;
  background-color: #b83c68;
  background-size: auto 100%;
  background-image: url(../img/axis2-2.gif);
  background-position: right center;
  background-repeat: no-repeat;
  right: 55%;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .axis#axis2 > article > section.group-4:after {
    display: none;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis2 > article > section.group-4:after {
    bottom: auto;
    top: 12rem;
    width: 40%;
    padding-top: 13%;
    right: 60%;
  }
}
.axis#axis2 > article > section.group-4 .content-group {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  .axis#axis2 > article > section.group-4 .content-group {
    flex-direction: column;
  }
}
.axis#axis2 > article > section.group-4 .content-group > * {
  width: 50%;
}
@media screen and (max-width: 680px) {
  .axis#axis2 > article > section.group-4 .content-group > * {
    width: 100%;
  }
}
.axis#axis2 > article > section.group-4 .content-group > *:first-child {
  padding-right: 6rem;
  font-size: 1.2em;
  text-align: left;
}
.axis#axis2 > article > section.group-5 {
  margin-bottom: 6rem;
}
.axis#axis2 > article > section.group-5 .content-group {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.axis#axis3 #programme > header h2 {
  color: #f49525;
}
.axis#axis3 #programme .ac .ac-trigger {
  background-color: #f49525;
  color: #faf8f4;
}
.axis#axis3 #programme .ac .ac-trigger:hover {
  background-color: #f5a342;
}
.axis#axis3 #programme .ac .ac-trigger:focus {
  box-shadow: 0 0 0 3px rgba(244, 149, 37, 0.5);
}
.axis#axis3 #programme .ac.is-active .ac-trigger {
  box-shadow: 0 0 0 3px rgba(244, 149, 37, 0.5);
}
.axis#axis3 > article > section.group-0 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-0 {
    margin-bottom: 3rem;
  }
}
.axis#axis3 > article > section.group-1 {
  overflow: hidden;
  background-color: #f49525;
  color: rgba(250, 248, 244, 0.85);
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.axis#axis3 > article > section.group-1 strong {
  color: #faf8f4;
}
.axis#axis3 > article > section.group-1 .content-group {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.axis#axis3 > article > section.group-2 {
  margin-bottom: 6rem;
  padding-top: 6rem;
  position: relative;
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-2 {
    padding-top: 3rem;
    margin-bottom: 3rem;
  }
}
.axis#axis3 > article > section.group-2::before {
  content: " ";
  display: block;
  width: 34%;
  padding-top: 50%;
  position: absolute;
  top: 0;
  background-image: url(../img/axis3-1.gif);
  background-size: 100% auto;
  background-position: left bottom;
  background-repeat: no-repeat;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-2::before {
    display: none;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis3 > article > section.group-2::before {
    top: -17%;
    width: 25%;
    padding-top: 38%;
  }
}
.axis#axis3 > article > section.group-2 > div {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
}
@media screen and (min-width: 680px) {
  .axis#axis3 > article > section.group-2 > div {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  .axis#axis3 > article > section.group-2 > div {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  .axis#axis3 > article > section.group-2 > div {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis3 > article > section.group-2 > div {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-2 > div {
    width: 100%;
    padding: 0 1.3rem;
  }
}
.axis#axis3 > article > section.group-2 > div > div {
  padding-left: 40%;
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-2 > div > div {
    padding-left: 0;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis3 > article > section.group-2 > div > div {
    padding-left: 26%;
  }
}
@media screen and (min-width: 1840px) {
  .axis#axis3 > article > section.group-2 > div > div {
    padding-left: 20%;
  }
}
.axis#axis3 > article > section.group-3 {
  margin-bottom: 6rem;
}
.axis#axis3 > article > section.group-3 > div {
  width: 96%;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 591.6px;
}
@media screen and (min-width: 680px) {
  .axis#axis3 > article > section.group-3 > div {
    max-width: 904.8px;
  }
}
@media screen and (min-width: 1040px) {
  .axis#axis3 > article > section.group-3 > div {
    max-width: 1209.3px;
  }
}
@media screen and (min-width: 1390px) {
  .axis#axis3 > article > section.group-3 > div {
    max-width: 1339.8px;
  }
}
@media screen and (min-width: 1540px) {
  .axis#axis3 > article > section.group-3 > div {
    max-width: 1600.8px;
  }
}
@media screen and (max-width: 680px) {
  .axis#axis3 > article > section.group-3 > div {
    width: 100%;
    padding: 0 1.3rem;
  }
}

#feat-resource {
  background-color: #ea546c;
  padding: 4rem 0;
}
#feat-resource .container {
  max-width: 960px;
}
#feat-resource .excerpt.excerpt-resource {
  background-color: #faf8f4;
  align-items: center;
}
#feat-resource .excerpt.excerpt-resource > .text-wrapper > h2 {
  font-size: 1.5rem !important;
  font-weight: 500;
}

.programme {
  text-align: left;
}
.programme > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.programme > header h2 {
  color: #28347e;
}
.programme .time-block > strong {
  display: block;
  font-size: 1.2em;
  background-color: #fffffe;
  color: #28347e;
  padding: 0 1.6em;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 400;
}
.programme .time-block:first-child > strong {
  padding-top: 1.2em;
}
.programme .time-block .sessions {
  display: grid;
  grid-gap: 1.2em;
  padding: 2em;
}
.programme .time-block .sessions.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1540px) {
  .programme .time-block .sessions.cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1040px) {
  .programme .time-block .sessions.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.programme .time-block .sessions.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1040px) {
  .programme .time-block .sessions.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.programme .time-block .sessions.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.programme .time-block .sessions.cols-1 {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 680px) {
  .programme .time-block .sessions {
    grid-template-columns: 1fr !important;
  }
}
.programme .time-block .sessions .session {
  border-left: 1px solid #f5eadd;
  border-left-color: #28347e;
  border-left-width: 5px;
  background-color: #faf8f4;
  color: #28347e;
}
.programme .time-block .sessions .session .category {
  display: block;
  font-weight: 400;
}
.programme .time-block .sessions .session.clickable {
  cursor: pointer;
}
.programme .time-block .sessions .session.clickable:hover, .programme .time-block .sessions .session.clickable.active {
  box-shadow: 5px 5px 0px rgba(66, 55, 42, 0.09);
}
.programme .time-block .sessions .session.fullwidth {
  grid-column: 1/-1;
}
.programme .time-block .sessions .session.is-main > .category {
  background-color: #28347e;
  padding: 0.455em 1.2em;
  color: #faf8f4 !important;
}
.programme .time-block .sessions .session .content {
  padding: 1.2em;
}
.programme .time-block .sessions .session .content h4 {
  word-break: normal;
  hyphens: auto;
  font-size: 1em;
  line-height: 1.4;
  text-transform: none;
  margin-bottom: 0.7em;
  color: #28347e;
  font-weight: 500;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
}
.programme .time-block .sessions .session .content h4 a {
  text-decoration: none;
}
.programme .time-block .sessions .session .content h4 a:hover, .programme .time-block .sessions .session .content h4 a:focus {
  text-decoration: underline;
}
.programme .time-block .sessions .session .content .category,
.programme .time-block .sessions .session .content .chip {
  margin-bottom: 0.7em;
  border: #28347e 1px solid;
  color: #28347e;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.86em;
  padding: 5px 8px;
  font-size: 0.7912em;
  border-radius: 4px;
  margin-right: 0.25rem;
}
.programme .time-block .sessions .session .content .category.d-none,
.programme .time-block .sessions .session .content .chip.d-none {
  display: none !important;
}
.programme .time-block .sessions .session .content .room,
.programme .time-block .sessions .session .content time,
.programme .time-block .sessions .session .content a.axis span {
  font-size: 16px;
  line-height: 1.3;
  display: inline-block;
  vertical-align: middle;
}
.programme .time-block .sessions .session .content a.axis {
  padding-left: 0.35em;
  text-decoration: none;
}
.programme .time-block .sessions .session .content a.axis:before {
  content: " ";
  width: 0.7em;
  height: 0.7em;
  display: inline-block;
  background-color: #f5eadd;
  border-radius: 50%;
  vertical-align: middle;
}
.programme .time-block .sessions .session .content a.axis span {
  opacity: 1;
}
.programme .time-block .sessions .session .content a.axis:hover span, .programme .time-block .sessions .session .content a.axis:focus span {
  opacity: 1;
}
.programme .time-block .sessions .session.no-time, .programme .time-block .sessions .session.category-side, .programme .time-block .sessions .session.category-good_practice, .programme .time-block .sessions .session.category-workshop, .programme .time-block .sessions .session.category-experiences, .programme .time-block .sessions .session.category-dialog {
  border-left-color: #788b88;
  color: #788b88;
}
.programme .time-block .sessions .session.no-time.is-main > .category, .programme .time-block .sessions .session.category-side.is-main > .category, .programme .time-block .sessions .session.category-good_practice.is-main > .category, .programme .time-block .sessions .session.category-workshop.is-main > .category, .programme .time-block .sessions .session.category-experiences.is-main > .category, .programme .time-block .sessions .session.category-dialog.is-main > .category {
  background-color: #788b88;
}
.programme .time-block .sessions .session.no-time .category,
.programme .time-block .sessions .session.no-time .chip, .programme .time-block .sessions .session.category-side .category,
.programme .time-block .sessions .session.category-side .chip, .programme .time-block .sessions .session.category-good_practice .category,
.programme .time-block .sessions .session.category-good_practice .chip, .programme .time-block .sessions .session.category-workshop .category,
.programme .time-block .sessions .session.category-workshop .chip, .programme .time-block .sessions .session.category-experiences .category,
.programme .time-block .sessions .session.category-experiences .chip, .programme .time-block .sessions .session.category-dialog .category,
.programme .time-block .sessions .session.category-dialog .chip {
  border-color: #788b88;
  color: #788b88;
}
.programme .time-block .sessions .session.no-time h4, .programme .time-block .sessions .session.category-side h4, .programme .time-block .sessions .session.category-good_practice h4, .programme .time-block .sessions .session.category-workshop h4, .programme .time-block .sessions .session.category-experiences h4, .programme .time-block .sessions .session.category-dialog h4 {
  color: #788b88;
}
.programme .time-block .sessions .session.no-time a.axis, .programme .time-block .sessions .session.category-side a.axis, .programme .time-block .sessions .session.category-good_practice a.axis, .programme .time-block .sessions .session.category-workshop a.axis, .programme .time-block .sessions .session.category-experiences a.axis, .programme .time-block .sessions .session.category-dialog a.axis {
  color: #788b88;
}
.programme .time-block .sessions .session.no-time a.axis:before, .programme .time-block .sessions .session.category-side a.axis:before, .programme .time-block .sessions .session.category-good_practice a.axis:before, .programme .time-block .sessions .session.category-workshop a.axis:before, .programme .time-block .sessions .session.category-experiences a.axis:before, .programme .time-block .sessions .session.category-dialog a.axis:before {
  background-color: #788b88;
}
.programme .time-block .sessions .session.category-cultural {
  border-left-color: #6f4f9b;
  color: #6f4f9b;
}
.programme .time-block .sessions .session.category-cultural.is-main > .category {
  background-color: #6f4f9b;
}
.programme .time-block .sessions .session.category-cultural .category,
.programme .time-block .sessions .session.category-cultural .chip {
  border-color: #6f4f9b;
  color: #6f4f9b;
}
.programme .time-block .sessions .session.category-cultural h4 {
  color: #6f4f9b;
}
.programme .time-block .sessions .session.category-cultural a.axis {
  color: #6f4f9b;
}
.programme .time-block .sessions .session.category-cultural a.axis:before {
  background-color: #6f4f9b;
}
.programme .time-block .sessions .session.axis-1 {
  border-left-color: #50a4a9;
  color: #50a4a9;
}
.programme .time-block .sessions .session.axis-1.is-main > .category {
  background-color: #50a4a9;
}
.programme .time-block .sessions .session.axis-1 h4 {
  color: #50a4a9;
}
.programme .time-block .sessions .session.axis-1 .category,
.programme .time-block .sessions .session.axis-1 .chip {
  border-color: #50a4a9;
  color: #50a4a9;
}
.programme .time-block .sessions .session.axis-1 a.axis {
  color: #50a4a9;
}
.programme .time-block .sessions .session.axis-1 a.axis:before {
  background-color: #50a4a9;
}
.programme .time-block .sessions .session.axis-2 {
  border-left-color: #b83c68;
  color: #b83c68;
}
.programme .time-block .sessions .session.axis-2.is-main > .category {
  background-color: #b83c68;
}
.programme .time-block .sessions .session.axis-2 h4 {
  color: #b83c68;
}
.programme .time-block .sessions .session.axis-2 .category,
.programme .time-block .sessions .session.axis-2 .chip {
  border-color: #b83c68;
  color: #b83c68;
}
.programme .time-block .sessions .session.axis-2 a.axis {
  color: #b83c68;
}
.programme .time-block .sessions .session.axis-2 a.axis:before {
  background-color: #b83c68;
}
.programme .time-block .sessions .session.axis-3 {
  border-left-color: #f49525;
  color: #f49525;
}
.programme .time-block .sessions .session.axis-3.is-main > .category {
  background-color: #f49525;
}
.programme .time-block .sessions .session.axis-3 h4 {
  color: #f49525;
}
.programme .time-block .sessions .session.axis-3 .category,
.programme .time-block .sessions .session.axis-3 .chip {
  border-color: #f49525;
  color: #f49525;
}
.programme .time-block .sessions .session.axis-3 a.axis {
  color: #f49525;
}
.programme .time-block .sessions .session.axis-3 a.axis:before {
  background-color: #f49525;
}

.session-content {
  text-align: left;
  overflow: hidden;
}
.session-content > * {
  margin-top: 25px;
  margin-bottom: 0;
}
.session-content > *:last-child {
  margin-bottom: 25px;
}
.session-content a:not(.btn) {
  color: #28347e;
}
.session-content h2 {
  text-transform: none;
  font-weight: 400;
  font-size: 34px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.3;
}
.session-content h2:first-child {
  margin-top: 0.86em;
}
.session-content h2 a {
  text-decoration: none;
}
.session-content h2 a:hover, .session-content h2 a:focus {
  text-decoration: underline;
}
.session-content .meta {
  font-size: 18px;
  padding-left: 30px;
  padding-right: 30px;
}
.session-content .meta > *::after {
  content: " - ";
  display: inline;
}
.session-content .meta > *:last-child::after {
  content: ".";
}
.session-content .category,
.session-content .tag {
  font-size: 16px;
  padding: 3px 0.7em 5px;
  display: inline-block;
  border-radius: 4px;
  color: #faf8f4;
  margin-left: 30px;
}
.session-content .category:first-child,
.session-content .tag:first-child {
  color: #faf8f4 !important;
}
.session-content .category:not(:first-child),
.session-content .tag:not(:first-child) {
  color: #28347e;
  border: #28347e 1px solid;
  font-weight: 600;
}
.session-content div.session-external-url {
  margin: 20px 30px 20px;
  text-decoration: none;
  display: block;
  font-size: 18px;
}
.session-content div.session-external-url a {
  font-weight: 600;
  display: inline-block;
  background-color: #788b88;
  color: #faf8f4 !important;
  padding: 10px 20px;
  text-decoration: none;
}
.session-content div.session-external-url em {
  font-weight: 300;
  display: inline-block;
  margin-left: 10px;
}
.session-content span.session-external-url,
.session-content .axis {
  display: block;
  font-weight: 600;
  font-size: 18px;
  display: block;
  padding: 20px 30px 0;
  text-decoration: none;
}
.session-content span.session-external-url:hover, .session-content span.session-external-url:focus,
.session-content .axis:hover,
.session-content .axis:focus {
  text-decoration: underline;
}
.session-content span.session-external-url:hover, .session-content span.session-external-url:focus {
  text-decoration: none;
}
.session-content .axis {
  border-top: #28347e 1px solid;
}
.session-content > .register {
  padding-left: 30px;
  padding-right: 30px;
}
.session-content > .content {
  font-size: 18px;
  padding-left: 30px;
  padding-right: 30px;
}
.session-content > .content * {
  background: transparent !important;
}
.session-content > .content > * {
  margin-top: 20px;
  margin-bottom: 0;
}
.session-content > .content > *:first-child {
  margin-top: 0;
}
.session-content > .content img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.session-content > .content p,
.session-content > .content li {
  font-size: 18px;
  line-height: 1.5;
}
.session-content > .content li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 1rem;
}
.session-content > .content li:first-child {
  margin-top: 0;
}
.session-content > .content ol {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}
.session-content > .content li[data-list=bullet]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 30px;
}
.session-content > .content li[data-list=ordered],
.session-content > .content ol li:not([data-list=bullet]) {
  counter-increment: list-counter;
}
.session-content > .content li[data-list=ordered]::before,
.session-content > .content ol li:not([data-list=bullet])::before {
  background-color: #28347e;
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  color: #faf8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}
.session-content > .content h2 {
  text-transform: none;
  font-weight: 600;
  font-size: 24px;
  padding-left: 0;
}
.session-content > .content h3 {
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
}

body.page-identifier-programme .top-shapes {
  width: 65%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
body.page-identifier-programme #programme {
  position: relative;
  padding-bottom: 4rem;
  z-index: 2;
}
body.page-identifier-programme #programme > header {
  padding: 5rem 0 2rem;
}

#sessionModal .modal-dialog {
  border-radius: 0;
}
#sessionModal .modal-header {
  padding-left: 0;
  padding-right: 0;
  background-color: #28347e;
  color: #faf8f4;
}
#sessionModal .modal-header .btn-close {
  color: #faf8f4;
}
#sessionModal .modal-content .modal-body {
  text-align: center;
  color: #28347e;
  padding: 0;
}
#sessionModal .modal-content .modal-body .spinner-border {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#sessionModal .modal-content .modal-body .category {
  display: none !important;
}
#sessionModal .modal-content.category-side .modal-header, #sessionModal .modal-content.category-good_practice .modal-header, #sessionModal .modal-content.category-workshop .modal-header, #sessionModal .modal-content.category-experiences .modal-header, #sessionModal .modal-content.category-dialog .modal-header, #sessionModal .modal-content.category-cultural .modal-header {
  background-color: #788b88;
}
#sessionModal .modal-content.category-side .spinner-border, #sessionModal .modal-content.category-good_practice .spinner-border, #sessionModal .modal-content.category-workshop .spinner-border, #sessionModal .modal-content.category-experiences .spinner-border, #sessionModal .modal-content.category-dialog .spinner-border, #sessionModal .modal-content.category-cultural .spinner-border {
  border-color: #788b88;
}
#sessionModal .modal-content.category-side .modal-body, #sessionModal .modal-content.category-good_practice .modal-body, #sessionModal .modal-content.category-workshop .modal-body, #sessionModal .modal-content.category-experiences .modal-body, #sessionModal .modal-content.category-dialog .modal-body, #sessionModal .modal-content.category-cultural .modal-body {
  color: #788b88;
}
#sessionModal .modal-content.category-side .modal-body .category:first-child, #sessionModal .modal-content.category-good_practice .modal-body .category:first-child, #sessionModal .modal-content.category-workshop .modal-body .category:first-child, #sessionModal .modal-content.category-experiences .modal-body .category:first-child, #sessionModal .modal-content.category-dialog .modal-body .category:first-child, #sessionModal .modal-content.category-cultural .modal-body .category:first-child {
  background-color: #788b88;
}
#sessionModal .modal-content.category-side .modal-body .category:not(:first-child), #sessionModal .modal-content.category-good_practice .modal-body .category:not(:first-child), #sessionModal .modal-content.category-workshop .modal-body .category:not(:first-child), #sessionModal .modal-content.category-experiences .modal-body .category:not(:first-child), #sessionModal .modal-content.category-dialog .modal-body .category:not(:first-child), #sessionModal .modal-content.category-cultural .modal-body .category:not(:first-child) {
  color: #788b88;
  border-color: #788b88;
}
#sessionModal .modal-content.category-side .modal-body .content, #sessionModal .modal-content.category-good_practice .modal-body .content, #sessionModal .modal-content.category-workshop .modal-body .content, #sessionModal .modal-content.category-experiences .modal-body .content, #sessionModal .modal-content.category-dialog .modal-body .content, #sessionModal .modal-content.category-cultural .modal-body .content {
  border-top-color: #788b88;
}
#sessionModal .modal-content.category-side .modal-body .axis, #sessionModal .modal-content.category-good_practice .modal-body .axis, #sessionModal .modal-content.category-workshop .modal-body .axis, #sessionModal .modal-content.category-experiences .modal-body .axis, #sessionModal .modal-content.category-dialog .modal-body .axis, #sessionModal .modal-content.category-cultural .modal-body .axis {
  border-top-color: #788b88;
}
#sessionModal .modal-content.category-side .modal-body a,
#sessionModal .modal-content.category-side .modal-body strong, #sessionModal .modal-content.category-good_practice .modal-body a,
#sessionModal .modal-content.category-good_practice .modal-body strong, #sessionModal .modal-content.category-workshop .modal-body a,
#sessionModal .modal-content.category-workshop .modal-body strong, #sessionModal .modal-content.category-experiences .modal-body a,
#sessionModal .modal-content.category-experiences .modal-body strong, #sessionModal .modal-content.category-dialog .modal-body a,
#sessionModal .modal-content.category-dialog .modal-body strong, #sessionModal .modal-content.category-cultural .modal-body a,
#sessionModal .modal-content.category-cultural .modal-body strong {
  color: #788b88 !important;
}
#sessionModal .modal-content.category-side .modal-body > .session-content > .content ol li:not([data-list=bullet])::before, #sessionModal .modal-content.category-good_practice .modal-body > .session-content > .content ol li:not([data-list=bullet])::before, #sessionModal .modal-content.category-workshop .modal-body > .session-content > .content ol li:not([data-list=bullet])::before, #sessionModal .modal-content.category-experiences .modal-body > .session-content > .content ol li:not([data-list=bullet])::before, #sessionModal .modal-content.category-dialog .modal-body > .session-content > .content ol li:not([data-list=bullet])::before, #sessionModal .modal-content.category-cultural .modal-body > .session-content > .content ol li:not([data-list=bullet])::before {
  background-color: #788b88;
}
#sessionModal .modal-content.axis-1 .modal-header {
  background-color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .spinner-border {
  border-color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .modal-body {
  color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .modal-body .category:first-child {
  background-color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .modal-body .category:not(:first-child) {
  color: #50a4a9;
  border-color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .modal-body .content {
  border-top-color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .modal-body .axis {
  border-top-color: #50a4a9;
}
#sessionModal .modal-content.axis-1 .modal-body a,
#sessionModal .modal-content.axis-1 .modal-body strong {
  color: #50a4a9 !important;
}
#sessionModal .modal-content.axis-1 .modal-body > .session-content > .content ol li:not([data-list=bullet])::before {
  background-color: #50a4a9;
}
#sessionModal .modal-content.axis-2 .modal-header {
  background-color: #b83c68;
}
#sessionModal .modal-content.axis-2 .spinner-border {
  border-color: #b83c68;
}
#sessionModal .modal-content.axis-2 .modal-body {
  color: #b83c68;
}
#sessionModal .modal-content.axis-2 .modal-body .category:first-child {
  background-color: #b83c68;
}
#sessionModal .modal-content.axis-2 .modal-body .category:not(:first-child) {
  color: #b83c68;
  border-color: #b83c68;
}
#sessionModal .modal-content.axis-2 .modal-body .content {
  border-top-color: #b83c68;
}
#sessionModal .modal-content.axis-2 .modal-body .axis {
  border-top-color: #b83c68;
}
#sessionModal .modal-content.axis-2 .modal-body a,
#sessionModal .modal-content.axis-2 .modal-body strong {
  color: #b83c68 !important;
}
#sessionModal .modal-content.axis-2 .modal-body > .session-content > .content ol li:not([data-list=bullet])::before {
  background-color: #b83c68;
}
#sessionModal .modal-content.axis-3 .modal-header {
  background-color: #f49525;
}
#sessionModal .modal-content.axis-3 .spinner-border {
  border-color: #f49525;
}
#sessionModal .modal-content.axis-3 .modal-body {
  color: #f49525;
}
#sessionModal .modal-content.axis-3 .modal-body .category:first-child {
  background-color: #f49525;
}
#sessionModal .modal-content.axis-3 .modal-body .category:not(:first-child) {
  color: #f49525;
  border-color: #f49525;
}
#sessionModal .modal-content.axis-3 .modal-body .content {
  border-top-color: #f49525;
}
#sessionModal .modal-content.axis-3 .modal-body .axis {
  border-top-color: #f49525;
}
#sessionModal .modal-content.axis-3 .modal-body a,
#sessionModal .modal-content.axis-3 .modal-body strong {
  color: #f49525 !important;
}
#sessionModal .modal-content.axis-3 .modal-body > .session-content > .content ol li:not([data-list=bullet])::before {
  background-color: #f49525;
}
#sessionModal .modal-body {
  text-align: center;
}

> .session-content {
  text-align: left;
  overflow: hidden;
}
> .session-content > * {
  margin-top: 25px;
  margin-bottom: 0;
}
> .session-content > *:last-child {
  margin-bottom: 25px;
}
> .session-content a {
  color: #28347e;
}
> .session-content h2 {
  text-transform: none;
  font-weight: 400;
  font-size: 34px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.3;
}
> .session-content h2:first-child {
  margin-top: 0.86em;
}
> .session-content h2 a {
  text-decoration: none;
}
> .session-content h2 a:hover, > .session-content h2 a:focus {
  text-decoration: underline;
}
> .session-content .meta {
  font-size: 18px;
  padding-left: 30px;
  padding-right: 30px;
}
> .session-content .meta > *::after {
  content: " - ";
  display: inline;
}
> .session-content .meta > *:last-child::after {
  content: ".";
}
> .session-content .category,
> .session-content .tag {
  font-size: 16px;
  padding: 3px 0.7em 5px;
  display: inline-block;
  border-radius: 4px;
  color: #faf8f4;
  margin-left: 30px;
}
> .session-content .category:first-child,
> .session-content .tag:first-child {
  color: #faf8f4 !important;
}
> .session-content .category:not(:first-child),
> .session-content .tag:not(:first-child) {
  color: #28347e;
  border: #28347e 1px solid;
  font-weight: 600;
}
> .session-content div.session-external-url {
  margin: 20px 30px 20px;
  text-decoration: none;
  display: block;
  font-size: 18px;
}
> .session-content div.session-external-url a {
  font-weight: 600;
  display: inline-block;
  background-color: #788b88;
  color: #faf8f4 !important;
  padding: 10px 20px;
  text-decoration: none;
}
> .session-content div.session-external-url em {
  font-weight: 300;
  display: inline-block;
  margin-left: 10px;
}
> .session-content span.session-external-url,
> .session-content .axis {
  display: block;
  font-weight: 600;
  font-size: 18px;
  display: block;
  padding: 20px 30px 0;
  text-decoration: none;
}
> .session-content span.session-external-url:hover, > .session-content span.session-external-url:focus,
> .session-content .axis:hover,
> .session-content .axis:focus {
  text-decoration: underline;
}
> .session-content span.session-external-url:hover, > .session-content span.session-external-url:focus {
  text-decoration: none;
}
> .session-content .axis {
  border-top: #28347e 1px solid;
}
> .session-content > .content {
  font-size: 18px;
  padding-left: 30px;
  padding-right: 30px;
}
> .session-content > .content * {
  background: transparent !important;
}
> .session-content > .content > * {
  margin-top: 20px;
  margin-bottom: 0;
}
> .session-content > .content > *:first-child {
  margin-top: 0;
}
> .session-content > .content img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
> .session-content > .content p,
> .session-content > .content li {
  font-size: 18px;
  line-height: 1.5;
}
> .session-content > .content li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 1rem;
}
> .session-content > .content li:first-child {
  margin-top: 0;
}
> .session-content > .content ol {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}
> .session-content > .content li[data-list=bullet]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 30px;
}
> .session-content > .content li[data-list=ordered],
> .session-content > .content ol li:not([data-list=bullet]) {
  counter-increment: list-counter;
}
> .session-content > .content li[data-list=ordered]::before,
> .session-content > .content ol li:not([data-list=bullet])::before {
  background-color: #28347e;
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  color: #faf8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}
> .session-content > .content h2 {
  text-transform: none;
  font-weight: 600;
  font-size: 24px;
  padding-left: 0;
}
> .session-content > .content h3 {
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
}

body.touch-media .glide__track {
  overflow-x: auto !important;
}

section.speakers .glide {
  position: relative;
}
section.speakers .glide .glide__arrows {
  display: flex;
  color: #28347e;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 680px) {
  section.speakers .glide .glide__arrows {
    margin-bottom: 2rem;
  }
}
section.speakers .glide .glide__arrows .btn {
  width: 60px;
  height: 60px;
  padding: 0;
}
@media screen and (max-width: 680px) {
  section.speakers .glide .glide__arrows .btn {
    width: 40px;
    height: 40px;
  }
}
section.speakers .glide .glide__arrows .btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
section.speakers .glide .glide__arrows .btn i {
  font-size: 35px;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
@media screen and (max-width: 680px) {
  section.speakers .glide .glide__arrows .btn i {
    font-size: 28px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
section.speakers .glide .glide__arrows .btn i::before {
  margin: 0;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 55px;
}
@media screen and (max-width: 680px) {
  section.speakers .glide .glide__arrows .btn i::before {
    width: 40px;
    height: 40px;
    line-height: 35px;
  }
}
section.speakers .glide .glide__arrows .btn.glide__arrow--left {
  margin-left: 1.6em;
}
section.speakers .glide .glide__arrows .btn.glide__arrow--left i::before {
  transform: translateX(-3px);
}
section.speakers .glide .glide__arrows .btn.glide__arrow--right {
  margin-left: 0.7em;
}
section.speakers.scrollable {
  margin: 0;
}
section.speakers.scrollable .glide__slides {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.speakers.scrollable .glide__slide {
  height: 100%;
  position: relative;
  min-width: 240px;
}
section.speakers.scrollable .glide__slide .speaker {
  color: #28347e;
  text-decoration: none;
}
section.speakers.scrollable .glide__slide .speaker:hover, section.speakers.scrollable .glide__slide .speaker:active, section.speakers.scrollable .glide__slide .speaker:focus {
  outline: none;
  color: #ea546c;
}
section.speakers.scrollable .glide__slide .speaker:hover .content .h5, section.speakers.scrollable .glide__slide .speaker:active .content .h5, section.speakers.scrollable .glide__slide .speaker:focus .content .h5 {
  text-decoration: underline;
}
section.speakers.scrollable .glide__slide .speaker:hover > figure, section.speakers.scrollable .glide__slide .speaker:active > figure, section.speakers.scrollable .glide__slide .speaker:focus > figure {
  border-color: #ea546c;
}
section.speakers.scrollable .glide__slide .speaker > figure {
  width: 66%;
  padding-top: 66%;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 1rem;
  border: #dcd1c4 1px solid;
  background-size: cover;
  background-position: top center;
}
section.speakers.scrollable .glide__slide .speaker > figure img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
section.speakers.scrollable .glide__slide .speaker > .content {
  padding: 0 0.75rem;
  text-align: center;
}
section.speakers.scrollable .glide__slide .speaker > .content .h5 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.35rem;
  text-transform: none;
}
section.speakers.scrollable .glide__slide .speaker > .content strong {
  font-weight: 400;
}
section.speakers.scrollable .glide__slide .speaker > .content em {
  font-style: normal;
  font-weight: 700;
}
section.speakers.scrollable .glide__slide .speaker > .content strong,
section.speakers.scrollable .glide__slide .speaker > .content em {
  font-size: 16px;
  display: block;
}
@media screen and (min-width: 1540px) {
  section.speakers.scrollable .glide__slide {
    min-width: 280px;
  }
}
@media screen and (min-width: 1840px) {
  section.speakers.scrollable .glide__slide {
    min-width: 320px;
  }
}
@media screen and (max-width: 680px) {
  section.speakers.scrollable .glide__slide {
    min-width: 200px;
  }
}
section.speakers.scrollable .glide__track {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
section.speakers.scrollable .glide__track.dragging {
  cursor: grabbing !important;
}
section.speakers.scrollable .glide__track.dragging a {
  cursor: grabbing !important;
}
section.speakers.archive ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 0.86em;
  padding: 0;
}
@media screen and (min-width: 1540px) {
  section.speakers.archive ul {
    grid-gap: 1em;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
section.speakers.compact ul {
  list-style: none;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
section.speakers.compact ul > li .speaker {
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  text-decoration: none;
}
section.speakers.compact ul > li .speaker:hover, section.speakers.compact ul > li .speaker:active, section.speakers.compact ul > li .speaker:focus {
  outline: none;
}
section.speakers.compact ul > li .speaker:hover .content .h5, section.speakers.compact ul > li .speaker:active .content .h5, section.speakers.compact ul > li .speaker:focus .content .h5 {
  text-decoration: underline;
}
section.speakers.compact ul > li .speaker > figure {
  width: 20%;
  padding-top: 20%;
  margin-top: 4px;
  border-radius: 50%;
  border: #dcd1c4 1px solid;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: top center;
}
section.speakers.compact ul > li .speaker > figure img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
section.speakers.compact ul > li .speaker > .content {
  width: 80%;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 1rem;
  text-align: left;
}
section.speakers.compact ul > li .speaker > .content .h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: none;
}
section.speakers.compact ul > li .speaker > .content > strong,
section.speakers.compact ul > li .speaker > .content > em {
  font-weight: 400;
  opacity: 1;
  line-height: 1.4;
  font-size: 16px;
  display: block;
  margin-top: 0.5rem;
}
section.speakers.compact ul > li .speaker > .content > em {
  font-weight: 700;
  font-style: normal;
}

body.page-identifier-speakers .top-image {
  height: 10rem;
  width: auto;
  display: none;
}
body.page-identifier-speakers .top-shapes {
  width: 70%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}
body.page-identifier-speakers #speakers {
  position: relative;
  z-index: 3;
  padding-bottom: 3rem;
}
body.page-identifier-speakers #speakers > div > header {
  padding: 4rem 2rem 3rem;
  text-align: left;
}
body.page-identifier-speakers #speakers > div > header h2 {
  color: #28347e;
}

#speakerModal .modal-dialog {
  border-radius: 0;
}
#speakerModal .modal-header {
  background-color: #28347e;
  color: #faf8f4;
}
#speakerModal .modal-header .btn-close {
  color: #faf8f4;
}
#speakerModal .modal-body {
  text-align: center;
}
#speakerModal .modal-body .speaker-content .content {
  font-size: 1em;
  text-align: left;
}
#speakerModal .modal-body .speaker-content .content header {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#speakerModal .modal-body .speaker-content .content header figure {
  width: 26%;
  padding-top: 26%;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2em;
  border-radius: 50%;
  border: #dcd1c4 1px solid;
  background-size: cover;
  background-position: top center;
}
#speakerModal .modal-body .speaker-content .content header figure img {
  width: 100%;
  height: auto;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#speakerModal .modal-body .speaker-content .content header .head-content {
  width: 100%;
  padding-left: 0;
  text-align: center;
}
#speakerModal .modal-body .speaker-content .content header .head-content h1 {
  text-transform: none;
  font-weight: 400;
  line-height: 1.2;
  font-size: 24px;
  color: #28347e;
  font-weight: 500;
}
#speakerModal .modal-body .speaker-content .content header .head-content h1 a {
  text-decoration: none;
}
#speakerModal .modal-body .speaker-content .content header .head-content h1 a:hover, #speakerModal .modal-body .speaker-content .content header .head-content h1 a:focus {
  text-decoration: underline;
}
#speakerModal .modal-body .speaker-content .content header .head-content .meta {
  margin-top: 0.4em;
}
#speakerModal .modal-body .speaker-content .content header .head-content .meta > strong {
  font-weight: 400;
}
#speakerModal .modal-body .speaker-content .content header .head-content .meta > em {
  font-weight: 700;
}
#speakerModal .modal-body .speaker-content .content header .head-content .meta > strong,
#speakerModal .modal-body .speaker-content .content header .head-content .meta > em {
  display: block;
  margin-top: 0.4em;
  font-size: 16px;
  color: #28347e;
  font-style: normal;
}
#speakerModal .modal-body .speaker-content .content .bio {
  margin-top: 1.2em;
  font-size: 16px;
  color: #28347e;
}
#speakerModal .modal-body .speaker-content .content .bio p,
#speakerModal .modal-body .speaker-content .content .bio li,
#speakerModal .modal-body .speaker-content .content .bio strong,
#speakerModal .modal-body .speaker-content .content .bio span,
#speakerModal .modal-body .speaker-content .content .bio a,
#speakerModal .modal-body .speaker-content .content .bio em,
#speakerModal .modal-body .speaker-content .content .bio i {
  color: #28347e !important;
  background: transparent !important;
}
#speakerModal .modal-body .speaker-content .content .bio > * {
  font-size: 16px;
  margin-bottom: 0.7em;
  margin-top: 0;
}
#speakerModal .modal-body .speaker-content .content .bio > *:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=theme.css.map */
