body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.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: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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: #e46d0c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #e46d0c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e46d0c !important;
  border-color: #e46d0c !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: #924608 !important;
  border-color: #924608 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #924608 !important;
  border-color: #924608 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e46d0c !important;
  border-color: #e46d0c !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: #924608 !important;
  border-color: #924608 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #924608 !important;
  border-color: #924608 !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: #e46d0c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #924608 !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: #e46d0c !important;
  border-color: #e46d0c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e46d0c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #924608 !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: #e46d0c !important;
  border-color: #e46d0c !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: #e46d0c !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #e46d0c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #833f07 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #833f07 !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: #e46d0c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #e46d0c;
}
.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: #e46d0c;
  border-color: #e46d0c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e46d0c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcdbc0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fcdbc0;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #e46d0c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e46d0c;
}
/* 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: #e46d0c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e46d0c;
}
.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: #e46d0c;
  border-bottom-color: #e46d0c;
}
.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: #ffffff !important;
  background-color: #e46d0c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23e46d0c' %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-tpVPNWwd1j {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tpVPNWwd1j nav.navbar {
  position: fixed;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tpVPNWwd1j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tpVPNWwd1j .dropdown-item:hover,
.cid-tpVPNWwd1j .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tpVPNWwd1j .dropdown-item:hover span {
  color: white;
}
.cid-tpVPNWwd1j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tpVPNWwd1j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tpVPNWwd1j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tpVPNWwd1j .nav-link {
  position: relative;
}
.cid-tpVPNWwd1j .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .container {
    flex-wrap: wrap;
  }
}
.cid-tpVPNWwd1j .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tpVPNWwd1j .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tpVPNWwd1j .dropdown-menu,
.cid-tpVPNWwd1j .navbar.opened {
  background: #16181c !important;
}
.cid-tpVPNWwd1j .nav-item:focus,
.cid-tpVPNWwd1j .nav-link:focus {
  outline: none;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tpVPNWwd1j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpVPNWwd1j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpVPNWwd1j .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tpVPNWwd1j .navbar.opened {
  transition: all 0.3s;
}
.cid-tpVPNWwd1j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tpVPNWwd1j .navbar .navbar-logo img {
  width: auto;
}
.cid-tpVPNWwd1j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpVPNWwd1j .navbar.collapsed {
  justify-content: center;
}
.cid-tpVPNWwd1j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpVPNWwd1j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tpVPNWwd1j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpVPNWwd1j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpVPNWwd1j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tpVPNWwd1j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpVPNWwd1j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tpVPNWwd1j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tpVPNWwd1j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tpVPNWwd1j .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tpVPNWwd1j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpVPNWwd1j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tpVPNWwd1j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpVPNWwd1j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpVPNWwd1j .dropdown-item.active,
.cid-tpVPNWwd1j .dropdown-item:active {
  background-color: transparent;
}
.cid-tpVPNWwd1j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpVPNWwd1j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tpVPNWwd1j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpVPNWwd1j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpVPNWwd1j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tpVPNWwd1j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tpVPNWwd1j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tpVPNWwd1j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar {
    height: 70px;
  }
  .cid-tpVPNWwd1j .navbar.opened {
    height: auto;
  }
  .cid-tpVPNWwd1j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trrCMVTtmJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #16181c;
}
.cid-trrCMVTtmJ .carousel {
  height: 800px;
}
.cid-trrCMVTtmJ .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-trrCMVTtmJ .carousel-item,
.cid-trrCMVTtmJ .carousel-inner {
  height: 100%;
}
.cid-trrCMVTtmJ .carousel-caption {
  bottom: 40px;
}
.cid-trrCMVTtmJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-trrCMVTtmJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-trrCMVTtmJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-trrCMVTtmJ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-trrCMVTtmJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-trrCMVTtmJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-trrCMVTtmJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-trrCMVTtmJ .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-trrCMVTtmJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trrCMVTtmJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-trrCMVTtmJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-trrCMVTtmJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-trrCMVTtmJ .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-trrCMVTtmJ .carousel-indicators li.active,
.cid-trrCMVTtmJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-trrCMVTtmJ .carousel-indicators li::after,
.cid-trrCMVTtmJ .carousel-indicators li::before {
  content: none;
}
.cid-trrCMVTtmJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-trrCMVTtmJ .carousel-indicators {
    display: none !important;
  }
}
.cid-tqSDPbPMsL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #16181c;
}
.cid-tqSDPbPMsL .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
  text-align: center;
}
.cid-tTkOtDwGli {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tTkOtDwGli .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTkOtDwGli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTkOtDwGli .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tTkOtDwGli .mbr-section-title {
  color: #e46d0c;
}
.cid-tTkOtDwGli .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tTkOtDwGli .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tTkOtDwGli .card-row {
  align-items: stretch;
}
.cid-tTkOtDwGli .card {
  margin-top: 30px;
}
.cid-tTkOtDwGli .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-tTkOtDwGli .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tTkOtDwGli .card-wrapper {
    padding: 20px;
  }
}
.cid-tTkOtDwGli .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tTkOtDwGli .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tTkOtDwGli .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tTkOtDwGli .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tTkOtDwGli .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tTkOtDwGli .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tTkOtDwGli .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tTkOtDwGli .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-tTkOtDwGli .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tTkOtDwGli .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tTpjljKvma {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tTpjljKvma .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTpjljKvma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTpjljKvma .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTpjljKvma .container-fluid {
    padding: 0;
  }
}
.cid-tTpjljKvma .container-fluid .row {
  padding: 0;
}
.cid-tTpjljKvma .row {
  justify-content: center;
}
.cid-tTpjljKvma .item {
  position: relative;
  margin-bottom: 30px;
}
.cid-tTpjljKvma .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-tTpjljKvma .item .item-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tTpjljKvma .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 510px;
}
.cid-tTpjljKvma .item .item-link .item-wrapper:hover .item-content .active-overlay {
  opacity: .4;
}
.cid-tTpjljKvma .item .item-link .item-wrapper .item-content {
  padding: 24px 28px;
  z-index: 1;
  position: relative;
}
.cid-tTpjljKvma .item .item-link .item-wrapper .item-content .active-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000000 0, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-tTpjljKvma .item .item-link .item-wrapper .item-content .item-date-wrap .item-date {
  padding: 0 10px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline;
  position: relative;
}
.cid-tTpjljKvma .item .item-link .item-wrapper .item-content .item-text {
  margin: 20px 0 0;
  position: relative;
}
.cid-tTpjljKvma .item .item-link .item-wrapper .item-content .item-desc {
  margin: 28px 0 0;
  position: relative;
}
.cid-tTpjljKvma .item-date {
  color: #ffffff;
}
.cid-tTpjljKvma .item-text {
  color: #ffffff;
}
.cid-tTpjljKvma .item-desc {
  color: #ffffff;
}
.cid-tTfLP0x15D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tTfLP0x15D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTfLP0x15D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTfLP0x15D .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tTfLP0x15D .container-fluid {
    padding: 0;
  }
}
.cid-tTfLP0x15D .container-fluid .row {
  padding: 0;
}
.cid-tTfLP0x15D .row {
  justify-content: center;
}
.cid-tTfLP0x15D .item {
  position: relative;
  margin-bottom: 30px;
}
.cid-tTfLP0x15D .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-tTfLP0x15D .item .item-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 510px;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper:hover .item-content .active-overlay {
  opacity: .4;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper .item-content {
  padding: 24px 28px;
  z-index: 1;
  position: relative;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper .item-content .active-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000000 0, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper .item-content .item-date-wrap .item-date {
  padding: 0 10px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline;
  position: relative;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper .item-content .item-text {
  margin: 20px 0 0;
  position: relative;
}
.cid-tTfLP0x15D .item .item-link .item-wrapper .item-content .item-desc {
  margin: 28px 0 0;
  position: relative;
}
.cid-tTfLP0x15D .item-date {
  color: #ffffff;
}
.cid-tTfLP0x15D .item-text {
  color: #ffffff;
}
.cid-tTfLP0x15D .item-desc {
  color: #e46d0c;
}
.cid-tqSzq8TJ3Q {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #16181c;
}
.cid-tqSzq8TJ3Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqSzq8TJ3Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqSzq8TJ3Q .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tqSzq8TJ3Q .mbr-section-title {
  color: #e46d0c;
}
.cid-tqSzq8TJ3Q .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tqSzq8TJ3Q .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tqSzq8TJ3Q .card-row {
  align-items: stretch;
}
.cid-tqSzq8TJ3Q .card {
  margin-top: 30px;
}
.cid-tqSzq8TJ3Q .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #16181c;
}
@media (max-width: 1199px) {
  .cid-tqSzq8TJ3Q .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tqSzq8TJ3Q .card-wrapper {
    padding: 20px;
  }
}
.cid-tqSzq8TJ3Q .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tqSzq8TJ3Q .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tqSzq8TJ3Q .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tqSzq8TJ3Q .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tqSzq8TJ3Q .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tqSzq8TJ3Q .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tqSzq8TJ3Q .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tqSzq8TJ3Q .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-tqSzq8TJ3Q .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tqSzq8TJ3Q .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-trPgUjdPRW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trPgUjdPRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPgUjdPRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPgUjdPRW .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trPgUjdPRW .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trPgUjdPRW .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .container {
    max-width: 100%;
  }
  .cid-trPgUjdPRW .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trPgUjdPRW .item-wrap {
  width: 100%;
}
.cid-trPgUjdPRW .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trPgUjdPRW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trPgUjdPRW .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-trPgUjdPRW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trPgUjdPRW .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-trPgUjdPRW .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trPgUjdPRW .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .col-links {
    padding-top: 20px;
  }
}
.cid-trPgUjdPRW .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trPgUjdPRW .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .list {
    text-align: center !important;
  }
}
.cid-trPgUjdPRW .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-trPgUjdPRW .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-trPgUjdPRW .list a:hover:before {
  width: 100%;
}
.cid-trPgUjdPRW .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .col-copyright {
    padding-top: 40px;
  }
}
.cid-trPgUjdPRW .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-trPgUjdPRW .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-tqSzizTEAP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tqSzizTEAP .mbr-section-head {
  width: 100%;
}
.cid-tqSzizTEAP .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-trUva0xgWx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-trUva0xgWx nav.navbar {
  position: fixed;
}
.cid-trUva0xgWx .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-trUva0xgWx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-trUva0xgWx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-trUva0xgWx .dropdown-item:hover,
.cid-trUva0xgWx .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-trUva0xgWx .dropdown-item:hover span {
  color: white;
}
.cid-trUva0xgWx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-trUva0xgWx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-trUva0xgWx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-trUva0xgWx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-trUva0xgWx .nav-link {
  position: relative;
}
.cid-trUva0xgWx .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-trUva0xgWx .container {
    flex-wrap: wrap;
  }
}
.cid-trUva0xgWx .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-trUva0xgWx .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-trUva0xgWx .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-trUva0xgWx .dropdown-menu,
.cid-trUva0xgWx .navbar.opened {
  background: #16181c !important;
}
.cid-trUva0xgWx .nav-item:focus,
.cid-trUva0xgWx .nav-link:focus {
  outline: none;
}
.cid-trUva0xgWx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-trUva0xgWx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trUva0xgWx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-trUva0xgWx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-trUva0xgWx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trUva0xgWx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trUva0xgWx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-trUva0xgWx .navbar.opened {
  transition: all 0.3s;
}
.cid-trUva0xgWx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-trUva0xgWx .navbar .navbar-logo img {
  width: auto;
}
.cid-trUva0xgWx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trUva0xgWx .navbar.collapsed {
  justify-content: center;
}
.cid-trUva0xgWx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-trUva0xgWx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-trUva0xgWx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-trUva0xgWx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trUva0xgWx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trUva0xgWx .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-trUva0xgWx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trUva0xgWx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-trUva0xgWx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-trUva0xgWx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-trUva0xgWx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trUva0xgWx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trUva0xgWx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trUva0xgWx .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-trUva0xgWx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-trUva0xgWx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trUva0xgWx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trUva0xgWx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-trUva0xgWx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-trUva0xgWx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-trUva0xgWx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-trUva0xgWx .navbar.navbar-short {
  min-height: 60px;
}
.cid-trUva0xgWx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-trUva0xgWx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-trUva0xgWx .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-trUva0xgWx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trUva0xgWx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trUva0xgWx .dropdown-item.active,
.cid-trUva0xgWx .dropdown-item:active {
  background-color: transparent;
}
.cid-trUva0xgWx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trUva0xgWx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trUva0xgWx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trUva0xgWx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-trUva0xgWx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trUva0xgWx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trUva0xgWx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trUva0xgWx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-trUva0xgWx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-trUva0xgWx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trUva0xgWx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-trUva0xgWx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trUva0xgWx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trUva0xgWx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-trUva0xgWx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trUva0xgWx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-trUva0xgWx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-trUva0xgWx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trUva0xgWx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-trUva0xgWx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trUva0xgWx .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-trUva0xgWx .navbar {
    height: 70px;
  }
  .cid-trUva0xgWx .navbar.opened {
    height: auto;
  }
  .cid-trUva0xgWx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaZR0Byhr7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uaZR0Byhr7 img,
.cid-uaZR0Byhr7 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uaZR0Byhr7 .item:focus,
.cid-uaZR0Byhr7 span:focus {
  outline: none;
}
.cid-uaZR0Byhr7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uaZR0Byhr7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uaZR0Byhr7 .item {
  padding: 0;
  margin: 0;
}
.cid-uaZR0Byhr7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaZR0Byhr7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaZR0Byhr7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaZR0Byhr7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaZR0Byhr7 .mbr-section-title {
  color: #ffffff;
}
.cid-uaZR0Byhr7 .mbr-section-subtitle {
  color: #878e99;
}
.cid-uaZR0Byhr7 .item-title {
  color: #ffffff;
}
.cid-uaZR0Byhr7 .item-subtitle {
  color: #ffffff;
}
.cid-uaZR0Byhr7 .mbr-text,
.cid-uaZR0Byhr7 .mbr-section-btn {
  color: #878e99;
}
.cid-uavRbjF3Nj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uavRbjF3Nj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavRbjF3Nj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavRbjF3Nj .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uavRbjF3Nj .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uavRbjF3Nj .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uavRbjF3Nj .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uavRbjF3Nj .card-title {
    margin-bottom: 20px;
  }
}
.cid-uavRbjF3Nj .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uavRbjF3Nj .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uavRbjF3Nj .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uazREEDMUR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uazREEDMUR img,
.cid-uazREEDMUR .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uazREEDMUR .item:focus,
.cid-uazREEDMUR span:focus {
  outline: none;
}
.cid-uazREEDMUR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uazREEDMUR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uazREEDMUR .item {
  padding: 0;
  margin: 0;
}
.cid-uazREEDMUR .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uazREEDMUR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uazREEDMUR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uazREEDMUR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uazREEDMUR .mbr-section-title {
  color: #ffffff;
}
.cid-uazREEDMUR .mbr-section-subtitle {
  color: #878e99;
}
.cid-uauGppV8tY {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uauGppV8tY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauGppV8tY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauGppV8tY .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uauGppV8tY .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uauGppV8tY .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uauGppV8tY .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uauGppV8tY .card-title {
    margin-bottom: 20px;
  }
}
.cid-uauGppV8tY .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uauGppV8tY .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uauGppV8tY .card-text {
  color: #878e99;
  margin-bottom: 0;
  text-align: left;
}
.cid-uazSQntEpH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uazSQntEpH img,
.cid-uazSQntEpH .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uazSQntEpH .item:focus,
.cid-uazSQntEpH span:focus {
  outline: none;
}
.cid-uazSQntEpH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uazSQntEpH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uazSQntEpH .item {
  padding: 0;
  margin: 0;
}
.cid-uazSQntEpH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uazSQntEpH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uazSQntEpH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uazSQntEpH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uazSQntEpH .mbr-section-title {
  color: #ffffff;
}
.cid-uazSQntEpH .mbr-section-subtitle {
  color: #878e99;
}
.cid-uauGrfrT3q {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uauGrfrT3q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauGrfrT3q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauGrfrT3q .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uauGrfrT3q .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uauGrfrT3q .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uauGrfrT3q .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauGrfrT3q .card-title {
    margin-bottom: 20px;
  }
}
.cid-uauGrfrT3q .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauGrfrT3q .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uauGrfrT3q .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uazSSgY6hk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uazSSgY6hk img,
.cid-uazSSgY6hk .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uazSSgY6hk .item:focus,
.cid-uazSSgY6hk span:focus {
  outline: none;
}
.cid-uazSSgY6hk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uazSSgY6hk .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uazSSgY6hk .item {
  padding: 0;
  margin: 0;
}
.cid-uazSSgY6hk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uazSSgY6hk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uazSSgY6hk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uazSSgY6hk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uazSSgY6hk .mbr-section-title {
  color: #ffffff;
}
.cid-uazSSgY6hk .mbr-section-subtitle {
  color: #878e99;
}
.cid-uauI1lEQrU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uauI1lEQrU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauI1lEQrU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauI1lEQrU .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uauI1lEQrU .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uauI1lEQrU .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uauI1lEQrU .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI1lEQrU .card-title {
    margin-bottom: 20px;
  }
}
.cid-uauI1lEQrU .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI1lEQrU .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uauI1lEQrU .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uazSRuiKtg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uazSRuiKtg img,
.cid-uazSRuiKtg .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uazSRuiKtg .item:focus,
.cid-uazSRuiKtg span:focus {
  outline: none;
}
.cid-uazSRuiKtg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uazSRuiKtg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uazSRuiKtg .item {
  padding: 0;
  margin: 0;
}
.cid-uazSRuiKtg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uazSRuiKtg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uazSRuiKtg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uazSRuiKtg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uazSRuiKtg .mbr-section-title {
  color: #ffffff;
}
.cid-uazSRuiKtg .mbr-section-subtitle {
  color: #878e99;
}
.cid-uauI1YnA7y {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uauI1YnA7y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauI1YnA7y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauI1YnA7y .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uauI1YnA7y .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uauI1YnA7y .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uauI1YnA7y .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI1YnA7y .card-title {
    margin-bottom: 20px;
  }
}
.cid-uauI1YnA7y .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI1YnA7y .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uauI1YnA7y .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uazSV4IUD1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uazSV4IUD1 img,
.cid-uazSV4IUD1 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uazSV4IUD1 .item:focus,
.cid-uazSV4IUD1 span:focus {
  outline: none;
}
.cid-uazSV4IUD1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uazSV4IUD1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uazSV4IUD1 .item {
  padding: 0;
  margin: 0;
}
.cid-uazSV4IUD1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uazSV4IUD1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uazSV4IUD1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uazSV4IUD1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uazSV4IUD1 .mbr-section-title {
  color: #ffffff;
}
.cid-uazSV4IUD1 .mbr-section-subtitle {
  color: #878e99;
}
.cid-uauI3mWXMm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uauI3mWXMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauI3mWXMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauI3mWXMm .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uauI3mWXMm .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uauI3mWXMm .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uauI3mWXMm .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI3mWXMm .card-title {
    margin-bottom: 20px;
  }
}
.cid-uauI3mWXMm .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI3mWXMm .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uauI3mWXMm .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uazSU9q3Sj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-uazSU9q3Sj img,
.cid-uazSU9q3Sj .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uazSU9q3Sj .item:focus,
.cid-uazSU9q3Sj span:focus {
  outline: none;
}
.cid-uazSU9q3Sj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uazSU9q3Sj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uazSU9q3Sj .item {
  padding: 0;
  margin: 0;
}
.cid-uazSU9q3Sj .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #1e2024;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uazSU9q3Sj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uazSU9q3Sj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uazSU9q3Sj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uazSU9q3Sj .mbr-section-title {
  color: #ffffff;
}
.cid-uazSU9q3Sj .mbr-section-subtitle {
  color: #878e99;
}
.cid-uauI2KsRQt {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uauI2KsRQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauI2KsRQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauI2KsRQt .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uauI2KsRQt .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uauI2KsRQt .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uauI2KsRQt .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI2KsRQt .card-title {
    margin-bottom: 20px;
  }
}
.cid-uauI2KsRQt .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uauI2KsRQt .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uauI2KsRQt .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uazI6z0i5t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1e2024;
}
.cid-uazI6z0i5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uazI6z0i5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uazI6z0i5t .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-uazI6z0i5t .item .icon-wrap {
  text-align: center;
}
.cid-uazI6z0i5t .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #e46d0c;
  transform: translate(-50%, 0);
}
.cid-uazI6z0i5t .item:last-child:before {
  display: none;
}
.cid-uazI6z0i5t .item.last::before {
  display: none;
}
.cid-uazI6z0i5t .icon-box {
  background: #e46d0c;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uazI6z0i5t .text-box {
  text-align: center;
}
.cid-uazI6z0i5t span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-uazI6z0i5t .card {
    margin-bottom: 2rem;
  }
  .cid-uazI6z0i5t .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uazI6z0i5t .mbr-text,
.cid-uazI6z0i5t .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uazI6z0i5t .card-title,
.cid-uazI6z0i5t .card-box {
  color: #ffffff;
}
.cid-uazI6z0i5t .icon-text {
  color: #878e99;
  text-align: center;
}
.cid-tUrtPzaQXw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #16181c;
}
.cid-tUrtPzaQXw .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
  text-align: center;
}
.cid-trUva1LoNA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trUva1LoNA .mbr-fallback-image.disabled {
  display: none;
}
.cid-trUva1LoNA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trUva1LoNA .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trUva1LoNA .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trUva1LoNA .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trUva1LoNA .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trUva1LoNA .container {
    max-width: 100%;
  }
  .cid-trUva1LoNA .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trUva1LoNA .item-wrap {
  width: 100%;
}
.cid-trUva1LoNA .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trUva1LoNA .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trUva1LoNA .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trUva1LoNA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trUva1LoNA .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trUva1LoNA .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trUva1LoNA .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trUva1LoNA .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-trUva1LoNA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trUva1LoNA .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trUva1LoNA .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-trUva1LoNA .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trUva1LoNA .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trUva1LoNA .col-links {
    padding-top: 20px;
  }
}
.cid-trUva1LoNA .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-trUva1LoNA .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trUva1LoNA .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-trUva1LoNA .list {
    text-align: center !important;
  }
}
.cid-trUva1LoNA .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-trUva1LoNA .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-trUva1LoNA .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-trUva1LoNA .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-trUva1LoNA .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-trUva1LoNA .list a:hover:before {
  width: 100%;
}
.cid-trUva1LoNA .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-trUva1LoNA .col-copyright {
    padding-top: 40px;
  }
}
.cid-trUva1LoNA .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-trUva1LoNA .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-trUva2pS7I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trUva2pS7I .mbr-section-head {
  width: 100%;
}
.cid-trUva2pS7I .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tpVPNWwd1j {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tpVPNWwd1j nav.navbar {
  position: fixed;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tpVPNWwd1j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tpVPNWwd1j .dropdown-item:hover,
.cid-tpVPNWwd1j .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tpVPNWwd1j .dropdown-item:hover span {
  color: white;
}
.cid-tpVPNWwd1j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tpVPNWwd1j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tpVPNWwd1j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tpVPNWwd1j .nav-link {
  position: relative;
}
.cid-tpVPNWwd1j .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .container {
    flex-wrap: wrap;
  }
}
.cid-tpVPNWwd1j .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tpVPNWwd1j .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tpVPNWwd1j .dropdown-menu,
.cid-tpVPNWwd1j .navbar.opened {
  background: #16181c !important;
}
.cid-tpVPNWwd1j .nav-item:focus,
.cid-tpVPNWwd1j .nav-link:focus {
  outline: none;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tpVPNWwd1j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpVPNWwd1j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpVPNWwd1j .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tpVPNWwd1j .navbar.opened {
  transition: all 0.3s;
}
.cid-tpVPNWwd1j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tpVPNWwd1j .navbar .navbar-logo img {
  width: auto;
}
.cid-tpVPNWwd1j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpVPNWwd1j .navbar.collapsed {
  justify-content: center;
}
.cid-tpVPNWwd1j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpVPNWwd1j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tpVPNWwd1j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpVPNWwd1j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpVPNWwd1j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tpVPNWwd1j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpVPNWwd1j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tpVPNWwd1j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tpVPNWwd1j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tpVPNWwd1j .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tpVPNWwd1j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpVPNWwd1j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tpVPNWwd1j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpVPNWwd1j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpVPNWwd1j .dropdown-item.active,
.cid-tpVPNWwd1j .dropdown-item:active {
  background-color: transparent;
}
.cid-tpVPNWwd1j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpVPNWwd1j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tpVPNWwd1j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpVPNWwd1j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpVPNWwd1j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tpVPNWwd1j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tpVPNWwd1j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tpVPNWwd1j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar {
    height: 70px;
  }
  .cid-tpVPNWwd1j .navbar.opened {
    height: auto;
  }
  .cid-tpVPNWwd1j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trORraJYqP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trORraJYqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-trORraJYqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trORraJYqP .card-row {
  align-items: stretch;
}
.cid-trORraJYqP .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  margin-top: 60px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-trORraJYqP .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-trORraJYqP .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-trORraJYqP .image-wrapper {
  margin-right: 30px;
}
.cid-trORraJYqP .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .image-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .text-left-wrap {
    margin-top: -46px;
  }
}
.cid-trORraJYqP .mbr-section-title {
  color: #e46d0c;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .mbr-section-title {
    text-align: center !important;
  }
}
.cid-trORraJYqP .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trORraJYqP .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .social-container {
    padding-top: 25px;
  }
}
.cid-trORraJYqP .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .social-title {
    text-align: center !important;
  }
}
.cid-trORraJYqP .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-trORraJYqP .social-list {
    justify-content: center !important;
  }
}
.cid-trORraJYqP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trORraJYqP .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trORraJYqP .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-trORraJYqP .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trORraJYqP .soc-item:hover:before {
  opacity: 1;
}
.cid-trORraJYqP .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-trORraJYqP .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-trORraJYqP .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-trORraJYqP .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-trORraJYqP .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-trORraJYqP .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-trORraJYqP .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-trORraJYqP .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-trORraJYqP .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-trORraJYqP .contact-item {
  padding: 10px 0 20px;
}
.cid-trORraJYqP .card-title {
  color: #ffffff;
  margin-bottom: 4px;
}
.cid-trORraJYqP .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uc7zZSX0SH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #16181c;
}
.cid-uc7zZSX0SH .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
  text-align: center;
}
.cid-trPgUjdPRW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trPgUjdPRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPgUjdPRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPgUjdPRW .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trPgUjdPRW .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trPgUjdPRW .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .container {
    max-width: 100%;
  }
  .cid-trPgUjdPRW .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trPgUjdPRW .item-wrap {
  width: 100%;
}
.cid-trPgUjdPRW .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trPgUjdPRW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trPgUjdPRW .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-trPgUjdPRW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trPgUjdPRW .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-trPgUjdPRW .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trPgUjdPRW .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .col-links {
    padding-top: 20px;
  }
}
.cid-trPgUjdPRW .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trPgUjdPRW .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .list {
    text-align: center !important;
  }
}
.cid-trPgUjdPRW .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-trPgUjdPRW .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-trPgUjdPRW .list a:hover:before {
  width: 100%;
}
.cid-trPgUjdPRW .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .col-copyright {
    padding-top: 40px;
  }
}
.cid-trPgUjdPRW .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-trPgUjdPRW .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-trPz6AYncU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-trPz6AYncU nav.navbar {
  position: fixed;
}
.cid-trPz6AYncU .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-trPz6AYncU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-trPz6AYncU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-trPz6AYncU .dropdown-item:hover,
.cid-trPz6AYncU .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-trPz6AYncU .dropdown-item:hover span {
  color: white;
}
.cid-trPz6AYncU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-trPz6AYncU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-trPz6AYncU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-trPz6AYncU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-trPz6AYncU .nav-link {
  position: relative;
}
.cid-trPz6AYncU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-trPz6AYncU .container {
    flex-wrap: wrap;
  }
}
.cid-trPz6AYncU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-trPz6AYncU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-trPz6AYncU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-trPz6AYncU .dropdown-menu,
.cid-trPz6AYncU .navbar.opened {
  background: #16181c !important;
}
.cid-trPz6AYncU .nav-item:focus,
.cid-trPz6AYncU .nav-link:focus {
  outline: none;
}
.cid-trPz6AYncU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-trPz6AYncU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trPz6AYncU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-trPz6AYncU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-trPz6AYncU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trPz6AYncU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trPz6AYncU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-trPz6AYncU .navbar.opened {
  transition: all 0.3s;
}
.cid-trPz6AYncU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-trPz6AYncU .navbar .navbar-logo img {
  width: auto;
}
.cid-trPz6AYncU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trPz6AYncU .navbar.collapsed {
  justify-content: center;
}
.cid-trPz6AYncU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-trPz6AYncU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-trPz6AYncU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-trPz6AYncU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trPz6AYncU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trPz6AYncU .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-trPz6AYncU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trPz6AYncU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-trPz6AYncU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-trPz6AYncU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-trPz6AYncU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trPz6AYncU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trPz6AYncU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trPz6AYncU .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-trPz6AYncU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-trPz6AYncU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trPz6AYncU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trPz6AYncU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-trPz6AYncU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-trPz6AYncU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-trPz6AYncU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-trPz6AYncU .navbar.navbar-short {
  min-height: 60px;
}
.cid-trPz6AYncU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-trPz6AYncU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-trPz6AYncU .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-trPz6AYncU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trPz6AYncU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trPz6AYncU .dropdown-item.active,
.cid-trPz6AYncU .dropdown-item:active {
  background-color: transparent;
}
.cid-trPz6AYncU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trPz6AYncU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trPz6AYncU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trPz6AYncU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-trPz6AYncU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trPz6AYncU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trPz6AYncU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trPz6AYncU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-trPz6AYncU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-trPz6AYncU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trPz6AYncU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-trPz6AYncU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trPz6AYncU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trPz6AYncU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-trPz6AYncU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trPz6AYncU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-trPz6AYncU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-trPz6AYncU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trPz6AYncU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-trPz6AYncU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trPz6AYncU .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-trPz6AYncU .navbar {
    height: 70px;
  }
  .cid-trPz6AYncU .navbar.opened {
    height: auto;
  }
  .cid-trPz6AYncU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trPzwTCtdj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPzwTCtdj .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPzwTCtdj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPzwTCtdj .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-trPzwTCtdj .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-trPzwTCtdj .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-trPzwTCtdj .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-trPzwTCtdj .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-trPzwTCtdj .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-trPzwTCtdj .mbr-section-head {
  width: 100%;
}
.cid-trPzwTCtdj .mbr-section-title {
  color: #e46d0c;
}
@media (max-width: 767px) {
  .cid-trPzwTCtdj .mbr-section-title {
    text-align: center;
  }
}
.cid-trPzwTCtdj .mbr-section-subtitle {
  color: #fafafa;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-trPzwTCtdj .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-trPzwTCtdj .card-row {
  align-items: stretch;
}
.cid-trPzwTCtdj .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-trPzwTCtdj .item {
    margin-top: 30px;
  }
}
.cid-trPzwTCtdj .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-trPzwTCtdj .item-wrapper {
    padding: 20px;
  }
}
.cid-trPzwTCtdj .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-trPzwTCtdj .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-trPzwTCtdj .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-trPzwTCtdj .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-trPzwTCtdj .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-trPzwTCtdj .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-trPzwTCtdj .card-title {
  position: relative;
  z-index: 5;
  color: #bbbbbb;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-trPzwTCtdj .card-title {
    margin-bottom: 10px;
  }
}
.cid-trPzwTCtdj .card-text {
  position: relative;
  z-index: 5;
  color: #e46d0c;
  margin-bottom: 0;
}
.cid-trPzwTCtdj .card-text a {
  transition: .4s all;
}
.cid-trPzwTCtdj .card-text a:hover {
  color: #e46d0c !important;
}
.cid-trPz6CwdLU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #16181c;
}
.cid-trPz6CwdLU .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
  text-align: center;
}
.cid-trPz6GgFPL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trPz6GgFPL .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPz6GgFPL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPz6GgFPL .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trPz6GgFPL .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trPz6GgFPL .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trPz6GgFPL .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trPz6GgFPL .container {
    max-width: 100%;
  }
  .cid-trPz6GgFPL .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trPz6GgFPL .item-wrap {
  width: 100%;
}
.cid-trPz6GgFPL .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trPz6GgFPL .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trPz6GgFPL .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trPz6GgFPL .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPz6GgFPL .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trPz6GgFPL .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPz6GgFPL .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trPz6GgFPL .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-trPz6GgFPL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trPz6GgFPL .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trPz6GgFPL .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-trPz6GgFPL .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trPz6GgFPL .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trPz6GgFPL .col-links {
    padding-top: 20px;
  }
}
.cid-trPz6GgFPL .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-trPz6GgFPL .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trPz6GgFPL .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-trPz6GgFPL .list {
    text-align: center !important;
  }
}
.cid-trPz6GgFPL .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-trPz6GgFPL .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-trPz6GgFPL .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-trPz6GgFPL .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-trPz6GgFPL .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-trPz6GgFPL .list a:hover:before {
  width: 100%;
}
.cid-trPz6GgFPL .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-trPz6GgFPL .col-copyright {
    padding-top: 40px;
  }
}
.cid-trPz6GgFPL .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-trPz6GgFPL .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-trPz6HQYlu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPz6HQYlu .mbr-section-head {
  width: 100%;
}
.cid-trPz6HQYlu .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tpVPNWwd1j {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tpVPNWwd1j nav.navbar {
  position: fixed;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tpVPNWwd1j .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tpVPNWwd1j .dropdown-item:hover,
.cid-tpVPNWwd1j .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tpVPNWwd1j .dropdown-item:hover span {
  color: white;
}
.cid-tpVPNWwd1j .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tpVPNWwd1j .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tpVPNWwd1j .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tpVPNWwd1j .nav-link {
  position: relative;
}
.cid-tpVPNWwd1j .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .container {
    flex-wrap: wrap;
  }
}
.cid-tpVPNWwd1j .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tpVPNWwd1j .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tpVPNWwd1j .dropdown-menu,
.cid-tpVPNWwd1j .navbar.opened {
  background: #16181c !important;
}
.cid-tpVPNWwd1j .nav-item:focus,
.cid-tpVPNWwd1j .nav-link:focus {
  outline: none;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tpVPNWwd1j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tpVPNWwd1j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpVPNWwd1j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpVPNWwd1j .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tpVPNWwd1j .navbar.opened {
  transition: all 0.3s;
}
.cid-tpVPNWwd1j .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tpVPNWwd1j .navbar .navbar-logo img {
  width: auto;
}
.cid-tpVPNWwd1j .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tpVPNWwd1j .navbar.collapsed {
  justify-content: center;
}
.cid-tpVPNWwd1j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tpVPNWwd1j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tpVPNWwd1j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpVPNWwd1j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tpVPNWwd1j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tpVPNWwd1j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tpVPNWwd1j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tpVPNWwd1j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpVPNWwd1j .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tpVPNWwd1j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tpVPNWwd1j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tpVPNWwd1j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tpVPNWwd1j .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tpVPNWwd1j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpVPNWwd1j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tpVPNWwd1j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpVPNWwd1j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpVPNWwd1j .dropdown-item.active,
.cid-tpVPNWwd1j .dropdown-item:active {
  background-color: transparent;
}
.cid-tpVPNWwd1j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpVPNWwd1j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpVPNWwd1j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tpVPNWwd1j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpVPNWwd1j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpVPNWwd1j ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tpVPNWwd1j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tpVPNWwd1j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpVPNWwd1j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpVPNWwd1j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpVPNWwd1j .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tpVPNWwd1j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tpVPNWwd1j .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-tpVPNWwd1j .navbar {
    height: 70px;
  }
  .cid-tpVPNWwd1j .navbar.opened {
    height: auto;
  }
  .cid-tpVPNWwd1j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trPadCbS2z {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPadCbS2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPadCbS2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPadCbS2z .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPadCbS2z .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPadCbS2z .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPadCbS2z .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPadCbS2z .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPadCbS2z .card-subtitle {
  color: #878e99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPadCbS2z .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPadCbS2z .card-text {
  color: #e46d0c;
  margin-bottom: 0;
}
.cid-trPcA8WSO0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPcA8WSO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPcA8WSO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPcA8WSO0 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPcA8WSO0 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPcA8WSO0 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPcA8WSO0 .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPcA8WSO0 .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPcA8WSO0 .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPcA8WSO0 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPcA8WSO0 .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPddVSDTX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPddVSDTX .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPddVSDTX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPddVSDTX .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPddVSDTX .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPddVSDTX .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPddVSDTX .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPddVSDTX .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPddVSDTX .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPddVSDTX .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPddVSDTX .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPdfy6Rai {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPdfy6Rai .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPdfy6Rai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPdfy6Rai .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPdfy6Rai .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPdfy6Rai .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPdfy6Rai .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdfy6Rai .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPdfy6Rai .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdfy6Rai .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPdfy6Rai .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPdf62LdM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPdf62LdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPdf62LdM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPdf62LdM .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPdf62LdM .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPdf62LdM .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPdf62LdM .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdf62LdM .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPdf62LdM .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdf62LdM .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPdf62LdM .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPdeFovtw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPdeFovtw .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPdeFovtw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPdeFovtw .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPdeFovtw .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPdeFovtw .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPdeFovtw .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdeFovtw .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPdeFovtw .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdeFovtw .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPdeFovtw .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPdM6QsDD {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPdM6QsDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPdM6QsDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPdM6QsDD .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPdM6QsDD .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPdM6QsDD .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPdM6QsDD .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdM6QsDD .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPdM6QsDD .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPdM6QsDD .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPdM6QsDD .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPgUjdPRW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trPgUjdPRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPgUjdPRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPgUjdPRW .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trPgUjdPRW .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trPgUjdPRW .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .container {
    max-width: 100%;
  }
  .cid-trPgUjdPRW .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trPgUjdPRW .item-wrap {
  width: 100%;
}
.cid-trPgUjdPRW .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trPgUjdPRW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPgUjdPRW .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trPgUjdPRW .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-trPgUjdPRW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trPgUjdPRW .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-trPgUjdPRW .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trPgUjdPRW .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .col-links {
    padding-top: 20px;
  }
}
.cid-trPgUjdPRW .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trPgUjdPRW .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-trPgUjdPRW .list {
    text-align: center !important;
  }
}
.cid-trPgUjdPRW .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-trPgUjdPRW .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-trPgUjdPRW .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-trPgUjdPRW .list a:hover:before {
  width: 100%;
}
.cid-trPgUjdPRW .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-trPgUjdPRW .col-copyright {
    padding-top: 40px;
  }
}
.cid-trPgUjdPRW .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-trPgUjdPRW .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-trPqYXB6Av {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-trPqYXB6Av nav.navbar {
  position: fixed;
}
.cid-trPqYXB6Av .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-trPqYXB6Av .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-trPqYXB6Av .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-trPqYXB6Av .dropdown-item:hover,
.cid-trPqYXB6Av .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-trPqYXB6Av .dropdown-item:hover span {
  color: white;
}
.cid-trPqYXB6Av .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-trPqYXB6Av .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-trPqYXB6Av .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-trPqYXB6Av .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-trPqYXB6Av .nav-link {
  position: relative;
}
.cid-trPqYXB6Av .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-trPqYXB6Av .container {
    flex-wrap: wrap;
  }
}
.cid-trPqYXB6Av .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-trPqYXB6Av .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-trPqYXB6Av .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-trPqYXB6Av .dropdown-menu,
.cid-trPqYXB6Av .navbar.opened {
  background: #16181c !important;
}
.cid-trPqYXB6Av .nav-item:focus,
.cid-trPqYXB6Av .nav-link:focus {
  outline: none;
}
.cid-trPqYXB6Av .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-trPqYXB6Av .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trPqYXB6Av .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-trPqYXB6Av .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-trPqYXB6Av .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trPqYXB6Av .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trPqYXB6Av .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-trPqYXB6Av .navbar.opened {
  transition: all 0.3s;
}
.cid-trPqYXB6Av .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-trPqYXB6Av .navbar .navbar-logo img {
  width: auto;
}
.cid-trPqYXB6Av .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-trPqYXB6Av .navbar.collapsed {
  justify-content: center;
}
.cid-trPqYXB6Av .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-trPqYXB6Av .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-trPqYXB6Av .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-trPqYXB6Av .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trPqYXB6Av .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trPqYXB6Av .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-trPqYXB6Av .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trPqYXB6Av .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-trPqYXB6Av .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-trPqYXB6Av .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-trPqYXB6Av .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trPqYXB6Av .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trPqYXB6Av .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trPqYXB6Av .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-trPqYXB6Av .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-trPqYXB6Av .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trPqYXB6Av .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-trPqYXB6Av .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-trPqYXB6Av .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-trPqYXB6Av .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-trPqYXB6Av .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-trPqYXB6Av .navbar.navbar-short {
  min-height: 60px;
}
.cid-trPqYXB6Av .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-trPqYXB6Av .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-trPqYXB6Av .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-trPqYXB6Av .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trPqYXB6Av .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trPqYXB6Av .dropdown-item.active,
.cid-trPqYXB6Av .dropdown-item:active {
  background-color: transparent;
}
.cid-trPqYXB6Av .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trPqYXB6Av .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trPqYXB6Av .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trPqYXB6Av .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-trPqYXB6Av .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trPqYXB6Av .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trPqYXB6Av ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-trPqYXB6Av .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-trPqYXB6Av button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-trPqYXB6Av button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-trPqYXB6Av button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-trPqYXB6Av button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trPqYXB6Av button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trPqYXB6Av button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-trPqYXB6Av nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trPqYXB6Av nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-trPqYXB6Av nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-trPqYXB6Av nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trPqYXB6Av .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-trPqYXB6Av a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-trPqYXB6Av .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-trPqYXB6Av .navbar {
    height: 70px;
  }
  .cid-trPqYXB6Av .navbar.opened {
    height: auto;
  }
  .cid-trPqYXB6Av .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trPqYZ5eDM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPqYZ5eDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqYZ5eDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqYZ5eDM .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPqYZ5eDM .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPqYZ5eDM .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPqYZ5eDM .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqYZ5eDM .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPqYZ5eDM .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqYZ5eDM .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPqYZ5eDM .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPqYZAzPE {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPqYZAzPE .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqYZAzPE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqYZAzPE .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPqYZAzPE .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPqYZAzPE .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPqYZAzPE .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqYZAzPE .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPqYZAzPE .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqYZAzPE .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPqYZAzPE .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPqZ02Suq {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPqZ02Suq .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqZ02Suq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqZ02Suq .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPqZ02Suq .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPqZ02Suq .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPqZ02Suq .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ02Suq .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPqZ02Suq .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ02Suq .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPqZ02Suq .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPqZ0xb1W {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPqZ0xb1W .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqZ0xb1W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqZ0xb1W .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPqZ0xb1W .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPqZ0xb1W .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPqZ0xb1W .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ0xb1W .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPqZ0xb1W .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ0xb1W .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPqZ0xb1W .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPqZ0Zq5A {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPqZ0Zq5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqZ0Zq5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqZ0Zq5A .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPqZ0Zq5A .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPqZ0Zq5A .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPqZ0Zq5A .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ0Zq5A .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPqZ0Zq5A .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ0Zq5A .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPqZ0Zq5A .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPqZ1tgrA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPqZ1tgrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqZ1tgrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqZ1tgrA .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPqZ1tgrA .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPqZ1tgrA .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPqZ1tgrA .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ1tgrA .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPqZ1tgrA .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPqZ1tgrA .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPqZ1tgrA .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsqEjjcm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsqEjjcm .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsqEjjcm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsqEjjcm .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsqEjjcm .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsqEjjcm .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsqEjjcm .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsqEjjcm .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsqEjjcm .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsqEjjcm .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsqEjjcm .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsypLSus {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsypLSus .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsypLSus .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsypLSus .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsypLSus .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsypLSus .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsypLSus .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsypLSus .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsypLSus .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsypLSus .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsypLSus .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPszPsY8e {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPszPsY8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPszPsY8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPszPsY8e .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPszPsY8e .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPszPsY8e .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPszPsY8e .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPszPsY8e .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPszPsY8e .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPszPsY8e .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPszPsY8e .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tTdXqZiPlf {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tTdXqZiPlf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTdXqZiPlf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTdXqZiPlf .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-tTdXqZiPlf .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-tTdXqZiPlf .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-tTdXqZiPlf .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tTdXqZiPlf .card-title {
    margin-bottom: 20px;
  }
}
.cid-tTdXqZiPlf .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tTdXqZiPlf .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tTdXqZiPlf .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsAYL6yH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsAYL6yH .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsAYL6yH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsAYL6yH .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsAYL6yH .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsAYL6yH .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsAYL6yH .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsAYL6yH .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsAYL6yH .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsAYL6yH .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsAYL6yH .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsBu8Xkp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsBu8Xkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsBu8Xkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsBu8Xkp .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsBu8Xkp .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsBu8Xkp .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsBu8Xkp .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsBu8Xkp .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsBu8Xkp .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsBu8Xkp .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsBu8Xkp .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsBYtwSm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsBYtwSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsBYtwSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsBYtwSm .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsBYtwSm .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsBYtwSm .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsBYtwSm .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsBYtwSm .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsBYtwSm .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsBYtwSm .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsBYtwSm .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsCxOSYd {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsCxOSYd .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsCxOSYd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsCxOSYd .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsCxOSYd .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsCxOSYd .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsCxOSYd .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsCxOSYd .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsCxOSYd .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsCxOSYd .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsCxOSYd .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsxH5s0J {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsxH5s0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsxH5s0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsxH5s0J .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsxH5s0J .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsxH5s0J .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsxH5s0J .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsxH5s0J .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsxH5s0J .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsxH5s0J .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsxH5s0J .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPsx4Bj20 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-trPsx4Bj20 .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPsx4Bj20 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPsx4Bj20 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-trPsx4Bj20 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-trPsx4Bj20 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-trPsx4Bj20 .card-title {
  color: #e46d0c;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsx4Bj20 .card-title {
    margin-bottom: 20px;
  }
}
.cid-trPsx4Bj20 .card-subtitle {
  color: #fff0b0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-trPsx4Bj20 .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-trPsx4Bj20 .card-text {
  color: #878e99;
  margin-bottom: 0;
}
.cid-trPqZ2N8fn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-trPqZ2N8fn .mbr-fallback-image.disabled {
  display: none;
}
.cid-trPqZ2N8fn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trPqZ2N8fn .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trPqZ2N8fn .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trPqZ2N8fn .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trPqZ2N8fn .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trPqZ2N8fn .container {
    max-width: 100%;
  }
  .cid-trPqZ2N8fn .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trPqZ2N8fn .item-wrap {
  width: 100%;
}
.cid-trPqZ2N8fn .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trPqZ2N8fn .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trPqZ2N8fn .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trPqZ2N8fn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPqZ2N8fn .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trPqZ2N8fn .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trPqZ2N8fn .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trPqZ2N8fn .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-trPqZ2N8fn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-trPqZ2N8fn .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-trPqZ2N8fn .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-trPqZ2N8fn .soc-item:hover {
  transform: translateY(-3px);
}
.cid-trPqZ2N8fn .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trPqZ2N8fn .col-links {
    padding-top: 20px;
  }
}
.cid-trPqZ2N8fn .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-trPqZ2N8fn .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-trPqZ2N8fn .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-trPqZ2N8fn .list {
    text-align: center !important;
  }
}
.cid-trPqZ2N8fn .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-trPqZ2N8fn .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-trPqZ2N8fn .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-trPqZ2N8fn .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-trPqZ2N8fn .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-trPqZ2N8fn .list a:hover:before {
  width: 100%;
}
.cid-trPqZ2N8fn .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-trPqZ2N8fn .col-copyright {
    padding-top: 40px;
  }
}
.cid-trPqZ2N8fn .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-trPqZ2N8fn .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-tvi2aYnOzU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvi2aYnOzU nav.navbar {
  position: fixed;
}
.cid-tvi2aYnOzU .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-tvi2aYnOzU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvi2aYnOzU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvi2aYnOzU .dropdown-item:hover,
.cid-tvi2aYnOzU .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tvi2aYnOzU .dropdown-item:hover span {
  color: white;
}
.cid-tvi2aYnOzU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvi2aYnOzU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvi2aYnOzU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvi2aYnOzU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvi2aYnOzU .nav-link {
  position: relative;
}
.cid-tvi2aYnOzU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tvi2aYnOzU .container {
    flex-wrap: wrap;
  }
}
.cid-tvi2aYnOzU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tvi2aYnOzU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tvi2aYnOzU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvi2aYnOzU .dropdown-menu,
.cid-tvi2aYnOzU .navbar.opened {
  background: #16181c !important;
}
.cid-tvi2aYnOzU .nav-item:focus,
.cid-tvi2aYnOzU .nav-link:focus {
  outline: none;
}
.cid-tvi2aYnOzU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvi2aYnOzU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvi2aYnOzU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvi2aYnOzU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvi2aYnOzU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvi2aYnOzU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvi2aYnOzU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tvi2aYnOzU .navbar.opened {
  transition: all 0.3s;
}
.cid-tvi2aYnOzU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvi2aYnOzU .navbar .navbar-logo img {
  width: auto;
}
.cid-tvi2aYnOzU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvi2aYnOzU .navbar.collapsed {
  justify-content: center;
}
.cid-tvi2aYnOzU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvi2aYnOzU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvi2aYnOzU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tvi2aYnOzU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvi2aYnOzU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvi2aYnOzU .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-tvi2aYnOzU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvi2aYnOzU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvi2aYnOzU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvi2aYnOzU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvi2aYnOzU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvi2aYnOzU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvi2aYnOzU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvi2aYnOzU .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-tvi2aYnOzU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvi2aYnOzU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvi2aYnOzU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvi2aYnOzU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvi2aYnOzU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvi2aYnOzU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tvi2aYnOzU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tvi2aYnOzU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvi2aYnOzU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvi2aYnOzU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvi2aYnOzU .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-tvi2aYnOzU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvi2aYnOzU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvi2aYnOzU .dropdown-item.active,
.cid-tvi2aYnOzU .dropdown-item:active {
  background-color: transparent;
}
.cid-tvi2aYnOzU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvi2aYnOzU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvi2aYnOzU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvi2aYnOzU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tvi2aYnOzU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvi2aYnOzU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvi2aYnOzU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvi2aYnOzU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvi2aYnOzU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvi2aYnOzU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvi2aYnOzU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvi2aYnOzU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvi2aYnOzU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvi2aYnOzU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvi2aYnOzU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvi2aYnOzU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvi2aYnOzU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvi2aYnOzU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvi2aYnOzU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvi2aYnOzU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvi2aYnOzU .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-tvi2aYnOzU .navbar {
    height: 70px;
  }
  .cid-tvi2aYnOzU .navbar.opened {
    height: auto;
  }
  .cid-tvi2aYnOzU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUuHOeXvv4 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tUuHOeXvv4 .mbr-text,
.cid-tUuHOeXvv4 .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tUuHOeXvv4 .mbr-section-title,
  .cid-tUuHOeXvv4 .mbr-section-btn,
  .cid-tUuHOeXvv4 .mbr-text {
    text-align: center;
  }
}
.cid-tvi2b0WyIB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tvi2b0WyIB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvi2b0WyIB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvi2b0WyIB .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tvi2b0WyIB .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tvi2b0WyIB .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tvi2b0WyIB .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tvi2b0WyIB .container {
    max-width: 100%;
  }
  .cid-tvi2b0WyIB .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tvi2b0WyIB .item-wrap {
  width: 100%;
}
.cid-tvi2b0WyIB .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tvi2b0WyIB .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tvi2b0WyIB .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tvi2b0WyIB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tvi2b0WyIB .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tvi2b0WyIB .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tvi2b0WyIB .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tvi2b0WyIB .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tvi2b0WyIB .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-tvi2b0WyIB .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tvi2b0WyIB .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-tvi2b0WyIB .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tvi2b0WyIB .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvi2b0WyIB .col-links {
    padding-top: 20px;
  }
}
.cid-tvi2b0WyIB .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tvi2b0WyIB .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tvi2b0WyIB .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tvi2b0WyIB .list {
    text-align: center !important;
  }
}
.cid-tvi2b0WyIB .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tvi2b0WyIB .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tvi2b0WyIB .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tvi2b0WyIB .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-tvi2b0WyIB .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-tvi2b0WyIB .list a:hover:before {
  width: 100%;
}
.cid-tvi2b0WyIB .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tvi2b0WyIB .col-copyright {
    padding-top: 40px;
  }
}
.cid-tvi2b0WyIB .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-tvi2b0WyIB .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-tvi2b1loUt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tvi2b1loUt .mbr-section-head {
  width: 100%;
}
.cid-tvi2b1loUt .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tTeob6ZsxN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tTeob6ZsxN nav.navbar {
  position: fixed;
}
.cid-tTeob6ZsxN .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-tTeob6ZsxN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTeob6ZsxN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTeob6ZsxN .dropdown-item:hover,
.cid-tTeob6ZsxN .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tTeob6ZsxN .dropdown-item:hover span {
  color: white;
}
.cid-tTeob6ZsxN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTeob6ZsxN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTeob6ZsxN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTeob6ZsxN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTeob6ZsxN .nav-link {
  position: relative;
}
.cid-tTeob6ZsxN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTeob6ZsxN .container {
    flex-wrap: wrap;
  }
}
.cid-tTeob6ZsxN .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTeob6ZsxN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tTeob6ZsxN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTeob6ZsxN .dropdown-menu,
.cid-tTeob6ZsxN .navbar.opened {
  background: #16181c !important;
}
.cid-tTeob6ZsxN .nav-item:focus,
.cid-tTeob6ZsxN .nav-link:focus {
  outline: none;
}
.cid-tTeob6ZsxN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTeob6ZsxN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTeob6ZsxN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTeob6ZsxN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTeob6ZsxN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTeob6ZsxN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTeob6ZsxN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tTeob6ZsxN .navbar.opened {
  transition: all 0.3s;
}
.cid-tTeob6ZsxN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTeob6ZsxN .navbar .navbar-logo img {
  width: auto;
}
.cid-tTeob6ZsxN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTeob6ZsxN .navbar.collapsed {
  justify-content: center;
}
.cid-tTeob6ZsxN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTeob6ZsxN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTeob6ZsxN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tTeob6ZsxN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTeob6ZsxN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTeob6ZsxN .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-tTeob6ZsxN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTeob6ZsxN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTeob6ZsxN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTeob6ZsxN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTeob6ZsxN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTeob6ZsxN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTeob6ZsxN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTeob6ZsxN .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-tTeob6ZsxN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTeob6ZsxN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTeob6ZsxN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTeob6ZsxN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTeob6ZsxN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTeob6ZsxN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTeob6ZsxN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTeob6ZsxN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTeob6ZsxN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTeob6ZsxN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTeob6ZsxN .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-tTeob6ZsxN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTeob6ZsxN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTeob6ZsxN .dropdown-item.active,
.cid-tTeob6ZsxN .dropdown-item:active {
  background-color: transparent;
}
.cid-tTeob6ZsxN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTeob6ZsxN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTeob6ZsxN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTeob6ZsxN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tTeob6ZsxN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTeob6ZsxN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTeob6ZsxN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTeob6ZsxN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTeob6ZsxN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTeob6ZsxN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTeob6ZsxN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTeob6ZsxN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTeob6ZsxN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTeob6ZsxN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTeob6ZsxN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTeob6ZsxN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTeob6ZsxN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTeob6ZsxN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTeob6ZsxN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTeob6ZsxN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTeob6ZsxN .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-tTeob6ZsxN .navbar {
    height: 70px;
  }
  .cid-tTeob6ZsxN .navbar.opened {
    height: auto;
  }
  .cid-tTeob6ZsxN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTlNPzjizL {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tTlNPzjizL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTlNPzjizL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTlNPzjizL .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tTlNPzjizL .mbr-section-title {
  color: #e46d0c;
}
.cid-tTlNPzjizL .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tTlNPzjizL .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tTlNPzjizL .card-row {
  align-items: stretch;
}
.cid-tTlNPzjizL .card {
  margin-top: 30px;
}
.cid-tTlNPzjizL .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-tTlNPzjizL .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tTlNPzjizL .card-wrapper {
    padding: 20px;
  }
}
.cid-tTlNPzjizL .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tTlNPzjizL .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tTlNPzjizL .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tTlNPzjizL .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tTlNPzjizL .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tTlNPzjizL .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tTlNPzjizL .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tTlNPzjizL .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-tTlNPzjizL .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tTlNPzjizL .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tTeob7kM7k {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #16181c;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tTeob7kM7k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTeob7kM7k .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tTeob7kM7k .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tTeob7kM7k .btn-primary-outline:active {
  color: gray;
}
.cid-tTeob7kM7k .btn-primary-outline:hover {
  color: white;
}
.cid-tTeob7kM7k .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tTeob7kM7k div {
  overflow: hidden;
}
.cid-tTeob7kM7k li.active .btn-primary-outline {
  color: white;
}
.cid-tTeob7kM7k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTeob7kM7k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTeob7kM7k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTeob7kM7k .mbr-gallery-item {
  overflow: hidden;
}
.cid-tTeob7kM7k .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tTeob7kM7k .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tTeob7kM7k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #232323, #1b1b1b) !important;
}
.cid-tTeob7kM7k .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tTeob7kM7k .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tTeob7kM7k .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tTeob7kM7k .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #232323, #1b1b1b) !important;
}
.cid-ubPhwrhqWZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPhwrhqWZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPhwrhqWZ .mbr-text {
  color: #878e99;
}
.cid-ubPhwrhqWZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPhyl6fCH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPhyl6fCH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPhyl6fCH .mbr-text {
  color: #878e99;
}
.cid-ubPhyl6fCH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjiyqbQL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPjiyqbQL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjiyqbQL .mbr-text {
  color: #878e99;
}
.cid-ubPjiyqbQL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjjlW96r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPjjlW96r .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjjlW96r .mbr-text {
  color: #878e99;
}
.cid-ubPjjlW96r .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjk8o63O {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPjk8o63O .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjk8o63O .mbr-text {
  color: #878e99;
}
.cid-ubPjk8o63O .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjkOoMN2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPjkOoMN2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjkOoMN2 .mbr-text {
  color: #878e99;
}
.cid-ubPjkOoMN2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjmHkAR8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPjmHkAR8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPjmHkAR8 .mbr-text {
  color: #878e99;
}
.cid-ubPjmHkAR8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tTeob7C5CG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tTeob7C5CG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTeob7C5CG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTeob7C5CG .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tTeob7C5CG .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tTeob7C5CG .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tTeob7C5CG .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tTeob7C5CG .container {
    max-width: 100%;
  }
  .cid-tTeob7C5CG .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tTeob7C5CG .item-wrap {
  width: 100%;
}
.cid-tTeob7C5CG .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tTeob7C5CG .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tTeob7C5CG .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tTeob7C5CG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tTeob7C5CG .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tTeob7C5CG .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tTeob7C5CG .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tTeob7C5CG .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tTeob7C5CG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-tTeob7C5CG .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tTeob7C5CG .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-tTeob7C5CG .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tTeob7C5CG .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tTeob7C5CG .col-links {
    padding-top: 20px;
  }
}
.cid-tTeob7C5CG .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tTeob7C5CG .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tTeob7C5CG .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tTeob7C5CG .list {
    text-align: center !important;
  }
}
.cid-tTeob7C5CG .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tTeob7C5CG .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tTeob7C5CG .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tTeob7C5CG .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-tTeob7C5CG .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-tTeob7C5CG .list a:hover:before {
  width: 100%;
}
.cid-tTeob7C5CG .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tTeob7C5CG .col-copyright {
    padding-top: 40px;
  }
}
.cid-tTeob7C5CG .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-tTeob7C5CG .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-tTeob83CHM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tTeob83CHM .mbr-section-head {
  width: 100%;
}
.cid-tTeob83CHM .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tTlKFW0Lno {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tTlKFW0Lno nav.navbar {
  position: fixed;
}
.cid-tTlKFW0Lno .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-tTlKFW0Lno .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTlKFW0Lno .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTlKFW0Lno .dropdown-item:hover,
.cid-tTlKFW0Lno .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tTlKFW0Lno .dropdown-item:hover span {
  color: white;
}
.cid-tTlKFW0Lno .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTlKFW0Lno .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTlKFW0Lno .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTlKFW0Lno .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTlKFW0Lno .nav-link {
  position: relative;
}
.cid-tTlKFW0Lno .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTlKFW0Lno .container {
    flex-wrap: wrap;
  }
}
.cid-tTlKFW0Lno .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTlKFW0Lno .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tTlKFW0Lno .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTlKFW0Lno .dropdown-menu,
.cid-tTlKFW0Lno .navbar.opened {
  background: #16181c !important;
}
.cid-tTlKFW0Lno .nav-item:focus,
.cid-tTlKFW0Lno .nav-link:focus {
  outline: none;
}
.cid-tTlKFW0Lno .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTlKFW0Lno .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTlKFW0Lno .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTlKFW0Lno .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTlKFW0Lno .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTlKFW0Lno .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTlKFW0Lno .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tTlKFW0Lno .navbar.opened {
  transition: all 0.3s;
}
.cid-tTlKFW0Lno .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTlKFW0Lno .navbar .navbar-logo img {
  width: auto;
}
.cid-tTlKFW0Lno .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTlKFW0Lno .navbar.collapsed {
  justify-content: center;
}
.cid-tTlKFW0Lno .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTlKFW0Lno .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTlKFW0Lno .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tTlKFW0Lno .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTlKFW0Lno .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTlKFW0Lno .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-tTlKFW0Lno .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTlKFW0Lno .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTlKFW0Lno .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTlKFW0Lno .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTlKFW0Lno .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTlKFW0Lno .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTlKFW0Lno .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTlKFW0Lno .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-tTlKFW0Lno .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTlKFW0Lno .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTlKFW0Lno .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTlKFW0Lno .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTlKFW0Lno .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTlKFW0Lno .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTlKFW0Lno .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTlKFW0Lno .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTlKFW0Lno .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTlKFW0Lno .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTlKFW0Lno .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-tTlKFW0Lno .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTlKFW0Lno .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTlKFW0Lno .dropdown-item.active,
.cid-tTlKFW0Lno .dropdown-item:active {
  background-color: transparent;
}
.cid-tTlKFW0Lno .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTlKFW0Lno .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTlKFW0Lno .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTlKFW0Lno .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tTlKFW0Lno .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTlKFW0Lno .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTlKFW0Lno ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTlKFW0Lno .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTlKFW0Lno button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTlKFW0Lno button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTlKFW0Lno button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTlKFW0Lno button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTlKFW0Lno button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTlKFW0Lno button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTlKFW0Lno nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTlKFW0Lno nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTlKFW0Lno nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTlKFW0Lno nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTlKFW0Lno .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTlKFW0Lno a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTlKFW0Lno .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-tTlKFW0Lno .navbar {
    height: 70px;
  }
  .cid-tTlKFW0Lno .navbar.opened {
    height: auto;
  }
  .cid-tTlKFW0Lno .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTlNZ16JoZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tTlNZ16JoZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTlNZ16JoZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTlNZ16JoZ .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tTlNZ16JoZ .mbr-section-title {
  color: #e46d0c;
}
.cid-tTlNZ16JoZ .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tTlNZ16JoZ .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tTlNZ16JoZ .card-row {
  align-items: stretch;
}
.cid-tTlNZ16JoZ .card {
  margin-top: 30px;
}
.cid-tTlNZ16JoZ .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-tTlNZ16JoZ .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tTlNZ16JoZ .card-wrapper {
    padding: 20px;
  }
}
.cid-tTlNZ16JoZ .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tTlNZ16JoZ .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tTlNZ16JoZ .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tTlNZ16JoZ .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tTlNZ16JoZ .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tTlNZ16JoZ .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tTlNZ16JoZ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tTlNZ16JoZ .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-tTlNZ16JoZ .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tTlNZ16JoZ .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tTlKFWjx8u {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #16181c;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tTlKFWjx8u .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTlKFWjx8u .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tTlKFWjx8u .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tTlKFWjx8u .btn-primary-outline:active {
  color: gray;
}
.cid-tTlKFWjx8u .btn-primary-outline:hover {
  color: white;
}
.cid-tTlKFWjx8u .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tTlKFWjx8u div {
  overflow: hidden;
}
.cid-tTlKFWjx8u li.active .btn-primary-outline {
  color: white;
}
.cid-tTlKFWjx8u .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTlKFWjx8u .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTlKFWjx8u .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTlKFWjx8u .mbr-gallery-item {
  overflow: hidden;
}
.cid-tTlKFWjx8u .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tTlKFWjx8u .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tTlKFWjx8u .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #232323, #1b1b1b) !important;
}
.cid-tTlKFWjx8u .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tTlKFWjx8u .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tTlKFWjx8u .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tTlKFWjx8u .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #232323, #1b1b1b) !important;
}
.cid-tTlKFWA4HZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tTlKFWA4HZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTlKFWA4HZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTlKFWA4HZ .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tTlKFWA4HZ .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tTlKFWA4HZ .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tTlKFWA4HZ .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tTlKFWA4HZ .container {
    max-width: 100%;
  }
  .cid-tTlKFWA4HZ .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tTlKFWA4HZ .item-wrap {
  width: 100%;
}
.cid-tTlKFWA4HZ .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tTlKFWA4HZ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tTlKFWA4HZ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tTlKFWA4HZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tTlKFWA4HZ .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tTlKFWA4HZ .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tTlKFWA4HZ .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tTlKFWA4HZ .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tTlKFWA4HZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-tTlKFWA4HZ .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tTlKFWA4HZ .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-tTlKFWA4HZ .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tTlKFWA4HZ .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tTlKFWA4HZ .col-links {
    padding-top: 20px;
  }
}
.cid-tTlKFWA4HZ .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tTlKFWA4HZ .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tTlKFWA4HZ .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tTlKFWA4HZ .list {
    text-align: center !important;
  }
}
.cid-tTlKFWA4HZ .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tTlKFWA4HZ .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tTlKFWA4HZ .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tTlKFWA4HZ .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-tTlKFWA4HZ .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-tTlKFWA4HZ .list a:hover:before {
  width: 100%;
}
.cid-tTlKFWA4HZ .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tTlKFWA4HZ .col-copyright {
    padding-top: 40px;
  }
}
.cid-tTlKFWA4HZ .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-tTlKFWA4HZ .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-tTlKFWXvde {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-tTlKFWXvde .mbr-section-head {
  width: 100%;
}
.cid-tTlKFWXvde .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
  opacity: 1;
}
.cid-tTxV7BYldq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tTxV7BYldq nav.navbar {
  position: fixed;
}
.cid-tTxV7BYldq .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-tTxV7BYldq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTxV7BYldq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTxV7BYldq .dropdown-item:hover,
.cid-tTxV7BYldq .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-tTxV7BYldq .dropdown-item:hover span {
  color: white;
}
.cid-tTxV7BYldq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTxV7BYldq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTxV7BYldq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTxV7BYldq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTxV7BYldq .nav-link {
  position: relative;
}
.cid-tTxV7BYldq .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTxV7BYldq .container {
    flex-wrap: wrap;
  }
}
.cid-tTxV7BYldq .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTxV7BYldq .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tTxV7BYldq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTxV7BYldq .dropdown-menu,
.cid-tTxV7BYldq .navbar.opened {
  background: #16181c !important;
}
.cid-tTxV7BYldq .nav-item:focus,
.cid-tTxV7BYldq .nav-link:focus {
  outline: none;
}
.cid-tTxV7BYldq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTxV7BYldq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTxV7BYldq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTxV7BYldq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTxV7BYldq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTxV7BYldq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTxV7BYldq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-tTxV7BYldq .navbar.opened {
  transition: all 0.3s;
}
.cid-tTxV7BYldq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTxV7BYldq .navbar .navbar-logo img {
  width: auto;
}
.cid-tTxV7BYldq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTxV7BYldq .navbar.collapsed {
  justify-content: center;
}
.cid-tTxV7BYldq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTxV7BYldq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTxV7BYldq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tTxV7BYldq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTxV7BYldq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTxV7BYldq .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-tTxV7BYldq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTxV7BYldq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTxV7BYldq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTxV7BYldq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTxV7BYldq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTxV7BYldq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTxV7BYldq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTxV7BYldq .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-tTxV7BYldq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTxV7BYldq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTxV7BYldq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTxV7BYldq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTxV7BYldq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTxV7BYldq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTxV7BYldq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTxV7BYldq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTxV7BYldq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTxV7BYldq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTxV7BYldq .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-tTxV7BYldq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTxV7BYldq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTxV7BYldq .dropdown-item.active,
.cid-tTxV7BYldq .dropdown-item:active {
  background-color: transparent;
}
.cid-tTxV7BYldq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTxV7BYldq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTxV7BYldq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTxV7BYldq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-tTxV7BYldq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTxV7BYldq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTxV7BYldq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTxV7BYldq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTxV7BYldq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTxV7BYldq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTxV7BYldq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTxV7BYldq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTxV7BYldq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTxV7BYldq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTxV7BYldq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTxV7BYldq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTxV7BYldq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTxV7BYldq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTxV7BYldq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTxV7BYldq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTxV7BYldq .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-tTxV7BYldq .navbar {
    height: 70px;
  }
  .cid-tTxV7BYldq .navbar.opened {
    height: auto;
  }
  .cid-tTxV7BYldq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTxYfZ9hzj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tTxYfZ9hzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTxYfZ9hzj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTxYfZ9hzj .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tTxYfZ9hzj .mbr-section-title {
  color: #e46d0c;
}
.cid-tTxYfZ9hzj .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tTxYfZ9hzj .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tTxYfZ9hzj .card-row {
  align-items: stretch;
}
.cid-tTxYfZ9hzj .card {
  margin-top: 30px;
}
.cid-tTxYfZ9hzj .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-tTxYfZ9hzj .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tTxYfZ9hzj .card-wrapper {
    padding: 20px;
  }
}
.cid-tTxYfZ9hzj .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tTxYfZ9hzj .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tTxYfZ9hzj .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tTxYfZ9hzj .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tTxYfZ9hzj .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tTxYfZ9hzj .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tTxYfZ9hzj .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tTxYfZ9hzj .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-tTxYfZ9hzj .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tTxYfZ9hzj .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tTxVw2jrAY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #16181c;
}
.cid-tTxVw2jrAY iframe {
  margin-left: auto;
  margin-right: auto;
}
.cid-tTxVw2jrAY .container-fluid {
  padding: 0;
}
.cid-tTxWWVXH18 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1b1b1b;
}
.cid-tTxWWVXH18 iframe {
  margin-left: auto;
  margin-right: auto;
}
.cid-tTxWWVXH18 .container-fluid {
  padding: 0;
}
.cid-tTxXB9EeuG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #16181c;
}
.cid-tTxXB9EeuG iframe {
  margin-left: auto;
  margin-right: auto;
}
.cid-tTxXB9EeuG .container-fluid {
  padding: 0;
}
.cid-tTxXBFLTL7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1b1b1b;
}
.cid-tTxXBFLTL7 iframe {
  margin-left: auto;
  margin-right: auto;
}
.cid-tTxXBFLTL7 .container-fluid {
  padding: 0;
}
.cid-tTxXCjUjfS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #16181c;
}
.cid-tTxXCjUjfS iframe {
  margin-left: auto;
  margin-right: auto;
}
.cid-tTxXCjUjfS .container-fluid {
  padding: 0;
}
.cid-tTxXCY7Gwa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1b1b1b;
}
.cid-tTxXCY7Gwa iframe {
  margin-left: auto;
  margin-right: auto;
}
.cid-tTxXCY7Gwa .container-fluid {
  padding: 0;
}
.cid-tTxV7CDunW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-tTxV7CDunW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTxV7CDunW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTxV7CDunW .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-tTxV7CDunW .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-tTxV7CDunW .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-tTxV7CDunW .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-tTxV7CDunW .container {
    max-width: 100%;
  }
  .cid-tTxV7CDunW .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tTxV7CDunW .item-wrap {
  width: 100%;
}
.cid-tTxV7CDunW .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tTxV7CDunW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tTxV7CDunW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tTxV7CDunW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tTxV7CDunW .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tTxV7CDunW .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tTxV7CDunW .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tTxV7CDunW .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-tTxV7CDunW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-tTxV7CDunW .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tTxV7CDunW .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-tTxV7CDunW .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tTxV7CDunW .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tTxV7CDunW .col-links {
    padding-top: 20px;
  }
}
.cid-tTxV7CDunW .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-tTxV7CDunW .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tTxV7CDunW .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tTxV7CDunW .list {
    text-align: center !important;
  }
}
.cid-tTxV7CDunW .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-tTxV7CDunW .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-tTxV7CDunW .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tTxV7CDunW .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-tTxV7CDunW .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-tTxV7CDunW .list a:hover:before {
  width: 100%;
}
.cid-tTxV7CDunW .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-tTxV7CDunW .col-copyright {
    padding-top: 40px;
  }
}
.cid-tTxV7CDunW .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-tTxV7CDunW .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-uaNQaNDb0i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uaNQaNDb0i nav.navbar {
  position: fixed;
}
.cid-uaNQaNDb0i .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-uaNQaNDb0i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaNQaNDb0i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uaNQaNDb0i .dropdown-item:hover,
.cid-uaNQaNDb0i .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-uaNQaNDb0i .dropdown-item:hover span {
  color: white;
}
.cid-uaNQaNDb0i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaNQaNDb0i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaNQaNDb0i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaNQaNDb0i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaNQaNDb0i .nav-link {
  position: relative;
}
.cid-uaNQaNDb0i .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaNQaNDb0i .container {
    flex-wrap: wrap;
  }
}
.cid-uaNQaNDb0i .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaNQaNDb0i .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uaNQaNDb0i .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uaNQaNDb0i .dropdown-menu,
.cid-uaNQaNDb0i .navbar.opened {
  background: #16181c !important;
}
.cid-uaNQaNDb0i .nav-item:focus,
.cid-uaNQaNDb0i .nav-link:focus {
  outline: none;
}
.cid-uaNQaNDb0i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaNQaNDb0i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaNQaNDb0i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaNQaNDb0i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaNQaNDb0i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaNQaNDb0i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaNQaNDb0i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-uaNQaNDb0i .navbar.opened {
  transition: all 0.3s;
}
.cid-uaNQaNDb0i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaNQaNDb0i .navbar .navbar-logo img {
  width: auto;
}
.cid-uaNQaNDb0i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaNQaNDb0i .navbar.collapsed {
  justify-content: center;
}
.cid-uaNQaNDb0i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaNQaNDb0i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaNQaNDb0i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uaNQaNDb0i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaNQaNDb0i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaNQaNDb0i .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-uaNQaNDb0i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaNQaNDb0i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaNQaNDb0i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaNQaNDb0i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaNQaNDb0i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaNQaNDb0i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaNQaNDb0i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaNQaNDb0i .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-uaNQaNDb0i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaNQaNDb0i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaNQaNDb0i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaNQaNDb0i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaNQaNDb0i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaNQaNDb0i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uaNQaNDb0i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uaNQaNDb0i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uaNQaNDb0i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uaNQaNDb0i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uaNQaNDb0i .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-uaNQaNDb0i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaNQaNDb0i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaNQaNDb0i .dropdown-item.active,
.cid-uaNQaNDb0i .dropdown-item:active {
  background-color: transparent;
}
.cid-uaNQaNDb0i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaNQaNDb0i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaNQaNDb0i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaNQaNDb0i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-uaNQaNDb0i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaNQaNDb0i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaNQaNDb0i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaNQaNDb0i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uaNQaNDb0i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaNQaNDb0i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uaNQaNDb0i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaNQaNDb0i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaNQaNDb0i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaNQaNDb0i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaNQaNDb0i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaNQaNDb0i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaNQaNDb0i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaNQaNDb0i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaNQaNDb0i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaNQaNDb0i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaNQaNDb0i .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-uaNQaNDb0i .navbar {
    height: 70px;
  }
  .cid-uaNQaNDb0i .navbar.opened {
    height: auto;
  }
  .cid-uaNQaNDb0i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaNQaNWAly {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uaNQaNWAly .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaNQaNWAly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaNQaNWAly .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-uaNQaNWAly .mbr-section-title {
  color: #e46d0c;
}
.cid-uaNQaNWAly .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uaNQaNWAly .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uaNQaNWAly .card-row {
  align-items: stretch;
}
.cid-uaNQaNWAly .card {
  margin-top: 30px;
}
.cid-uaNQaNWAly .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-uaNQaNWAly .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-uaNQaNWAly .card-wrapper {
    padding: 20px;
  }
}
.cid-uaNQaNWAly .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uaNQaNWAly .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-uaNQaNWAly .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-uaNQaNWAly .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-uaNQaNWAly .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-uaNQaNWAly .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-uaNQaNWAly .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-uaNQaNWAly .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-uaNQaNWAly .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-uaNQaNWAly .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-uaNQGoVTYt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #16181c;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uaNQGoVTYt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uaNQGoVTYt .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-uaNQGoVTYt .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-uaNQGoVTYt .btn-primary-outline:active {
  color: gray;
}
.cid-uaNQGoVTYt .btn-primary-outline:hover {
  color: white;
}
.cid-uaNQGoVTYt .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-uaNQGoVTYt div {
  overflow: hidden;
}
.cid-uaNQGoVTYt li.active .btn-primary-outline {
  color: white;
}
.cid-uaNQGoVTYt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uaNQGoVTYt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uaNQGoVTYt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uaNQGoVTYt .mbr-gallery-item {
  overflow: hidden;
}
.cid-uaNQGoVTYt .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-uaNQGoVTYt .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-uaNQGoVTYt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #232323, #1b1b1b) !important;
}
.cid-uaNQGoVTYt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uaNQGoVTYt .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uaNQGoVTYt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uaNQGoVTYt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #232323, #1b1b1b) !important;
}
.cid-ubmUTy7qio {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubmUTy7qio .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubmUTy7qio .mbr-text {
  color: #878e99;
}
.cid-ubmUTy7qio .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubn067IQ2e {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubn067IQ2e .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubn067IQ2e .mbr-text {
  color: #878e99;
}
.cid-ubn067IQ2e .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0FWaUe3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubn0FWaUe3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0FWaUe3 .mbr-text {
  color: #878e99;
}
.cid-ubn0FWaUe3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0N3lzMF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubn0N3lzMF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0N3lzMF .mbr-text {
  color: #878e99;
}
.cid-ubn0N3lzMF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0OjEWx0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubn0OjEWx0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0OjEWx0 .mbr-text {
  color: #878e99;
}
.cid-ubn0OjEWx0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0NoFXXD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubn0NoFXXD .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0NoFXXD .mbr-text {
  color: #878e99;
}
.cid-ubn0NoFXXD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0OH5gTc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubn0OH5gTc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubn0OH5gTc .mbr-text {
  color: #878e99;
}
.cid-ubn0OH5gTc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubrB8r4KaN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubrB8r4KaN .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubrB8r4KaN .mbr-text {
  color: #878e99;
}
.cid-ubrB8r4KaN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uaNQaPDi0i {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uaNQaPDi0i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaNQaPDi0i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaNQaPDi0i .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uaNQaPDi0i .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uaNQaPDi0i .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uaNQaPDi0i .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uaNQaPDi0i .container {
    max-width: 100%;
  }
  .cid-uaNQaPDi0i .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uaNQaPDi0i .item-wrap {
  width: 100%;
}
.cid-uaNQaPDi0i .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uaNQaPDi0i .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uaNQaPDi0i .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uaNQaPDi0i .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uaNQaPDi0i .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uaNQaPDi0i .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uaNQaPDi0i .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uaNQaPDi0i .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uaNQaPDi0i .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uaNQaPDi0i .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uaNQaPDi0i .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-uaNQaPDi0i .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uaNQaPDi0i .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uaNQaPDi0i .col-links {
    padding-top: 20px;
  }
}
.cid-uaNQaPDi0i .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uaNQaPDi0i .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uaNQaPDi0i .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uaNQaPDi0i .list {
    text-align: center !important;
  }
}
.cid-uaNQaPDi0i .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uaNQaPDi0i .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uaNQaPDi0i .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uaNQaPDi0i .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-uaNQaPDi0i .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-uaNQaPDi0i .list a:hover:before {
  width: 100%;
}
.cid-uaNQaPDi0i .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uaNQaPDi0i .col-copyright {
    padding-top: 40px;
  }
}
.cid-uaNQaPDi0i .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uaNQaPDi0i .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
.cid-ub5wZL7MpS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ub5wZL7MpS nav.navbar {
  position: fixed;
}
.cid-ub5wZL7MpS .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-ub5wZL7MpS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ub5wZL7MpS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ub5wZL7MpS .dropdown-item:hover,
.cid-ub5wZL7MpS .dropdown-item:focus {
  background: #e46d0c !important;
  color: white !important;
}
.cid-ub5wZL7MpS .dropdown-item:hover span {
  color: white;
}
.cid-ub5wZL7MpS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ub5wZL7MpS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ub5wZL7MpS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ub5wZL7MpS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ub5wZL7MpS .nav-link {
  position: relative;
}
.cid-ub5wZL7MpS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ub5wZL7MpS .container {
    flex-wrap: wrap;
  }
}
.cid-ub5wZL7MpS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ub5wZL7MpS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ub5wZL7MpS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ub5wZL7MpS .dropdown-menu,
.cid-ub5wZL7MpS .navbar.opened {
  background: #16181c !important;
}
.cid-ub5wZL7MpS .nav-item:focus,
.cid-ub5wZL7MpS .nav-link:focus {
  outline: none;
}
.cid-ub5wZL7MpS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ub5wZL7MpS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ub5wZL7MpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ub5wZL7MpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ub5wZL7MpS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ub5wZL7MpS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ub5wZL7MpS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #16181c;
}
.cid-ub5wZL7MpS .navbar.opened {
  transition: all 0.3s;
}
.cid-ub5wZL7MpS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ub5wZL7MpS .navbar .navbar-logo img {
  width: auto;
}
.cid-ub5wZL7MpS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ub5wZL7MpS .navbar.collapsed {
  justify-content: center;
}
.cid-ub5wZL7MpS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ub5wZL7MpS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ub5wZL7MpS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-ub5wZL7MpS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ub5wZL7MpS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ub5wZL7MpS .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-ub5wZL7MpS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ub5wZL7MpS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ub5wZL7MpS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ub5wZL7MpS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ub5wZL7MpS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ub5wZL7MpS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ub5wZL7MpS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ub5wZL7MpS .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-ub5wZL7MpS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ub5wZL7MpS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ub5wZL7MpS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ub5wZL7MpS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ub5wZL7MpS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ub5wZL7MpS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ub5wZL7MpS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ub5wZL7MpS .navbar.navbar-short {
  min-height: 60px;
}
.cid-ub5wZL7MpS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ub5wZL7MpS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ub5wZL7MpS .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-ub5wZL7MpS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ub5wZL7MpS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ub5wZL7MpS .dropdown-item.active,
.cid-ub5wZL7MpS .dropdown-item:active {
  background-color: transparent;
}
.cid-ub5wZL7MpS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ub5wZL7MpS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ub5wZL7MpS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ub5wZL7MpS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #16181c;
}
.cid-ub5wZL7MpS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ub5wZL7MpS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ub5wZL7MpS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ub5wZL7MpS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ub5wZL7MpS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ub5wZL7MpS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ub5wZL7MpS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ub5wZL7MpS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub5wZL7MpS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ub5wZL7MpS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ub5wZL7MpS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub5wZL7MpS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ub5wZL7MpS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ub5wZL7MpS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ub5wZL7MpS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ub5wZL7MpS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ub5wZL7MpS .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-ub5wZL7MpS .navbar {
    height: 70px;
  }
  .cid-ub5wZL7MpS .navbar.opened {
    height: auto;
  }
  .cid-ub5wZL7MpS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ub5wZLosRI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ub5wZLosRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5wZLosRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5wZLosRI .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-ub5wZLosRI .mbr-section-title {
  color: #e46d0c;
}
.cid-ub5wZLosRI .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-ub5wZLosRI .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ub5wZLosRI .card-row {
  align-items: stretch;
}
.cid-ub5wZLosRI .card {
  margin-top: 30px;
}
.cid-ub5wZLosRI .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
@media (max-width: 1199px) {
  .cid-ub5wZLosRI .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-ub5wZLosRI .card-wrapper {
    padding: 20px;
  }
}
.cid-ub5wZLosRI .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-ub5wZLosRI .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-ub5wZLosRI .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-ub5wZLosRI .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-ub5wZLosRI .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-ub5wZLosRI .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-ub5wZLosRI .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-ub5wZLosRI .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #e46d0c;
}
.cid-ub5wZLosRI .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-ub5wZLosRI .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-ub5ROVFaI7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #191b1f;
}
.cid-ub5ROVFaI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5ROVFaI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5ROVFaI7 .video-wrapper iframe {
  width: 100%;
}
.cid-ub5ROVFaI7 .mbr-section-title,
.cid-ub5ROVFaI7 .mbr-section-subtitle,
.cid-ub5ROVFaI7 .mbr-text {
  text-align: center;
}
.cid-ub5ROVFaI7 .mbr-section-title {
  color: #ffffff;
}
.cid-ub5ROVFaI7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5ROVFaI7 .mbr-text {
  color: #ffffff;
}
.cid-ub5GvYcjjM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #191b1f;
}
.cid-ub5GvYcjjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5GvYcjjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5GvYcjjM .video-wrapper iframe {
  width: 100%;
}
.cid-ub5GvYcjjM .mbr-section-title,
.cid-ub5GvYcjjM .mbr-section-subtitle,
.cid-ub5GvYcjjM .mbr-text {
  text-align: center;
}
.cid-ub5GvYcjjM .mbr-section-title {
  color: #ffffff;
}
.cid-ub5GvYcjjM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5GvYcjjM .mbr-text {
  color: #ffffff;
}
.cid-ub5O66Ppe5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #191b1f;
}
.cid-ub5O66Ppe5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5O66Ppe5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5O66Ppe5 .video-wrapper iframe {
  width: 100%;
}
.cid-ub5O66Ppe5 .mbr-section-title,
.cid-ub5O66Ppe5 .mbr-section-subtitle,
.cid-ub5O66Ppe5 .mbr-text {
  text-align: center;
}
.cid-ub5O66Ppe5 .mbr-section-title {
  color: #ffffff;
}
.cid-ub5O66Ppe5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5O66Ppe5 .mbr-text {
  color: #ffffff;
}
.cid-ub5B89RiH0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #212428;
}
.cid-ub5B89RiH0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5B89RiH0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5B89RiH0 .video-wrapper iframe {
  width: 100%;
}
.cid-ub5B89RiH0 .mbr-section-title,
.cid-ub5B89RiH0 .mbr-section-subtitle,
.cid-ub5B89RiH0 .mbr-text {
  text-align: center;
}
.cid-ub5B89RiH0 .mbr-section-title {
  color: #ffffff;
}
.cid-ub5B89RiH0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5B89RiH0 .mbr-text {
  color: #ffffff;
}
.cid-ub5XyU8PRo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #191b1f;
}
.cid-ub5XyU8PRo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5XyU8PRo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5XyU8PRo .video-wrapper iframe {
  width: 100%;
}
.cid-ub5XyU8PRo .mbr-section-title,
.cid-ub5XyU8PRo .mbr-section-subtitle,
.cid-ub5XyU8PRo .mbr-text {
  text-align: center;
}
.cid-ub5XyU8PRo .mbr-section-title {
  color: #ffffff;
}
.cid-ub5XyU8PRo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5XyU8PRo .mbr-text {
  color: #ffffff;
}
.cid-ub5xXGizZC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #212428;
}
.cid-ub5xXGizZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5xXGizZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5xXGizZC .video-wrapper iframe {
  width: 100%;
}
.cid-ub5xXGizZC .mbr-section-title,
.cid-ub5xXGizZC .mbr-section-subtitle,
.cid-ub5xXGizZC .mbr-text {
  text-align: center;
}
.cid-ub5xXGizZC .mbr-section-title {
  color: #ffffff;
}
.cid-ub5xXGizZC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5xXGizZC .mbr-text {
  color: #ffffff;
}
.cid-ub5B9K7zEC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #191b1f;
}
.cid-ub5B9K7zEC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5B9K7zEC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5B9K7zEC .video-wrapper iframe {
  width: 100%;
}
.cid-ub5B9K7zEC .mbr-section-title,
.cid-ub5B9K7zEC .mbr-section-subtitle,
.cid-ub5B9K7zEC .mbr-text {
  text-align: center;
}
.cid-ub5B9K7zEC .mbr-section-title {
  color: #ffffff;
}
.cid-ub5B9K7zEC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5B9K7zEC .mbr-text {
  color: #ffffff;
}
.cid-ub5Ffe7txG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #212428;
}
.cid-ub5Ffe7txG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5Ffe7txG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5Ffe7txG .video-wrapper iframe {
  width: 100%;
}
.cid-ub5Ffe7txG .mbr-section-title,
.cid-ub5Ffe7txG .mbr-section-subtitle,
.cid-ub5Ffe7txG .mbr-text {
  text-align: center;
}
.cid-ub5Ffe7txG .mbr-section-title {
  color: #ffffff;
}
.cid-ub5Ffe7txG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5Ffe7txG .mbr-text {
  color: #ffffff;
}
.cid-ub5LnhvayW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #212428;
}
.cid-ub5LnhvayW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5LnhvayW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5LnhvayW .video-wrapper iframe {
  width: 100%;
}
.cid-ub5LnhvayW .mbr-section-title,
.cid-ub5LnhvayW .mbr-section-subtitle,
.cid-ub5LnhvayW .mbr-text {
  text-align: center;
}
.cid-ub5LnhvayW .mbr-section-title {
  color: #ffffff;
}
.cid-ub5LnhvayW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ub5LnhvayW .mbr-text {
  color: #ffffff;
}
.cid-ubPmhyxt9Q {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPmhyxt9Q .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmhyxt9Q .mbr-text {
  color: #878e99;
}
.cid-ubPmhyxt9Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmiaTxbM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPmiaTxbM .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmiaTxbM .mbr-text {
  color: #878e99;
}
.cid-ubPmiaTxbM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmjdDH9w {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPmjdDH9w .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmjdDH9w .mbr-text {
  color: #878e99;
}
.cid-ubPmjdDH9w .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmjLxEov {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPmjLxEov .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmjLxEov .mbr-text {
  color: #878e99;
}
.cid-ubPmjLxEov .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmki1sFk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPmki1sFk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmki1sFk .mbr-text {
  color: #878e99;
}
.cid-ubPmki1sFk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmkFZJej {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ubPmkFZJej .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ubPmkFZJej .mbr-text {
  color: #878e99;
}
.cid-ubPmkFZJej .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ub5wZMv9Da {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-ub5wZMv9Da .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5wZMv9Da .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5wZMv9Da .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-ub5wZMv9Da .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-ub5wZMv9Da .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-ub5wZMv9Da .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-ub5wZMv9Da .container {
    max-width: 100%;
  }
  .cid-ub5wZMv9Da .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-ub5wZMv9Da .item-wrap {
  width: 100%;
}
.cid-ub5wZMv9Da .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-ub5wZMv9Da .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ub5wZMv9Da .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ub5wZMv9Da .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-ub5wZMv9Da .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-ub5wZMv9Da .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-ub5wZMv9Da .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-ub5wZMv9Da .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-ub5wZMv9Da .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-ub5wZMv9Da .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-ub5wZMv9Da .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #e46d0c;
}
.cid-ub5wZMv9Da .soc-item:hover {
  transform: translateY(-3px);
}
.cid-ub5wZMv9Da .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ub5wZMv9Da .col-links {
    padding-top: 20px;
  }
}
.cid-ub5wZMv9Da .mbr-section-subtitle {
  color: #e46d0c;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-ub5wZMv9Da .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-ub5wZMv9Da .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #C4CFDE;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-ub5wZMv9Da .list {
    text-align: center !important;
  }
}
.cid-ub5wZMv9Da .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-ub5wZMv9Da .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-ub5wZMv9Da .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-ub5wZMv9Da .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #e46d0c;
  transition: 0.4s all;
}
.cid-ub5wZMv9Da .list a:hover {
  color: #e46d0c !important;
  line-height: inherit !important;
}
.cid-ub5wZMv9Da .list a:hover:before {
  width: 100%;
}
.cid-ub5wZMv9Da .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-ub5wZMv9Da .col-copyright {
    padding-top: 40px;
  }
}
.cid-ub5wZMv9Da .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-ub5wZMv9Da .copyright {
  color: #C4CFDE;
  padding: 40px 0;
}
