body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Courier Prime', monospace;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Courier Prime', monospace;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #bbbbbb !important;
}
.bg-success {
  background-color: #efdfd0 !important;
}
.bg-info {
  background-color: #bbbbbb !important;
}
.bg-warning {
  background-color: #ffc523 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-success,
.btn-success:active {
  background-color: #efdfd0 !important;
  border-color: #efdfd0 !important;
  color: #8f5e31 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #d9b38f !important;
  border-color: #d9b38f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #8f5e31 !important;
  background-color: #d9b38f !important;
  border-color: #d9b38f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffc523 !important;
  border-color: #ffc523 !important;
  color: #231a00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #cb9600 !important;
  border-color: #cb9600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #231a00 !important;
  background-color: #cb9600 !important;
  border-color: #cb9600 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a80000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #efdfd0;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d9b38f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #8f5e31 !important;
  background-color: #efdfd0 !important;
  border-color: #efdfd0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffc523;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #cb9600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #231a00 !important;
  background-color: #ffc523 !important;
  border-color: #ffc523 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bbbbbb !important;
}
.text-secondary {
  color: #ff0000 !important;
}
.text-success {
  color: #efdfd0 !important;
}
.text-info {
  color: #bbbbbb !important;
}
.text-warning {
  color: #ffc523 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #888888 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #990000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d5ab84 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #888888 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #bc8a00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bbbbbb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bbbbbb;
}
.alert-warning {
  background-color: #ffc523;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffbef;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Courier Prime', monospace;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Courier Prime', monospace;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #bbbbbb;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bbbbbb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff0000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23bbbbbb' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-u9g5DkPALk {
  background-color: #232323;
}
.cid-u9g5DkPALk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9g5DkPALk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9g5DkPALk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u9g5DkPALk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u9g5DkPALk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u9g5DkPALk .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-u9g5DkPALk .mbr-text,
.cid-u9g5DkPALk .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-u9g5DkPALk .mbr-text,
.cid-u9g5DkPALk .mbr-section-btn P {
  text-align: center;
}
.cid-u9g5DkPALk P {
  color: #ff0000;
}
.cid-ubhgGZPK4P {
  z-index: 1000;
  width: 100%;
}
.cid-ubhgGZPK4P nav.navbar {
  position: fixed;
}
.cid-ubhgGZPK4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhgGZPK4P .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubhgGZPK4P .dropdown-item:hover,
.cid-ubhgGZPK4P .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubhgGZPK4P .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubhgGZPK4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhgGZPK4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhgGZPK4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhgGZPK4P .nav-link {
  position: relative;
}
.cid-ubhgGZPK4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .container {
    flex-wrap: nowrap;
  }
}
.cid-ubhgGZPK4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown-menu,
.cid-ubhgGZPK4P .navbar.opened {
  background: #232323 !important;
}
.cid-ubhgGZPK4P .nav-item:focus,
.cid-ubhgGZPK4P .nav-link:focus {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhgGZPK4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhgGZPK4P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubhgGZPK4P .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhgGZPK4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhgGZPK4P .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhgGZPK4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar.collapsed {
  justify-content: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhgGZPK4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubhgGZPK4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhgGZPK4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhgGZPK4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubhgGZPK4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhgGZPK4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhgGZPK4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhgGZPK4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhgGZPK4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhgGZPK4P .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhgGZPK4P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown-item.active,
.cid-ubhgGZPK4P .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhgGZPK4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhgGZPK4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhgGZPK4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhgGZPK4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhgGZPK4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhgGZPK4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhgGZPK4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubhgGZPK4P .navbar {
    height: 70px;
  }
  .cid-ubhgGZPK4P .navbar.opened {
    height: auto;
  }
  .cid-ubhgGZPK4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhgGZPK4P .floatleft {
  margin-left: auto !important;
}
.cid-ubhgGZPK4P .floatright {
  margin-right: auto !important;
}
.cid-tP7SGloeZ4 {
  background-color: #232323;
}
.cid-tP7SGloeZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP7SGloeZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP7SGloeZ4 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tP7SGloeZ4 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tP7SGloeZ4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tP7SGloeZ4 .mbr-section-title {
  color: #e6c63b;
}
.cid-tP80RBGhS8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
.cid-tP80RBGhS8 img,
.cid-tP80RBGhS8 .item-img {
  width: 100%;
}
.cid-tP80RBGhS8 .item:focus,
.cid-tP80RBGhS8 span:focus {
  outline: none;
}
.cid-tP80RBGhS8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tP80RBGhS8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tP80RBGhS8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tP80RBGhS8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tP80RBGhS8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tP80RBGhS8 .mbr-section-title {
  color: #232323;
}
.cid-tP80RBGhS8 .mbr-text,
.cid-tP80RBGhS8 .mbr-section-btn {
  text-align: left;
}
.cid-tP80RBGhS8 .item-title {
  text-align: left;
  color: #6592e6;
}
.cid-tP80RBGhS8 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tPbUGUQqYQ {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-tPbUGUQqYQ .v-center {
  margin: auto;
}
.cid-tPbUGUQqYQ h2 {
  text-align: left;
}
.cid-tPbUGUQqYQ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tPbUGUQqYQ p {
  color: #767676;
  text-align: left;
}
.cid-tPbUGUQqYQ .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tPbUGUQqYQ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #232323;
  border-radius: 15px;
}
.cid-tPbUGUQqYQ .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tPbUGUQqYQ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #232323;
  border-radius: 15px;
}
.cid-tPbUGUQqYQ .mbr-figure img {
  padding: 2rem;
}
.cid-tPbUGUQqYQ .card {
  padding: 0 1rem;
}
.cid-tPbUGUQqYQ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tPbUGUQqYQ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-tPbUGUQqYQ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tPbUGUQqYQ .card-img span {
    font-size: 40px !important;
  }
}
.cid-tPbUGUQqYQ H2 {
  text-align: center;
  color: #551983;
}
.cid-tPbUGUQqYQ .mbr-text {
  text-align: center;
  color: #635a51;
}
.cid-tPbUGUQqYQ H4 {
  color: #ffc523;
  text-align: right;
}
.cid-tPYmudoT7p .divider-top {
  position: relative;
  padding: 2.5em;
  background: #232323;
}
.cid-tPYmudoT7p .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #5c4de4;
}
.cid-tPYmudoT7p .divider-top::before,
.cid-tPYmudoT7p .divider-bottom::before,
.cid-tPYmudoT7p .divider-top::after,
.cid-tPYmudoT7p .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tPYmudoT7p .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tPYmudoT7p .divider-triangles::before {
  top: -50px;
}
.cid-tPYmudoT7p .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tPYmudoT7p .divider-halfcircle::before {
  top: -50px;
}
.cid-tPYmudoT7p .divider-multitriangles::before,
.cid-tPYmudoT7p .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tPYmudoT7p .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #232323, 50px -50px 0 #232323;
}
.cid-tPYilIIkA2 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #5c4de4;
}
.cid-tPYilIIkA2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPYilIIkA2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPYilIIkA2 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tPYilIIkA2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tPYilIIkA2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tPYilIIkA2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tPYilIIkA2 .mbr-section-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-tPYilIIkA2 .mbr-text {
  color: #bbbbbb;
}
.cid-tPYilIIkA2 .name {
  color: #bbbbbb;
}
.cid-tPYilIIkA2 .position {
  color: #bbbbbb;
}
.cid-tPYilJYHwA {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #5c4de4;
}
.cid-tPYilJYHwA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPYilJYHwA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPYilJYHwA .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tPYilJYHwA .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tPYilJYHwA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tPYilJYHwA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #bbbbbb;
  transition: all 0.3s;
}
.cid-tPYilJYHwA .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tPYilJYHwA .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-tPYilJYHwA .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tPYilJYHwA .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPYilJYHwA .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPYilJYHwA .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tPYilJYHwA .mbr-text,
.cid-tPYilJYHwA .social-row {
  color: #bbbbbb;
}
.cid-tPYilJYHwA .card-subtitle {
  color: #bbbbbb;
}
.cid-tPYilJYHwA .card-title {
  color: #bbbbbb;
}
.cid-tPYilKD3PJ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #1b428f;
}
.cid-tPYilKD3PJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPYilKD3PJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPYilKD3PJ .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tPYilKD3PJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tPYilKD3PJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tPYilKD3PJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tPYilKD3PJ .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tPYilKD3PJ .mbr-text {
  color: #bbbbbb;
}
.cid-tPYilKD3PJ .name {
  color: #353535;
}
.cid-tPYilKD3PJ .position {
  color: #353535;
}
.cid-tPYilLyFAZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1b428f;
}
.cid-tPYilLyFAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPYilLyFAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPYilLyFAZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tPYilLyFAZ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tPYilLyFAZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tPYilLyFAZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #bbbbbb;
  transition: all 0.3s;
}
.cid-tPYilLyFAZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tPYilLyFAZ .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-tPYilLyFAZ .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tPYilLyFAZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPYilLyFAZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPYilLyFAZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tPYilLyFAZ .card-title {
  color: #bbbbbb;
}
.cid-tPYilLyFAZ .card-subtitle {
  color: #bbbbbb;
}
.cid-tPYilLyFAZ .mbr-text,
.cid-tPYilLyFAZ .social-row {
  color: #bbbbbb;
}
.cid-tPYilMeut3 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPYilMeut3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPYilMeut3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPYilMeut3 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tPYilMeut3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tPYilMeut3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tPYilMeut3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tPYilMeut3 .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tPYilMeut3 .mbr-text {
  color: #bbbbbb;
}
.cid-tPYilMeut3 .name {
  color: #353535;
}
.cid-tPYilMeut3 .position {
  color: #353535;
}
.cid-tPYilMsxT5 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tPYilMsxT5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPYilMsxT5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPYilMsxT5 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tPYilMsxT5 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tPYilMsxT5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tPYilMsxT5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #bbbbbb;
  transition: all 0.3s;
}
.cid-tPYilMsxT5 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tPYilMsxT5 .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-tPYilMsxT5 .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tPYilMsxT5 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tPYilMsxT5 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPYilMsxT5 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tPYilMsxT5 .mbr-text,
.cid-tPYilMsxT5 .social-row {
  color: #353535;
}
.cid-tPYilMsxT5 .card-subtitle {
  color: #353535;
}
.cid-tPYilMsxT5 .card-title {
  color: #353535;
}
.cid-ubhgGZPK4P {
  z-index: 1000;
  width: 100%;
}
.cid-ubhgGZPK4P nav.navbar {
  position: fixed;
}
.cid-ubhgGZPK4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhgGZPK4P .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubhgGZPK4P .dropdown-item:hover,
.cid-ubhgGZPK4P .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubhgGZPK4P .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubhgGZPK4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhgGZPK4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhgGZPK4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhgGZPK4P .nav-link {
  position: relative;
}
.cid-ubhgGZPK4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .container {
    flex-wrap: nowrap;
  }
}
.cid-ubhgGZPK4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown-menu,
.cid-ubhgGZPK4P .navbar.opened {
  background: #232323 !important;
}
.cid-ubhgGZPK4P .nav-item:focus,
.cid-ubhgGZPK4P .nav-link:focus {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhgGZPK4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhgGZPK4P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubhgGZPK4P .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhgGZPK4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhgGZPK4P .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhgGZPK4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar.collapsed {
  justify-content: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhgGZPK4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubhgGZPK4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhgGZPK4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhgGZPK4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubhgGZPK4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhgGZPK4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhgGZPK4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhgGZPK4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhgGZPK4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhgGZPK4P .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhgGZPK4P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown-item.active,
.cid-ubhgGZPK4P .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhgGZPK4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhgGZPK4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhgGZPK4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhgGZPK4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhgGZPK4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhgGZPK4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhgGZPK4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubhgGZPK4P .navbar {
    height: 70px;
  }
  .cid-ubhgGZPK4P .navbar.opened {
    height: auto;
  }
  .cid-ubhgGZPK4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhgGZPK4P .floatleft {
  margin-left: auto !important;
}
.cid-ubhgGZPK4P .floatright {
  margin-right: auto !important;
}
.cid-ZJ8tObyu3F {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #4479d9;
}
.cid-ZJ8tObyu3F .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-ZJ8tObyu3F .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-ZJ8tObyu3F .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-ZJ8tObyu3F .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ZJ8tObyu3F .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #232323;
}
.cid-ZJ8tObyu3F .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-ZJ8tObyu3F .card .panel-body {
  color: #767676;
}
.cid-ZJ8tObyu3F H4 {
  color: #ffffff;
}
.cid-ZJ8tObyu3F H2 {
  color: #ffffff;
}
.cid-ZJ8tObyu3F .panel-text {
  color: #ffffff;
}
.cid-ZJ8tObyu3F .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaagq5TQ5 {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #232323;
}
.cid-tQaagq5TQ5 .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-tQaagq5TQ5 .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-tQaagq5TQ5 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tQaagq5TQ5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQaagq5TQ5 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #4479d9;
}
.cid-tQaagq5TQ5 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tQaagq5TQ5 .card .panel-body {
  color: #767676;
}
.cid-tQaagq5TQ5 H4 {
  color: #ffffff;
}
.cid-tQaagq5TQ5 H2 {
  color: #bbbbbb;
}
.cid-tQaagq5TQ5 .panel-text {
  color: #ffffff;
}
.cid-tQaagq5TQ5 .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaah0yU9p {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #4479d9;
}
.cid-tQaah0yU9p .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-tQaah0yU9p .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-tQaah0yU9p .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tQaah0yU9p .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQaah0yU9p .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #0f7699;
}
.cid-tQaah0yU9p .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tQaah0yU9p .card .panel-body {
  color: #767676;
}
.cid-tQaah0yU9p H4 {
  color: #ffffff;
}
.cid-tQaah0yU9p H2 {
  color: #ffffff;
}
.cid-tQaah0yU9p .panel-text {
  color: #ffffff;
}
.cid-tQaah0yU9p .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaahzn6ri {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #232323;
}
.cid-tQaahzn6ri .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-tQaahzn6ri .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-tQaahzn6ri .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tQaahzn6ri .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQaahzn6ri .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #0f7699;
}
.cid-tQaahzn6ri .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tQaahzn6ri .card .panel-body {
  color: #767676;
}
.cid-tQaahzn6ri H4 {
  color: #ffffff;
}
.cid-tQaahzn6ri H2 {
  color: #ffffff;
}
.cid-tQaahzn6ri .panel-text {
  color: #ffffff;
}
.cid-tQaahzn6ri .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaai687im {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #4479d9;
}
.cid-tQaai687im .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-tQaai687im .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-tQaai687im .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tQaai687im .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQaai687im .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #0f7699;
}
.cid-tQaai687im .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tQaai687im .card .panel-body {
  color: #767676;
}
.cid-tQaai687im H4 {
  color: #ffffff;
}
.cid-tQaai687im H2 {
  color: #ffffff;
}
.cid-tQaai687im .panel-text {
  color: #ffffff;
}
.cid-tQaai687im .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaaiukd7h {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #232323;
}
.cid-tQaaiukd7h .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-tQaaiukd7h .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-tQaaiukd7h .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tQaaiukd7h .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQaaiukd7h .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #0f7699;
}
.cid-tQaaiukd7h .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tQaaiukd7h .card .panel-body {
  color: #767676;
}
.cid-tQaaiukd7h H4 {
  color: #ffffff;
}
.cid-tQaaiukd7h H2 {
  color: #ffffff;
}
.cid-tQaaiukd7h .panel-text {
  color: #ffffff;
}
.cid-tQaaiukd7h .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaakbADjw {
  padding-top: 75px;
  padding-bottom: 60px;
  position: relative;
  background-color: #4479d9;
}
.cid-tQaakbADjw .card {
  border-radius: 15px;
  margin-bottom: 1px;
}
.cid-tQaakbADjw .card .card-header {
  border-radius: 15px;
  border: 0px;
  padding: 0;
}
.cid-tQaakbADjw .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tQaakbADjw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tQaakbADjw .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-bottom: 0;
  background-color: #0f7699;
}
.cid-tQaakbADjw .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tQaakbADjw .card .panel-body {
  color: #767676;
}
.cid-tQaakbADjw H4 {
  color: #ffffff;
}
.cid-tQaakbADjw H2 {
  color: #ffffff;
}
.cid-tQaakbADjw .panel-text {
  color: #ffffff;
}
.cid-tQaakbADjw .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 15px;
}
.cid-tQaeAwAhJ5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tQaeAwAhJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQaeAwAhJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQaeAwAhJ5 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tQaeAwAhJ5 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQaeAwAhJ5 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tQaeAwAhJ5 .card {
    margin-bottom: 2rem;
  }
  .cid-tQaeAwAhJ5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tQamgOgntq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tQamgOgntq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQamgOgntq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQamgOgntq .video-wrapper iframe {
  width: 100%;
}
.cid-tQamgOgntq .mbr-section-title,
.cid-tQamgOgntq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tQamgOgntq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tQand11C1b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQand11C1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQand11C1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQand11C1b .row {
  flex-direction: row-reverse;
}
.cid-tQand11C1b .video-wrapper iframe {
  width: 100%;
}
.cid-tQand11C1b .mbr-section-title,
.cid-tQand11C1b .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tQand11C1b .text-wrapper {
    padding: 2rem;
  }
}
.cid-tQanTb6Vxa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tQanTb6Vxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQanTb6Vxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQanTb6Vxa .video-wrapper iframe {
  width: 100%;
}
.cid-tQanTb6Vxa .mbr-section-title,
.cid-tQanTb6Vxa .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tQanTb6Vxa .text-wrapper {
    padding: 2rem;
  }
}
.cid-tQYGLCgx2O {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #000000;
}
.cid-tQYGLCgx2O .v-center {
  margin: auto;
}
.cid-tQYGLCgx2O h2 {
  text-align: left;
}
.cid-tQYGLCgx2O h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tQYGLCgx2O p {
  color: #767676;
  text-align: left;
}
.cid-tQYGLCgx2O .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tQYGLCgx2O .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #000000;
  border-radius: 15px;
}
.cid-tQYGLCgx2O .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tQYGLCgx2O .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #000000;
  border-radius: 15px;
}
.cid-tQYGLCgx2O .mbr-figure img {
  padding: 2rem;
}
.cid-tQYGLCgx2O .card {
  padding: 0 1rem;
}
.cid-tQYGLCgx2O .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tQYGLCgx2O .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tQYGLCgx2O .mbr-figure {
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-tQYGLCgx2O .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-tQYGLCgx2O .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-tQYGLCgx2O .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-tQYGLCgx2O .card-img span {
    font-size: 40px !important;
  }
}
.cid-tQYGLCgx2O H2 {
  text-align: left;
  color: #efdfd0;
}
.cid-tQYGLCgx2O .mbr-text {
  text-align: left;
  color: #efdfd0;
}
.cid-tQYGLCgx2O H4 {
  color: #efdfd0;
  text-align: left;
}
.cid-u9aY06XmUM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-u9aY06XmUM .carousel {
    min-height: 700px;
  }
  .cid-u9aY06XmUM .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u9aY06XmUM .carousel {
    min-height: 455px;
  }
  .cid-u9aY06XmUM .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-u9aY06XmUM .carousel {
    min-height: 385px;
  }
  .cid-u9aY06XmUM .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-u9aY06XmUM .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u9aY06XmUM .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u9aY06XmUM .carousel,
.cid-u9aY06XmUM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u9aY06XmUM .item-wrapper {
  width: 100%;
}
.cid-u9aY06XmUM .carousel-caption {
  bottom: 40px;
}
.cid-u9aY06XmUM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u9aY06XmUM .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u9aY06XmUM .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u9aY06XmUM .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u9aY06XmUM .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u9aY06XmUM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9aY06XmUM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u9aY06XmUM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u9aY06XmUM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u9aY06XmUM .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u9aY06XmUM .carousel-indicators li.active,
.cid-u9aY06XmUM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u9aY06XmUM .carousel-indicators li::after,
.cid-u9aY06XmUM .carousel-indicators li::before {
  content: none;
}
.cid-u9aY06XmUM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u9aY06XmUM .carousel-indicators {
    display: none !important;
  }
}
.cid-u9aY06XmUM H5 {
  text-align: left;
}
.cid-u9aY06XmUM P {
  text-align: left;
}
.cid-u9aXKGY2SE {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-u9aXKGY2SE .v-center {
  margin: auto;
}
.cid-u9aXKGY2SE h2 {
  text-align: left;
}
.cid-u9aXKGY2SE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-u9aXKGY2SE p {
  color: #767676;
  text-align: left;
}
.cid-u9aXKGY2SE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-u9aXKGY2SE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #232323;
  border-radius: 15px;
}
.cid-u9aXKGY2SE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-u9aXKGY2SE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #232323;
  border-radius: 15px;
}
.cid-u9aXKGY2SE .mbr-figure img {
  padding: 2rem;
}
.cid-u9aXKGY2SE .card {
  padding: 0 1rem;
}
.cid-u9aXKGY2SE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-u9aXKGY2SE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-u9aXKGY2SE .mbr-figure {
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-u9aXKGY2SE .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-u9aXKGY2SE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-u9aXKGY2SE .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-u9aXKGY2SE .card-img span {
    font-size: 40px !important;
  }
}
.cid-u9aXKGY2SE H2 {
  text-align: center;
  color: #551983;
}
.cid-u9aXKGY2SE .mbr-text {
  text-align: center;
  color: #635a51;
}
.cid-u9aXKGY2SE H4 {
  color: #efdfd0;
  text-align: left;
}
.cid-u9aXKJ9zCy .divider-top {
  position: relative;
  padding: 2.5em;
  background: #232323;
}
.cid-u9aXKJ9zCy .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #5c4de4;
}
.cid-u9aXKJ9zCy .divider-top::before,
.cid-u9aXKJ9zCy .divider-bottom::before,
.cid-u9aXKJ9zCy .divider-top::after,
.cid-u9aXKJ9zCy .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-u9aXKJ9zCy .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-u9aXKJ9zCy .divider-triangles::before {
  top: -50px;
}
.cid-u9aXKJ9zCy .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-u9aXKJ9zCy .divider-halfcircle::before {
  top: -50px;
}
.cid-u9aXKJ9zCy .divider-multitriangles::before,
.cid-u9aXKJ9zCy .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-u9aXKJ9zCy .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #232323, 50px -50px 0 #232323;
}
.cid-ubhgGZPK4P {
  z-index: 1000;
  width: 100%;
}
.cid-ubhgGZPK4P nav.navbar {
  position: fixed;
}
.cid-ubhgGZPK4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhgGZPK4P .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubhgGZPK4P .dropdown-item:hover,
.cid-ubhgGZPK4P .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubhgGZPK4P .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubhgGZPK4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhgGZPK4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhgGZPK4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhgGZPK4P .nav-link {
  position: relative;
}
.cid-ubhgGZPK4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .container {
    flex-wrap: nowrap;
  }
}
.cid-ubhgGZPK4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown-menu,
.cid-ubhgGZPK4P .navbar.opened {
  background: #232323 !important;
}
.cid-ubhgGZPK4P .nav-item:focus,
.cid-ubhgGZPK4P .nav-link:focus {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhgGZPK4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhgGZPK4P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubhgGZPK4P .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhgGZPK4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhgGZPK4P .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhgGZPK4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar.collapsed {
  justify-content: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhgGZPK4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubhgGZPK4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhgGZPK4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhgGZPK4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubhgGZPK4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhgGZPK4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhgGZPK4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhgGZPK4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhgGZPK4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhgGZPK4P .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhgGZPK4P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown-item.active,
.cid-ubhgGZPK4P .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhgGZPK4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhgGZPK4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhgGZPK4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhgGZPK4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhgGZPK4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhgGZPK4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhgGZPK4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubhgGZPK4P .navbar {
    height: 70px;
  }
  .cid-ubhgGZPK4P .navbar.opened {
    height: auto;
  }
  .cid-ubhgGZPK4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhgGZPK4P .floatleft {
  margin-left: auto !important;
}
.cid-ubhgGZPK4P .floatright {
  margin-right: auto !important;
}
.cid-u9aXKJXouv {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #5c4de4;
}
.cid-u9aXKJXouv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9aXKJXouv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9aXKJXouv .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-u9aXKJXouv .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aXKJXouv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u9aXKJXouv .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u9aXKJXouv .mbr-section-title {
  color: #bbbbbb;
  text-align: left;
}
.cid-u9aXKJXouv .mbr-text {
  color: #bbbbbb;
}
.cid-u9aXKJXouv .name {
  color: #bbbbbb;
}
.cid-u9aXKJXouv .position {
  color: #bbbbbb;
}
.cid-u9aXKKGqMZ {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #5c4de4;
}
.cid-u9aXKKGqMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9aXKKGqMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9aXKKGqMZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-u9aXKKGqMZ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-u9aXKKGqMZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u9aXKKGqMZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #bbbbbb;
  transition: all 0.3s;
}
.cid-u9aXKKGqMZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-u9aXKKGqMZ .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-u9aXKKGqMZ .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u9aXKKGqMZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-u9aXKKGqMZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u9aXKKGqMZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-u9aXKKGqMZ .mbr-text,
.cid-u9aXKKGqMZ .social-row {
  color: #bbbbbb;
}
.cid-u9aXKKGqMZ .card-subtitle {
  color: #bbbbbb;
}
.cid-u9aXKKGqMZ .card-title {
  color: #bbbbbb;
}
.cid-u9aXKM0YO6 .divider-top {
  position: relative;
  padding: 2.5em;
  background: #5c4de4;
}
.cid-u9aXKM0YO6 .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #1b428f;
}
.cid-u9aXKM0YO6 .divider-top::before,
.cid-u9aXKM0YO6 .divider-bottom::before,
.cid-u9aXKM0YO6 .divider-top::after,
.cid-u9aXKM0YO6 .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-u9aXKM0YO6 .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-u9aXKM0YO6 .divider-triangles::before {
  top: -50px;
}
.cid-u9aXKM0YO6 .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-u9aXKM0YO6 .divider-halfcircle::before {
  top: -50px;
}
.cid-u9aXKM0YO6 .divider-multitriangles::before,
.cid-u9aXKM0YO6 .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-u9aXKM0YO6 .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #5c4de4, 50px -50px 0 #5c4de4;
}
.cid-u9aXKMnCfd {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #1b428f;
}
.cid-u9aXKMnCfd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9aXKMnCfd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9aXKMnCfd .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-u9aXKMnCfd .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aXKMnCfd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u9aXKMnCfd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u9aXKMnCfd .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-u9aXKMnCfd .mbr-text {
  color: #bbbbbb;
}
.cid-u9aXKMnCfd .name {
  color: #353535;
}
.cid-u9aXKMnCfd .position {
  color: #353535;
}
.cid-u9aXKMZsG9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1b428f;
}
.cid-u9aXKMZsG9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9aXKMZsG9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9aXKMZsG9 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-u9aXKMZsG9 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-u9aXKMZsG9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u9aXKMZsG9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #bbbbbb;
  transition: all 0.3s;
}
.cid-u9aXKMZsG9 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-u9aXKMZsG9 .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-u9aXKMZsG9 .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u9aXKMZsG9 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-u9aXKMZsG9 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u9aXKMZsG9 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-u9aXKMZsG9 .card-title {
  color: #bbbbbb;
}
.cid-u9aXKMZsG9 .card-subtitle {
  color: #bbbbbb;
}
.cid-u9aXKMZsG9 .mbr-text,
.cid-u9aXKMZsG9 .social-row {
  color: #bbbbbb;
}
.cid-u9aXKTomH4 .divider-top {
  position: relative;
  padding: 2.5em;
  background: #1b428f;
}
.cid-u9aXKTomH4 .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #ffffff;
}
.cid-u9aXKTomH4 .divider-top::before,
.cid-u9aXKTomH4 .divider-bottom::before,
.cid-u9aXKTomH4 .divider-top::after,
.cid-u9aXKTomH4 .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-u9aXKTomH4 .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-u9aXKTomH4 .divider-triangles::before {
  top: -50px;
}
.cid-u9aXKTomH4 .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-u9aXKTomH4 .divider-halfcircle::before {
  top: -50px;
}
.cid-u9aXKTomH4 .divider-multitriangles::before,
.cid-u9aXKTomH4 .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-u9aXKTomH4 .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #1b428f, 50px -50px 0 #1b428f;
}
.cid-u9aXKTRyvT {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u9aXKTRyvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9aXKTRyvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9aXKTRyvT .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-u9aXKTRyvT .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aXKTRyvT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u9aXKTRyvT .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u9aXKTRyvT .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-u9aXKTRyvT .mbr-text {
  color: #bbbbbb;
}
.cid-u9aXKTRyvT .name {
  color: #353535;
}
.cid-u9aXKTRyvT .position {
  color: #353535;
}
.cid-u9aXKUxDFm {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u9aXKUxDFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9aXKUxDFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9aXKUxDFm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-u9aXKUxDFm .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-u9aXKUxDFm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u9aXKUxDFm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #bbbbbb;
  transition: all 0.3s;
}
.cid-u9aXKUxDFm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-u9aXKUxDFm .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-u9aXKUxDFm .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u9aXKUxDFm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-u9aXKUxDFm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u9aXKUxDFm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-u9aXKUxDFm .mbr-text,
.cid-u9aXKUxDFm .social-row {
  color: #353535;
}
.cid-u9aXKUxDFm .card-subtitle {
  color: #353535;
}
.cid-u9aXKUxDFm .card-title {
  color: #353535;
}
.cid-edVQ2ymGqa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-edVQ2ymGqa .mbr-section-title {
  text-align: center;
}
.cid-edVQ2ymGqa .frame {
  min-height: 1000px;
}
.cid-ubh6HPlBuO {
  background-color: #232323;
}
.cid-ubh6HPlBuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubh6HPlBuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubh6HPlBuO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubh6HPlBuO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubh6HPlBuO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubh6HPlBuO .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ubh6HPlBuO .mbr-text,
.cid-ubh6HPlBuO .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ubh6HPlBuO .mbr-text,
.cid-ubh6HPlBuO .mbr-section-btn P {
  text-align: center;
}
.cid-ubhgGZPK4P {
  z-index: 1000;
  width: 100%;
}
.cid-ubhgGZPK4P nav.navbar {
  position: fixed;
}
.cid-ubhgGZPK4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhgGZPK4P .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubhgGZPK4P .dropdown-item:hover,
.cid-ubhgGZPK4P .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubhgGZPK4P .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubhgGZPK4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhgGZPK4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhgGZPK4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhgGZPK4P .nav-link {
  position: relative;
}
.cid-ubhgGZPK4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .container {
    flex-wrap: nowrap;
  }
}
.cid-ubhgGZPK4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown-menu,
.cid-ubhgGZPK4P .navbar.opened {
  background: #232323 !important;
}
.cid-ubhgGZPK4P .nav-item:focus,
.cid-ubhgGZPK4P .nav-link:focus {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhgGZPK4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhgGZPK4P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubhgGZPK4P .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhgGZPK4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhgGZPK4P .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhgGZPK4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar.collapsed {
  justify-content: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhgGZPK4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubhgGZPK4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhgGZPK4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhgGZPK4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubhgGZPK4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhgGZPK4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhgGZPK4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhgGZPK4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhgGZPK4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhgGZPK4P .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhgGZPK4P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown-item.active,
.cid-ubhgGZPK4P .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhgGZPK4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhgGZPK4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhgGZPK4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhgGZPK4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhgGZPK4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhgGZPK4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhgGZPK4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubhgGZPK4P .navbar {
    height: 70px;
  }
  .cid-ubhgGZPK4P .navbar.opened {
    height: auto;
  }
  .cid-ubhgGZPK4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhgGZPK4P .floatleft {
  margin-left: auto !important;
}
.cid-ubhgGZPK4P .floatright {
  margin-right: auto !important;
}
.cid-ubh6HPVCrW {
  background-color: #232323;
}
.cid-ubh6HPVCrW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubh6HPVCrW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubh6HPVCrW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubh6HPVCrW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubh6HPVCrW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubh6HPVCrW .mbr-section-title {
  color: #e6c63b;
}
.cid-ubh6HQ7DSH {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
.cid-ubh6HQ7DSH img,
.cid-ubh6HQ7DSH .item-img {
  width: 100%;
}
.cid-ubh6HQ7DSH .item:focus,
.cid-ubh6HQ7DSH span:focus {
  outline: none;
}
.cid-ubh6HQ7DSH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ubh6HQ7DSH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ubh6HQ7DSH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ubh6HQ7DSH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ubh6HQ7DSH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ubh6HQ7DSH .mbr-section-title {
  color: #232323;
}
.cid-ubh6HQ7DSH .mbr-text,
.cid-ubh6HQ7DSH .mbr-section-btn {
  text-align: left;
}
.cid-ubh6HQ7DSH .item-title {
  text-align: left;
  color: #6592e6;
}
.cid-ubh6HQ7DSH .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-ubh6HQqIkE {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-ubh6HQqIkE .v-center {
  margin: auto;
}
.cid-ubh6HQqIkE h2 {
  text-align: left;
}
.cid-ubh6HQqIkE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ubh6HQqIkE p {
  color: #767676;
  text-align: left;
}
.cid-ubh6HQqIkE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ubh6HQqIkE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #232323;
  border-radius: 15px;
}
.cid-ubh6HQqIkE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ubh6HQqIkE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #232323;
  border-radius: 15px;
}
.cid-ubh6HQqIkE .mbr-figure img {
  padding: 2rem;
}
.cid-ubh6HQqIkE .card {
  padding: 0 1rem;
}
.cid-ubh6HQqIkE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ubh6HQqIkE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-ubh6HQqIkE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ubh6HQqIkE .card-img span {
    font-size: 40px !important;
  }
}
.cid-ubh6HQqIkE H2 {
  text-align: center;
  color: #551983;
}
.cid-ubh6HQqIkE .mbr-text {
  text-align: center;
  color: #635a51;
}
.cid-ubh6HQqIkE H4 {
  color: #ffc523;
  text-align: right;
}
.cid-ubbz5FxVU6 {
  background-color: #232323;
}
.cid-ubbz5FxVU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubbz5FxVU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubbz5FxVU6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubbz5FxVU6 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubbz5FxVU6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubbz5FxVU6 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ubbz5FxVU6 .mbr-text,
.cid-ubbz5FxVU6 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ubbz5FxVU6 .mbr-text,
.cid-ubbz5FxVU6 .mbr-section-btn P {
  text-align: center;
}
.cid-ubbz5FxVU6 P {
  color: #ff0000;
}
.cid-ubhgGZPK4P {
  z-index: 1000;
  width: 100%;
}
.cid-ubhgGZPK4P nav.navbar {
  position: fixed;
}
.cid-ubhgGZPK4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhgGZPK4P .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubhgGZPK4P .dropdown-item:hover,
.cid-ubhgGZPK4P .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubhgGZPK4P .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubhgGZPK4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhgGZPK4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhgGZPK4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhgGZPK4P .nav-link {
  position: relative;
}
.cid-ubhgGZPK4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .container {
    flex-wrap: nowrap;
  }
}
.cid-ubhgGZPK4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown-menu,
.cid-ubhgGZPK4P .navbar.opened {
  background: #232323 !important;
}
.cid-ubhgGZPK4P .nav-item:focus,
.cid-ubhgGZPK4P .nav-link:focus {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhgGZPK4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhgGZPK4P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubhgGZPK4P .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhgGZPK4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhgGZPK4P .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhgGZPK4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar.collapsed {
  justify-content: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhgGZPK4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubhgGZPK4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhgGZPK4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhgGZPK4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubhgGZPK4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhgGZPK4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhgGZPK4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhgGZPK4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhgGZPK4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhgGZPK4P .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhgGZPK4P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown-item.active,
.cid-ubhgGZPK4P .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhgGZPK4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhgGZPK4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhgGZPK4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhgGZPK4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhgGZPK4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhgGZPK4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhgGZPK4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubhgGZPK4P .navbar {
    height: 70px;
  }
  .cid-ubhgGZPK4P .navbar.opened {
    height: auto;
  }
  .cid-ubhgGZPK4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhgGZPK4P .floatleft {
  margin-left: auto !important;
}
.cid-ubhgGZPK4P .floatright {
  margin-right: auto !important;
}
.cid-ubbz5G503L {
  background-color: #232323;
}
.cid-ubbz5G503L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubbz5G503L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubbz5G503L .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubbz5G503L .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubbz5G503L .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubbz5G503L .mbr-section-title {
  color: #ffc523;
  text-align: center;
}
.cid-ubbz5G503L .mbr-text,
.cid-ubbz5G503L .mbr-section-btn {
  color: #ffc523;
}
.cid-ubbz5GiAjH {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
.cid-ubbz5GiAjH img,
.cid-ubbz5GiAjH .item-img {
  width: 100%;
}
.cid-ubbz5GiAjH .item:focus,
.cid-ubbz5GiAjH span:focus {
  outline: none;
}
.cid-ubbz5GiAjH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ubbz5GiAjH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ubbz5GiAjH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ubbz5GiAjH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ubbz5GiAjH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ubbz5GiAjH .mbr-section-title {
  color: #232323;
}
.cid-ubbz5GiAjH .mbr-text,
.cid-ubbz5GiAjH .mbr-section-btn {
  text-align: left;
}
.cid-ubbz5GiAjH .item-title {
  text-align: left;
  color: #6592e6;
}
.cid-ubbz5GiAjH .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-ubbz5GD7ii {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-ubbz5GD7ii .v-center {
  margin: auto;
}
.cid-ubbz5GD7ii h2 {
  text-align: left;
}
.cid-ubbz5GD7ii h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ubbz5GD7ii p {
  color: #767676;
  text-align: left;
}
.cid-ubbz5GD7ii .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ubbz5GD7ii .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #232323;
  border-radius: 15px;
}
.cid-ubbz5GD7ii .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ubbz5GD7ii .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #232323;
  border-radius: 15px;
}
.cid-ubbz5GD7ii .mbr-figure img {
  padding: 2rem;
}
.cid-ubbz5GD7ii .card {
  padding: 0 1rem;
}
.cid-ubbz5GD7ii .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ubbz5GD7ii .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-ubbz5GD7ii .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ubbz5GD7ii .card-img span {
    font-size: 40px !important;
  }
}
.cid-ubbz5GD7ii H2 {
  text-align: center;
  color: #551983;
}
.cid-ubbz5GD7ii .mbr-text {
  text-align: center;
  color: #635a51;
}
.cid-ubbz5GD7ii H4 {
  color: #ffc523;
  text-align: right;
}
.cid-ubhgGZuvSS {
  background-color: #232323;
}
.cid-ubhgGZuvSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubhgGZuvSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubhgGZuvSS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubhgGZuvSS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubhgGZuvSS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubhgGZuvSS .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ubhgGZuvSS .mbr-text,
.cid-ubhgGZuvSS .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-ubhgGZuvSS .mbr-text,
.cid-ubhgGZuvSS .mbr-section-btn P {
  text-align: center;
}
.cid-ubhgGZPK4P {
  z-index: 1000;
  width: 100%;
}
.cid-ubhgGZPK4P nav.navbar {
  position: fixed;
}
.cid-ubhgGZPK4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubhgGZPK4P .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubhgGZPK4P .dropdown-item:hover,
.cid-ubhgGZPK4P .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubhgGZPK4P .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubhgGZPK4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubhgGZPK4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubhgGZPK4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubhgGZPK4P .nav-link {
  position: relative;
}
.cid-ubhgGZPK4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .container {
    flex-wrap: nowrap;
  }
}
.cid-ubhgGZPK4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown-menu,
.cid-ubhgGZPK4P .navbar.opened {
  background: #232323 !important;
}
.cid-ubhgGZPK4P .nav-item:focus,
.cid-ubhgGZPK4P .nav-link:focus {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubhgGZPK4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubhgGZPK4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubhgGZPK4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubhgGZPK4P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubhgGZPK4P .navbar.opened {
  transition: all 0.3s;
}
.cid-ubhgGZPK4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubhgGZPK4P .navbar .navbar-logo img {
  width: auto;
}
.cid-ubhgGZPK4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar.collapsed {
  justify-content: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubhgGZPK4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubhgGZPK4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubhgGZPK4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubhgGZPK4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubhgGZPK4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubhgGZPK4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubhgGZPK4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubhgGZPK4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubhgGZPK4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubhgGZPK4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubhgGZPK4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubhgGZPK4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubhgGZPK4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubhgGZPK4P .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubhgGZPK4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubhgGZPK4P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubhgGZPK4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubhgGZPK4P .dropdown-item.active,
.cid-ubhgGZPK4P .dropdown-item:active {
  background-color: transparent;
}
.cid-ubhgGZPK4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubhgGZPK4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubhgGZPK4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubhgGZPK4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubhgGZPK4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubhgGZPK4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubhgGZPK4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubhgGZPK4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubhgGZPK4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubhgGZPK4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubhgGZPK4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubhgGZPK4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubhgGZPK4P .navbar {
    height: 70px;
  }
  .cid-ubhgGZPK4P .navbar.opened {
    height: auto;
  }
  .cid-ubhgGZPK4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubhgGZPK4P .floatleft {
  margin-left: auto !important;
}
.cid-ubhgGZPK4P .floatright {
  margin-right: auto !important;
}
.cid-ubhgH0cInm {
  background-color: #232323;
}
.cid-ubhgH0cInm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubhgH0cInm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubhgH0cInm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubhgH0cInm .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubhgH0cInm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubhgH0cInm .mbr-section-title {
  color: #e6c63b;
}
.cid-ubhgH0q3eX {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
.cid-ubhgH0q3eX img,
.cid-ubhgH0q3eX .item-img {
  width: 100%;
}
.cid-ubhgH0q3eX .item:focus,
.cid-ubhgH0q3eX span:focus {
  outline: none;
}
.cid-ubhgH0q3eX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ubhgH0q3eX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ubhgH0q3eX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ubhgH0q3eX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ubhgH0q3eX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ubhgH0q3eX .mbr-section-title {
  color: #232323;
}
.cid-ubhgH0q3eX .mbr-text,
.cid-ubhgH0q3eX .mbr-section-btn {
  text-align: left;
}
.cid-ubhgH0q3eX .item-title {
  text-align: left;
  color: #6592e6;
}
.cid-ubhgH0q3eX .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-ubhgH0OuOI {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-ubhgH0OuOI .v-center {
  margin: auto;
}
.cid-ubhgH0OuOI h2 {
  text-align: left;
}
.cid-ubhgH0OuOI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-ubhgH0OuOI p {
  color: #767676;
  text-align: left;
}
.cid-ubhgH0OuOI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-ubhgH0OuOI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
  padding: 1rem;
  background: #232323;
  border-radius: 15px;
}
.cid-ubhgH0OuOI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ubhgH0OuOI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin: auto 20px;
  background: #232323;
  border-radius: 15px;
}
.cid-ubhgH0OuOI .mbr-figure img {
  padding: 2rem;
}
.cid-ubhgH0OuOI .card {
  padding: 0 1rem;
}
.cid-ubhgH0OuOI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-ubhgH0OuOI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-ubhgH0OuOI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-ubhgH0OuOI .card-img span {
    font-size: 40px !important;
  }
}
.cid-ubhgH0OuOI H2 {
  text-align: center;
  color: #551983;
}
.cid-ubhgH0OuOI .mbr-text {
  text-align: center;
  color: #635a51;
}
.cid-ubhgH0OuOI H4 {
  color: #ffc523;
  text-align: right;
}
.cid-ubPvCorInB {
  background-color: #232323;
}
.cid-ubPvCorInB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubPvCorInB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubPvCorInB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ubPvCorInB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubPvCorInB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubPvCorInB .mbr-section-title {
  color: #e6c63b;
}
.cid-ubPvCorInB .mbr-text,
.cid-ubPvCorInB .mbr-section-btn {
  color: #ffc523;
}
.cid-ubPvCocRIQ {
  z-index: 1000;
  width: 100%;
}
.cid-ubPvCocRIQ nav.navbar {
  position: fixed;
}
.cid-ubPvCocRIQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubPvCocRIQ .dropdown-menu {
  min-width: 270px;
  max-width: 500px;
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubPvCocRIQ .dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-ubPvCocRIQ .dropdown-item:hover,
.cid-ubPvCocRIQ .dropdown-item:focus {
  background: #e6c63b !important;
  color: #e43f3f !important;
}
.cid-ubPvCocRIQ .dropdown-item:hover span {
  color: #e43f3f;
}
.cid-ubPvCocRIQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubPvCocRIQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubPvCocRIQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubPvCocRIQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubPvCocRIQ .nav-link {
  position: relative;
}
.cid-ubPvCocRIQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ubPvCocRIQ .container {
    flex-wrap: nowrap;
  }
}
.cid-ubPvCocRIQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubPvCocRIQ .dropdown-menu,
.cid-ubPvCocRIQ .navbar.opened {
  background: #232323 !important;
}
.cid-ubPvCocRIQ .nav-item:focus,
.cid-ubPvCocRIQ .nav-link:focus {
  outline: none;
}
.cid-ubPvCocRIQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubPvCocRIQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubPvCocRIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubPvCocRIQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubPvCocRIQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubPvCocRIQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubPvCocRIQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(35, 35, 35, 0.8);
}
.cid-ubPvCocRIQ .navbar.opened {
  transition: all 0.3s;
}
.cid-ubPvCocRIQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubPvCocRIQ .navbar .navbar-logo img {
  width: auto;
}
.cid-ubPvCocRIQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubPvCocRIQ .navbar.collapsed {
  justify-content: center;
}
.cid-ubPvCocRIQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubPvCocRIQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubPvCocRIQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ubPvCocRIQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubPvCocRIQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubPvCocRIQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ubPvCocRIQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubPvCocRIQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubPvCocRIQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubPvCocRIQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubPvCocRIQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubPvCocRIQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubPvCocRIQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubPvCocRIQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ubPvCocRIQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubPvCocRIQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubPvCocRIQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubPvCocRIQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubPvCocRIQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubPvCocRIQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubPvCocRIQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubPvCocRIQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubPvCocRIQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubPvCocRIQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ubPvCocRIQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubPvCocRIQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubPvCocRIQ .dropdown-item.active,
.cid-ubPvCocRIQ .dropdown-item:active {
  background-color: transparent;
}
.cid-ubPvCocRIQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubPvCocRIQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubPvCocRIQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubPvCocRIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ubPvCocRIQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubPvCocRIQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubPvCocRIQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubPvCocRIQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubPvCocRIQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubPvCocRIQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fff0b0;
}
.cid-ubPvCocRIQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubPvCocRIQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubPvCocRIQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubPvCocRIQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubPvCocRIQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubPvCocRIQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubPvCocRIQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubPvCocRIQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubPvCocRIQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ubPvCocRIQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubPvCocRIQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubPvCocRIQ .navbar {
    height: 70px;
  }
  .cid-ubPvCocRIQ .navbar.opened {
    height: auto;
  }
  .cid-ubPvCocRIQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubPvCocRIQ .floatleft {
  margin-left: auto !important;
}
.cid-ubPvCocRIQ .floatright {
  margin-right: auto !important;
}

/*
     FILE ARCHIVED ON 20:23:17 Mar 18, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:06:20 Feb 15, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 1.441
  exclusion.robots: 0.025
  exclusion.robots.policy: 0.01
  esindex: 0.016
  cdx.remote: 63.613
  LoadShardBlock: 116.759 (3)
  PetaboxLoader3.datanode: 162.426 (5)
  load_resource: 175.791 (2)
  PetaboxLoader3.resolve: 61.195 (2)
*/