body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Exo2-VariableFont_wght';
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'SpaceGrotesk-VariableFont_wght';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Exo2-VariableFont_wght';
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'SpaceGrotesk-VariableFont_wght';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((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: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #2f779a !important;
}
.bg-success {
  background-color: #0a435f !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #b6ceda !important;
}
.bg-danger {
  background-color: #a18d39 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2f779a !important;
  border-color: #2f779a !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: #1b4458 !important;
  border-color: #1b4458 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1b4458 !important;
  border-color: #1b4458 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #556db5 !important;
  border-color: #556db5 !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: #36487d !important;
  border-color: #36487d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #36487d !important;
  border-color: #36487d !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: #0a435f !important;
  border-color: #0a435f !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: #020c11 !important;
  border-color: #020c11 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #020c11 !important;
  border-color: #020c11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b6ceda !important;
  border-color: #b6ceda !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #7ca7bd !important;
  border-color: #7ca7bd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #7ca7bd !important;
  border-color: #7ca7bd !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a18d39 !important;
  border-color: #a18d39 !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: #615522 !important;
  border-color: #615522 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #615522 !important;
  border-color: #615522 !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: #2f779a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1b4458 !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: #2f779a !important;
  border-color: #2f779a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #556db5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #36487d !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: #556db5 !important;
  border-color: #556db5 !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: #0a435f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #020c11 !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: #0a435f !important;
  border-color: #0a435f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b6ceda;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #7ca7bd !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b6ceda !important;
  border-color: #b6ceda !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a18d39;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #615522 !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: #a18d39 !important;
  border-color: #a18d39 !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: #2f779a !important;
}
.text-secondary {
  color: #556db5 !important;
}
.text-success {
  color: #0a435f !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #b6ceda !important;
}
.text-danger {
  color: #a18d39 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #173b4c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #324272 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000203 !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: #72a1b8 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #564b1e !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: #2f779a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #b6ceda;
}
.alert-danger {
  background-color: #a18d39;
}
.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: #2f779a;
  border-color: #2f779a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2f779a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #74b5d5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #1694d2;
}
.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: #d4c586;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Exo2-VariableFont_wght';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #2f779a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Exo2-VariableFont_wght';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #2f779a;
}
/* 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: #2f779a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2f779a;
}
.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: #2f779a;
  border-bottom-color: #2f779a;
}
.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: #2f779a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #556db5 !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='%232f779a' %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-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-tDAKwVKlKe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDAKwVKlKe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDAKwVKlKe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDAKwVKlKe .link-align {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tDAKwVKlKe .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tDAKwVKlKe .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDAKwVKlKe .link-wrap {
  width: fit-content;
  display: inline-block;
  overflow: hidden;
}
.cid-tDAKwVKlKe .link-wrap:hover svg {
  animation-duration: 1s;
  animation-name: svg;
}
.cid-tDAKwVKlKe svg {
  transition: all 0.3s;
  width: 100%;
  margin-top: -20px;
}
.cid-tDAKwVKlKe g {
  fill: #2f779a;
}
@keyframes svg {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.cid-tDAKwVKlKe .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDAKwVKlKe .image-wrapper {
    padding: 1rem;
  }
}
.cid-tDAKwVKlKe .mbr-link,
.cid-tDAKwVKlKe .link-align {
  color: #5eadef;
  text-align: left;
}
.cid-tDAKwVKlKe .mbr-section-title {
  color: #0a435f;
  text-align: left;
}
.cid-tDAKwVKlKe .mbr-text,
.cid-tDAKwVKlKe .mbr-section-btn {
  text-align: left;
}
.cid-sUOeKNIKCe .mbr-text,
.cid-sUOeKNIKCe .mbr-section-btn {
  color: #ffffff;
}
.cid-sUO6PoAmdK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sUO6PoAmdK .container {
    max-width: 1400px;
  }
}
.cid-sUO6PoAmdK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sUO6PoAmdK .card-wrapper {
  margin-top: 3rem;
}
.cid-sUO6PoAmdK .row {
  justify-content: center;
}
.cid-sUO6PoAmdK .mbr-section-title {
  color: #4479d9;
}
.cid-sUO6PoAmdK .card-text {
  color: #000000;
}
.cid-tDAIUt5MW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDAIUt5MW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tDAIUt5MW1 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 0.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
@media (max-width: 1259px) {
  .cid-tDAIUt5MW1 .content-container {
    grid-template-columns: 1fr 0.25fr;
  }
}
@media (max-width: 991px) {
  .cid-tDAIUt5MW1 .content-container {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tDAIUt5MW1 .content-container {
    grid-row-gap: 16px;
  }
}
.cid-tDAIUt5MW1 .mbr-section-title {
  color: #000000;
}
.cid-tDAIUt5MW1 .mbr-section-subtitle {
  color: #8f8f8f;
  padding: 16px 0;
  font-weight: 400;
}
.cid-tDAIUt5MW1 .mbr-section-subtitle b {
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-tDAIUt5MW1 .mbr-section-subtitle {
    padding: 12px 0;
  }
}
.cid-tDAIUt5MW1 .item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cid-tDAIUt5MW1 .item-right {
    padding-top: 0;
  }
}
.cid-tDAIUt5MW1 .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-tDAIUt5MW1 .mbr-section-btn {
  margin-top: 30px;
}
.cid-tDAIUt5MW1 .mbr-section-btn .btn {
  min-width: 50px;
}
.cid-tDAIUt5MW1 .mbr-section-title2 {
  color: #4479d9;
}
.cid-tDAIUt5MW1 .mbr-text,
.cid-tDAIUt5MW1 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-sUTVdQ644n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sUTVdQ644n .mbr-section-title {
  color: #022f80;
}
.cid-sUTVdQ644n .link {
  color: #848383;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sUObtFHIqy {
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-sUObtFHIqy .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-sUObtFHIqy .mbr-text,
.cid-sUObtFHIqy .mbr-section-btn {
  color: #fafafa;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sUU75doaWz {
  background-image: url("../../../assets/images/mbr-1-1920x1276.jpg");
}
.cid-sUU75doaWz .mbr-section-title {
  color: #fafafa;
}
.cid-sUU75doaWz .mbr-text,
.cid-sUU75doaWz .mbr-section-btn {
  color: #ffffff;
}
.cid-sUU7AR95qV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1276.jpg");
}
.cid-sUU7AR95qV .mbr-overlay {
  background: #000000;
  opacity: 0.9;
}
.cid-sUU7AR95qV img,
.cid-sUU7AR95qV .item-img {
  width: 100%;
}
.cid-sUU7AR95qV .item:focus,
.cid-sUU7AR95qV span:focus {
  outline: none;
}
.cid-sUU7AR95qV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sUU7AR95qV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sUU7AR95qV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sUU7AR95qV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sUU7AR95qV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sUU7AR95qV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sUU7AR95qV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sUU7AR95qV .mbr-section-title {
  color: #fafafa;
}
.cid-sUU7AR95qV .mbr-text,
.cid-sUU7AR95qV .mbr-section-btn {
  text-align: left;
}
.cid-sUU7AR95qV .item-title {
  text-align: left;
}
.cid-sUU7AR95qV .item-subtitle {
  text-align: left;
}
.cid-sUU7AR95qV .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sUU28CIURj .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-sUU28CIURj .mbr-text,
.cid-sUU28CIURj .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-u1bdkPK9u1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-u1bdkPK9u1 .item-img {
  width: 100%;
  margin-bottom: 12px;
}
.cid-u1bdkPK9u1 .item-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u1bdkPK9u1 .item:focus,
.cid-u1bdkPK9u1 span:focus {
  outline: none;
}
.cid-u1bdkPK9u1 .row {
  margin-left: -32px;
  margin-right: -32px;
}
.cid-u1bdkPK9u1 .item {
  cursor: pointer;
  padding: 32px;
  margin: -1px 0 0;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.cid-u1bdkPK9u1 .item-img {
  border: 1px solid #595959;
  transition: border-color 200ms ease;
  overflow: hidden;
}
.cid-u1bdkPK9u1 .item-img img {
  transition: 0.5s;
}
.cid-u1bdkPK9u1 .item-img:hover {
  border: 1px solid #ffffff;
}
.cid-u1bdkPK9u1 .item-img:hover img {
  transform: scale(1.2);
}
.cid-u1bdkPK9u1 .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u1bdkPK9u1 .item-wrap {
  background: transparent;
}
.cid-u1bdkPK9u1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u1bdkPK9u1 .mbr-section-title {
  color: #232323;
}
.cid-u1bdkPK9u1 .item-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-u1bdkPK9u1 .mbr-text,
.cid-u1bdkPK9u1 .mbr-section-btn {
  text-align: left;
}
.cid-u1bdkPK9u1 .item-subtitle {
  text-align: center;
}
.cid-u1bdkPK9u1 .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-u1bdkPK9u1 .buttons-container .item-button {
  margin: 0;
}
.cid-u1bdkPK9u1 .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-u1bdkPK9u1 .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u1bdkPK9u1 .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (max-width: 991px) {
  .cid-u1bdkPK9u1 .item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u1bdkPK9u1 .item:not(:last-child) {
    border-right: 1px solid #ffffff;
  }
}
@media (max-width: 767px) {
  .cid-u1bdkPK9u1 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 575px) {
  .cid-u1bdkPK9u1 .item {
    padding: 24px;
  }
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sFGzrhlvIh {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/qortal-background-dark-1-2000x1333.jpg");
}
.cid-sFGzrhlvIh .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-sFGzrhlvIh .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-sFGzrhlvIh .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-sFGzrhlvIh .mbr-text {
  color: #ffffff;
}
.cid-sFGzrhlvIh .card {
  padding-bottom: 1.5rem;
}
.cid-sFGzrhlvIh .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFGzrhlvIh .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sFGzrhlvIh .card-wrapper .card-title {
  color: #ffffff;
}
.cid-sFGzrhlvIh H1 {
  color: #bed3f9;
}
.cid-sFGzrhlvIh .mbr-text,
.cid-sFGzrhlvIh .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sFGzrhlvIh .card-wrapper .card-title,
.cid-sFGzrhlvIh .card-box {
  color: #bbbbbb;
}
.cid-sVJzbvnsEC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sVJzbvnsEC .img-wrapper {
  text-align: center;
}
.cid-sVJzbvnsEC img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sVJzbvnsEC .row {
  align-items: flex-start;
}
.cid-sVJzbvnsEC .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-sVJzbvnsEC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sVJzbvnsEC .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sVJzbvnsEC .card-wrapper {
    padding: 1rem;
  }
}
.cid-sFGBbGYuTc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-sFGBbGYuTc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-sFGBbGYuTc .item {
    margin-bottom: 4rem;
  }
}
.cid-sFGBbGYuTc .item:last-child .icon-box:before {
  display: none;
}
.cid-sFGBbGYuTc .item.last .icon-box:before {
  display: none;
}
.cid-sFGBbGYuTc .step-number {
  padding-top: 6px;
}
.cid-sFGBbGYuTc .icon-box {
  background: #9fdbf8;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-sFGBbGYuTc .icon-box {
    margin-right: 1rem;
  }
}
.cid-sFGBbGYuTc .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #9fdbf8;
  transform: translate(-50%, 0);
}
.cid-sFGBbGYuTc span {
  font-size: 2rem;
  color: #0a638e;
}
@media (max-width: 991px) {
  .cid-sFGBbGYuTc .card {
    margin-bottom: 2rem;
  }
  .cid-sFGBbGYuTc .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sFGBbGYuTc .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-sFGBbGYuTc .icon-box::before {
    top: 114%;
  }
}
.cid-sFGBbGYuTc .card-title,
.cid-sFGBbGYuTc .card-box {
  color: #bbbbbb;
}
.cid-sFGBbGYuTc .icon-text {
  color: #bbbbbb;
}
.cid-sFGBbGYuTc .mbr-text,
.cid-sFGBbGYuTc .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sW3KBbSlMB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sW3KBbSlMB .mbr-section-subtitle {
  color: #4479d9;
}
.cid-sVJIgoEAnL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-sVJIgoEAnL .mbr-section-subtitle {
  text-align: left;
  color: #fafafa;
}
.cid-sVJIgoEAnL .mbr-section-title {
  color: #6592e6;
}
.cid-sVJHkuA8zl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sVJHkuA8zl .mbr-text {
  color: #767676;
}
.cid-sVJHkuA8zl .mbr-section-subtitle {
  color: #767676;
}
.cid-sVJHkuA8zl .title .num {
  width: 100%;
  display: block;
}
.cid-sVJHkuA8zl .title .card-title {
  z-index: 1;
}
.cid-sVJHkuA8zl .num {
  color: #6592e6;
}
@media (max-width: 767px) {
  .cid-sVJHkuA8zl * {
    text-align: center !important;
  }
  .cid-sVJHkuA8zl .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tDBcJuy5QG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDBcJuy5QG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background18-h-lf2qmnjn.jpg");
}
.cid-tDBcJuy5QG .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tDBcJuy5QG .container-fluid {
    padding: 0 12px;
  }
}
.cid-tDBcJuy5QG .container-fluid .row {
  padding: 0;
}
.cid-tDBcJuy5QG .row {
  border: 3px solid #353535;
  border-radius: 5px;
}
.cid-tDBcJuy5QG .card {
  padding: 80px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tDBcJuy5QG .card {
    border-left: 1px solid #353535;
  }
}
@media (max-width: 992px) {
  .cid-tDBcJuy5QG .card {
    padding: 48px 20px;
  }
}
.cid-tDBcJuy5QG .card .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDBcJuy5QG .card .image-wrapper .image-main {
  display: block;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  position: static;
  width: 50%;
}
@media (max-width: 1200px) {
  .cid-tDBcJuy5QG .card .image-wrapper .image-main {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-tDBcJuy5QG .card .image-wrapper .image-main {
    height: 250px;
  }
}
.cid-tDBcJuy5QG .card .image-wrapper img {
  position: absolute;
  top: 5rem;
  right: 6rem;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tDBcJuy5QG .card .image-wrapper img {
    right: 0;
  }
}
.cid-tDBcJuy5QG .card .image-wrapper img:nth-child(2) {
  right: auto;
  top: 11rem;
  left: 6rem;
}
@media (max-width: 992px) {
  .cid-tDBcJuy5QG .card .image-wrapper img:nth-child(2) {
    top: 6rem;
    left: 0;
  }
}
.cid-tDBcJuy5QG .card .image-wrapper img:last-child {
  top: auto;
  bottom: 8rem;
}
@media (max-width: 992px) {
  .cid-tDBcJuy5QG .card .image-wrapper img:last-child {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-tDBcJuy5QG .card .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-tDBcJuy5QG .card:last-child {
  justify-content: flex-end;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tDBcJuy5QG .card:last-child {
    border-left: none;
    border-right: 2px solid #353535;
  }
}
.cid-tDBcJuy5QG .card .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tDBcJuy5QG .card .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-tDBcJuy5QG .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tDBcJuy5QG .card .title-wrapper .mbr-section-subtitle {
  line-height: 48px;
  margin-bottom: 0;
}
.cid-tDBcJuy5QG .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tDBcJuy5QG .card .text-wrapper .mbr-section-btn .btn {
    width: 95%;
    min-height: 83px;
    border-radius: 70px;
  }
}
.cid-tDBcJuy5QG .mbr-section-title {
  color: #d2d2d2;
}
.cid-tDBcJuy5QG .mbr-section-subtitle {
  color: #d2d2d2;
}
.cid-tDBcJuy5QG .mbr-text {
  color: #d2d2d2;
}
.cid-u0D0rX2lcD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u0D0rX2lcD .item-img {
  position: relative;
}
.cid-u0D0rX2lcD .item-img img {
  transition: all 0.2s;
}
.cid-u0D0rX2lcD .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-u0D0rX2lcD .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-u0D0rX2lcD .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-u0D0rX2lcD .item:hover img {
  transform: scale(1.05);
}
.cid-u0D0rX2lcD .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-u0D0rX2lcD .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-u0D0rX2lcD .item-wrapper {
  position: relative;
  background: #000000;
  border: 3px solid #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0D0rX2lcD .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-u0D0rX2lcD .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-u0D0rX2lcD .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #000000;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-u0D0rX2lcD .link-icon-wrapper .icon-wrap {
  background: #141a29;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-u0D0rX2lcD .link-icon-wrapper .icon-wrap span {
  color: #fafafa;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-u0D0rX2lcD .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-u0D0rX2lcD .link-icon-wrapper .svg1 path {
  fill: #000000;
}
.cid-u0D0rX2lcD .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-u0D0rX2lcD .link-icon-wrapper .svg2 path {
  fill: #000000;
}
.cid-u0D0rX2lcD .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-u0D0rX2lcD .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-u0D0rX2lcD img,
.cid-u0D0rX2lcD .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u0D0rX2lcD .item:focus,
.cid-u0D0rX2lcD span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-u0D0rX2lcD .item {
    margin-bottom: 1rem;
  }
}
.cid-u0D0rX2lcD .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u0D0rX2lcD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-u0D0rX2lcD .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-u0D0rX2lcD .mbr-section-subtitle,
.cid-u0D0rX2lcD .subtitle-wrap,
.cid-u0D0rX2lcD .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-u0D0rX2lcD .mbr-text,
.cid-u0D0rX2lcD .item .mbr-section-btn {
  color: #ffffff;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tDS5279Nle {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tDS5279Nle .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDS5279Nle .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDS5279Nle .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-tDS5279Nle .container-fluid {
    padding: 0 20px;
  }
}
.cid-tDS5279Nle .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDS5279Nle .container {
    padding: 0 20px;
  }
  .cid-tDS5279Nle .container .row {
    padding: 0;
  }
}
.cid-tDS5279Nle .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tDS5279Nle .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tDS5279Nle .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tDS5279Nle .title-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-tDS5279Nle .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tDS5279Nle .text-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #bed3f9;
}
.cid-tDS5279Nle .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tDS5279Nle .mbr-text {
  color: #ffffff;
}
.cid-tDTvu9Bu3z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tDTvu9Bu3z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDTvu9Bu3z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDTvu9Bu3z .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-tDTvu9Bu3z .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDTvu9Bu3z .img1 {
  background: #0a435f;
}
.cid-tDTvu9Bu3z .img2 {
  background: #6592e6;
}
.cid-tDTvu9Bu3z .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tDTvu9Bu3z .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-tDTvu9Bu3z .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tDTvu9Bu3z .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDTvu9Bu3z .card-wrapper {
    flex-direction: column;
  }
  .cid-tDTvu9Bu3z .card-box {
    padding: 1rem;
  }
  .cid-tDTvu9Bu3z .card-box,
  .cid-tDTvu9Bu3z .img-wrapper {
    width: 100%;
  }
  .cid-tDTvu9Bu3z .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-tDTvu9Bu3z .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-tDTvu9Bu3z .card-subtitle {
  color: #0077ff;
}
.cid-tDTvu9Bu3z .mbr-text,
.cid-tDTvu9Bu3z .link-wrap {
  color: #555555;
}
.cid-tDTywLlpiZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tDTywLlpiZ img,
.cid-tDTywLlpiZ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDTywLlpiZ .item:focus,
.cid-tDTywLlpiZ span:focus {
  outline: none;
}
.cid-tDTywLlpiZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDTywLlpiZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDTywLlpiZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDTywLlpiZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDTywLlpiZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDTywLlpiZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDTywLlpiZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDTywLlpiZ .mbr-section-title {
  color: #bbbbbb;
}
.cid-tDTywLlpiZ .mbr-text,
.cid-tDTywLlpiZ .mbr-section-btn {
  text-align: left;
}
.cid-tDTywLlpiZ .item-title {
  text-align: left;
}
.cid-tDTywLlpiZ .item-subtitle {
  text-align: left;
  color: #848383;
}
.cid-tDTywLlpiZ .mbr-section-subtitle {
  color: #d2d2d2;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tDU4rtiio2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-tDU4rtiio2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDU4rtiio2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/qortal-thefuture-wallpaper-1920x1080.png");
}
.cid-tDU4rtiio2 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDU4rtiio2 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-tDU4rtiio2 .mbr-section-title {
  color: #5eadef;
}
.cid-tDU4rtiio2 .mbr-text,
.cid-tDU4rtiio2 .mbr-section-btn {
  color: #fafafa;
}
.cid-tDU6VjxscP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tDU6VjxscP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDU6VjxscP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDU6VjxscP .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tDU6VjxscP .container-fluid {
    padding: 0 12px;
  }
}
.cid-tDU6VjxscP .container-fluid .row {
  padding: 0;
}
.cid-tDU6VjxscP .row {
  border: 3px solid #d2d2d2;
  border-radius: 5px;
}
.cid-tDU6VjxscP .card {
  padding: 80px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tDU6VjxscP .card {
    border-left: 1px solid #d2d2d2;
  }
}
@media (max-width: 992px) {
  .cid-tDU6VjxscP .card {
    padding: 48px 20px;
  }
}
.cid-tDU6VjxscP .card .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDU6VjxscP .card .image-wrapper .image-main {
  display: block;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  position: static;
  width: 50%;
}
@media (max-width: 1200px) {
  .cid-tDU6VjxscP .card .image-wrapper .image-main {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-tDU6VjxscP .card .image-wrapper .image-main {
    height: 250px;
  }
}
.cid-tDU6VjxscP .card .image-wrapper img {
  position: absolute;
  top: 5rem;
  right: 6rem;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tDU6VjxscP .card .image-wrapper img {
    right: 0;
  }
}
.cid-tDU6VjxscP .card .image-wrapper img:nth-child(2) {
  right: auto;
  top: 11rem;
  left: 6rem;
}
@media (max-width: 992px) {
  .cid-tDU6VjxscP .card .image-wrapper img:nth-child(2) {
    top: 6rem;
    left: 0;
  }
}
.cid-tDU6VjxscP .card .image-wrapper img:last-child {
  top: auto;
  bottom: 8rem;
}
@media (max-width: 992px) {
  .cid-tDU6VjxscP .card .image-wrapper img:last-child {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-tDU6VjxscP .card .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-tDU6VjxscP .card:last-child {
  justify-content: flex-end;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tDU6VjxscP .card:last-child {
    border-left: none;
    border-right: 2px solid #d2d2d2;
  }
}
.cid-tDU6VjxscP .card .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tDU6VjxscP .card .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-tDU6VjxscP .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tDU6VjxscP .card .title-wrapper .mbr-section-subtitle {
  line-height: 48px;
  margin-bottom: 0;
}
.cid-tDU6VjxscP .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tDU6VjxscP .card .text-wrapper .mbr-section-btn .btn {
    width: 95%;
    min-height: 83px;
    border-radius: 70px;
  }
}
.cid-tDU6VjxscP .mbr-section-title {
  color: #d2d2d2;
}
.cid-tDU6VjxscP .mbr-section-subtitle {
  color: #d2d2d2;
}
.cid-tDU6VjxscP .mbr-text {
  color: #d2d2d2;
}
.cid-tRXmnohrxu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #04141d;
}
.cid-tRXmnohrxu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRXmnohrxu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRXmnohrxu .mbr-text,
.cid-tRXmnohrxu .link {
  color: #bbbbbb;
  text-align: center;
}
.cid-tRXmnohrxu .mbr-section-title {
  color: #d2d2d2;
}
.cid-tRXmnohrxu .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u0COh1RXP8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #04141d;
}
.cid-u0COh1RXP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0COh1RXP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0COh1RXP8 .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u0COh1RXP8 .container-fluid {
    padding: 0 25px;
  }
}
.cid-u0COh1RXP8 .container-fluid .row {
  padding: 0;
}
.cid-u0COh1RXP8 .title-wrapper {
  margin-bottom: 48px;
}
.cid-u0COh1RXP8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u0COh1RXP8 .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u0COh1RXP8 .image-wrapper .mbr-section-btn {
  position: absolute;
}
.cid-u0COh1RXP8 .image-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-u0COh1RXP8 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
.cid-u0COh1RXP8 .mbr-section-title {
  color: #ffffff;
}
.cid-tDU7W6OR0J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tDU7W6OR0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDU7W6OR0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDU7W6OR0J .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: flex-end;
}
@media (max-width: 1259px) {
  .cid-tDU7W6OR0J .content-container {
    grid-template-columns: 1fr 0.25fr;
  }
}
@media (max-width: 991px) {
  .cid-tDU7W6OR0J .content-container {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}
.cid-tDU7W6OR0J .mbr-section-title {
  color: #47b5ed;
}
.cid-tDU7W6OR0J .mbr-section-subtitle {
  color: #d2d2d2;
  padding: 16px 0;
  font-weight: 400;
}
.cid-tDU7W6OR0J .mbr-section-subtitle b {
  font-weight: 700;
}
@media (max-width: 575px) {
  .cid-tDU7W6OR0J .mbr-section-subtitle {
    padding: 4px 0;
  }
}
.cid-tDU7W6OR0J .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cid-tDU7W6OR0J .item-right {
    padding-top: 0;
  }
}
.cid-tDU7W6OR0J .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-tDU7W6OR0J .mbr-section-btn {
  margin-top: 30px;
}
.cid-tDU7W6OR0J .mbr-section-btn .btn {
  min-width: 50px;
}
.cid-tDU7W6OR0J .mbr-text,
.cid-tDU7W6OR0J .mbr-section-btn {
  color: #fafafa;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tDTOwnzFXQ {
  background-image: url("../../../assets/images/qortal-island-wallpaper-1280x720.jpg");
}
.cid-tDTOwnzFXQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-tDTOwnzFXQ .mbr-overlay {
  background: linear-gradient(90deg, #000000, #353535);
}
@media (min-width: 992px) {
  .cid-tDTOwnzFXQ .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tDTOwnzFXQ {
    text-align: center !important;
  }
  .cid-tDTOwnzFXQ .mbr-text {
    text-align: center;
  }
}
.cid-tDTOwnzFXQ .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tDTOwnzFXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDTOwnzFXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDTOwnzFXQ H1 {
  text-align: center;
}
.cid-tDTOwnzFXQ .mbr-text,
.cid-tDTOwnzFXQ .mbr-section-btn {
  text-align: center;
}
.cid-tDTPWfn22B {
  padding-top: 75px;
  background-color: #141a29;
}
.cid-tDTPWfn22B .text-content {
  padding-bottom: 60px;
}
.cid-tDTPWfn22B .content-container .btn-bgr {
  z-index: 0;
}
.cid-tDTPWfn22B .box-item-text {
  color: #767676;
}
.cid-tDTPWfn22B .box-item {
  padding: 2.5rem;
}
.cid-tDTPWfn22B .box-item:first-child {
  background-color: #ffffff;
}
.cid-tDTPWfn22B .box-item:nth-child(2) {
  background-color: #efefef;
}
.cid-tDTPWfn22B .box-item:last-child {
  background-color: #ffffff;
}
.cid-tDTPWfn22B .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tDTPWfn22B .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tDTPWfn22B .box-list li:last-child {
  border-bottom: none;
}
.cid-tDTPWfn22B .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tDTPWfn22B .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-tDTPWfn22B .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tDTPWfn22B .mbr-section-subtitle,
  .cid-tDTPWfn22B .mbr-section-title,
  .cid-tDTPWfn22B .mbr-text,
  .cid-tDTPWfn22B .mbr-section-btn,
  .cid-tDTPWfn22B .icon-block-top,
  .cid-tDTPWfn22B .box-item-title,
  .cid-tDTPWfn22B .box-item-text {
    text-align: center !important;
  }
}
.cid-tDUBgCEoZJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tDUBgCEoZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDUBgCEoZJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDUBgCEoZJ .item {
  padding-bottom: 2rem;
}
.cid-tDUBgCEoZJ .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tDUBgCEoZJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDUBgCEoZJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDUBgCEoZJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDUBgCEoZJ .carousel-control,
.cid-tDUBgCEoZJ .close {
  background: #1b1b1b;
}
.cid-tDUBgCEoZJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDUBgCEoZJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDUBgCEoZJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDUBgCEoZJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDUBgCEoZJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDUBgCEoZJ .close::before {
  content: '\e91a';
}
.cid-tDUBgCEoZJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDUBgCEoZJ .carousel-control {
  display: flex;
  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-tDUBgCEoZJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDUBgCEoZJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDUBgCEoZJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDUBgCEoZJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDUBgCEoZJ .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-tDUBgCEoZJ .carousel-indicators li.active,
.cid-tDUBgCEoZJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDUBgCEoZJ .carousel-indicators li::after,
.cid-tDUBgCEoZJ .carousel-indicators li::before {
  content: none;
}
.cid-tDUBgCEoZJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDUBgCEoZJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDUBgCEoZJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDUBgCEoZJ .carousel-indicators {
    display: none;
  }
}
.cid-tDUBgCEoZJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDUBgCEoZJ .carousel-inner > .active {
  display: block;
}
.cid-tDUBgCEoZJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDUBgCEoZJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDUBgCEoZJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDUBgCEoZJ .carousel-control,
  .cid-tDUBgCEoZJ .carousel-indicators,
  .cid-tDUBgCEoZJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDUBgCEoZJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDUBgCEoZJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDUBgCEoZJ .carousel-indicators .active,
.cid-tDUBgCEoZJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDUBgCEoZJ .carousel-indicators .active {
  background: #fff;
}
.cid-tDUBgCEoZJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDUBgCEoZJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDUBgCEoZJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDUBgCEoZJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDUBgCEoZJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDUBgCEoZJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDUBgCEoZJ .carousel {
  width: 100%;
}
.cid-tDUBgCEoZJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDUBgCEoZJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDUBgCEoZJ .modal.fade .modal-dialog,
.cid-tDUBgCEoZJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tDUBgCEoZJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDUBgCEoZJ H6 {
  text-align: center;
  color: #b6ceda;
}
.cid-tDUBgCEoZJ H3 {
  color: #b6ceda;
}
.cid-tDUBgCEoZJ H4 {
  color: #848383;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tIvwU9RhSM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIvwU9RhSM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-816x544.jpg");
}
.cid-tIvwU9RhSM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tIvwU9RhSM .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tIvwU9RhSM .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tIvwU9RhSM .mbr-section-title {
  color: #ffffff;
}
.cid-tIvwU9RhSM .mbr-section-subtitle {
  color: #b6ceda;
}
.cid-tIvwU9RhSM .mbr-text,
.cid-tIvwU9RhSM .mbr-section-btn,
.cid-tIvwU9RhSM .social-row {
  color: #848383;
}
.cid-tRVHGqHA2E {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tRVHGqHA2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRVHGqHA2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRVHGqHA2E .container-fluid {
  padding: 0 125px;
}
@media (max-width: 768px) {
  .cid-tRVHGqHA2E .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tRVHGqHA2E .container {
    padding: 0 26px;
  }
}
.cid-tRVHGqHA2E .row {
  justify-content: center;
}
.cid-tRVHGqHA2E .title-wrapper {
  margin-bottom: 50px;
}
.cid-tRVHGqHA2E .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tRVHGqHA2E .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-tRVHGqHA2E .item {
  padding: 0 10px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tRVHGqHA2E .item {
    padding: 0 12px;
  }
}
.cid-tRVHGqHA2E .item .item-wrapper {
  padding: 35px;
  border: 1px solid #ffffff;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tRVHGqHA2E .item .item-wrapper {
    padding: 18px;
  }
}
.cid-tRVHGqHA2E .item .item-wrapper .mbr-desc {
  margin-bottom: 18px;
}
.cid-tRVHGqHA2E .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  margin-bottom: 30px;
}
.cid-tRVHGqHA2E .item .item-wrapper .item-content .item-title {
  margin-bottom: 15px;
}
.cid-tRVHGqHA2E .item .item-wrapper .item-content .soc-wrap .social-row {
  display: inline-flex;
}
.cid-tRVHGqHA2E .item .item-wrapper .item-content .soc-wrap .social-row .soc-item {
  margin-left: 14px;
}
.cid-tRVHGqHA2E .item .item-wrapper .item-content .soc-wrap .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-tRVHGqHA2E .item .item-wrapper .item-content .soc-wrap .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-tRVHGqHA2E .item .item-wrapper .item-content .soc-wrap .social-row .soc-item a .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-tRVHGqHA2E .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tRVHGqHA2E .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tRVHGqHA2E .item-title {
  color: #ffffff;
}
.cid-tRVHGqHA2E .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-tRVHGqHA2E .item-title,
.cid-tRVHGqHA2E .soc-wrap {
  text-align: center;
}
.cid-u0a7GTSXBx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u0a7GTSXBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0a7GTSXBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0a7GTSXBx .container-fluid {
  padding: 0 125px;
}
@media (max-width: 768px) {
  .cid-u0a7GTSXBx .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-u0a7GTSXBx .container {
    padding: 0 26px;
  }
}
.cid-u0a7GTSXBx .row {
  justify-content: center;
}
.cid-u0a7GTSXBx .title-wrapper {
  margin-bottom: 50px;
}
.cid-u0a7GTSXBx .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u0a7GTSXBx .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-u0a7GTSXBx .item {
  padding: 0 10px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u0a7GTSXBx .item {
    padding: 0 12px;
  }
}
.cid-u0a7GTSXBx .item .item-wrapper {
  padding: 35px;
  border: 1px solid #ffffff;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-u0a7GTSXBx .item .item-wrapper {
    padding: 18px;
  }
}
.cid-u0a7GTSXBx .item .item-wrapper .mbr-desc {
  margin-bottom: 18px;
}
.cid-u0a7GTSXBx .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  margin-bottom: 30px;
}
.cid-u0a7GTSXBx .item .item-wrapper .item-content .item-title {
  margin-bottom: 15px;
}
.cid-u0a7GTSXBx .item .item-wrapper .item-content .soc-wrap .social-row {
  display: inline-flex;
}
.cid-u0a7GTSXBx .item .item-wrapper .item-content .soc-wrap .social-row .soc-item {
  margin-left: 14px;
}
.cid-u0a7GTSXBx .item .item-wrapper .item-content .soc-wrap .social-row .soc-item:first-child {
  margin-left: 0;
}
.cid-u0a7GTSXBx .item .item-wrapper .item-content .soc-wrap .social-row .soc-item a:hover .mbr-iconfont {
  display: inline-flex;
  transform: translateY(-5px);
}
.cid-u0a7GTSXBx .item .item-wrapper .item-content .soc-wrap .social-row .soc-item a .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-u0a7GTSXBx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u0a7GTSXBx .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u0a7GTSXBx .item-title {
  color: #ffffff;
}
.cid-u0a7GTSXBx .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-u0a7GTSXBx .item-title,
.cid-u0a7GTSXBx .soc-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-u1R2HVwrd7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u1R2HVwrd7 .item-img {
  position: relative;
}
.cid-u1R2HVwrd7 .item-img img {
  transition: all 0.2s;
}
.cid-u1R2HVwrd7 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-u1R2HVwrd7 .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-u1R2HVwrd7 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-u1R2HVwrd7 .item:hover img {
  transform: scale(1.05);
}
.cid-u1R2HVwrd7 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-u1R2HVwrd7 .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-u1R2HVwrd7 .item-wrapper {
  position: relative;
  background: #000000;
  border: 3px solid #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u1R2HVwrd7 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-u1R2HVwrd7 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-u1R2HVwrd7 .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #000000;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-u1R2HVwrd7 .link-icon-wrapper .icon-wrap {
  background: #141a29;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-u1R2HVwrd7 .link-icon-wrapper .icon-wrap span {
  color: #fafafa;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-u1R2HVwrd7 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-u1R2HVwrd7 .link-icon-wrapper .svg1 path {
  fill: #000000;
}
.cid-u1R2HVwrd7 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-u1R2HVwrd7 .link-icon-wrapper .svg2 path {
  fill: #000000;
}
.cid-u1R2HVwrd7 .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-u1R2HVwrd7 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-u1R2HVwrd7 img,
.cid-u1R2HVwrd7 .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u1R2HVwrd7 .item:focus,
.cid-u1R2HVwrd7 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-u1R2HVwrd7 .item {
    margin-bottom: 1rem;
  }
}
.cid-u1R2HVwrd7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u1R2HVwrd7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-u1R2HVwrd7 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-u1R2HVwrd7 .mbr-section-subtitle,
.cid-u1R2HVwrd7 .subtitle-wrap,
.cid-u1R2HVwrd7 .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-u1R2HVwrd7 .mbr-text,
.cid-u1R2HVwrd7 .item .mbr-section-btn {
  color: #ffffff;
}
.cid-tRVNoWxBm7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tRVNoWxBm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRVNoWxBm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tRVNoWxBm7 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tRVNoWxBm7 .container {
    padding: 0 12px;
  }
}
.cid-tRVNoWxBm7 .title-wrapper a {
  display: block;
}
.cid-tRVNoWxBm7 .title-wrapper a:hover .mbr-section-title span,
.cid-tRVNoWxBm7 .title-wrapper a:focus .mbr-section-title span {
  color: #ff6928;
}
.cid-tRVNoWxBm7 .title-wrapper a .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tRVNoWxBm7 .title-wrapper a .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tRVNoWxBm7 .title-wrapper a .mbr-section-title span {
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
.cid-tRVNoWxBm7 .title-wrapper a .mbr-section-title .mbr-iconfont {
  margin-left: 10px;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.cid-tRVNoWxBm7 .card .card_1 {
  border: 3px solid #6592e6;
  box-shadow: 4px 4px #6592e6;
}
.cid-tRVNoWxBm7 .card .card_2 {
  border: 3px solid #998caa;
  box-shadow: 4px 4px #998caa;
  margin: -3% auto 0;
}
.cid-tRVNoWxBm7 .card .card_3 {
  border: 3px solid #47b5ed;
  box-shadow: 4px 4px #47b5ed;
  margin: -3% 0 0 auto;
}
.cid-tRVNoWxBm7 .card .card-wrapper {
  width: 490px;
  padding: 40px;
  background-color: #000000;
  display: flex;
  align-items: center;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-tRVNoWxBm7 .card .card-wrapper {
    display: block;
    width: 100%;
    margin: 0 0 24px 0;
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-tRVNoWxBm7 .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tRVNoWxBm7 .mbr-section-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-tRVNoWxBm7 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-tRXiYM0wyq {
  background-image: url("../../../assets/images/background18-h-lf2qmnjn.jpg");
}
.cid-tRXiYM0wyq .item-wrapper {
  width: 100%;
}
.cid-tRXiYM0wyq .left-side {
  text-align: left;
  padding-right: 45px;
  margin: auto;
}
.cid-tRXiYM0wyq .mbr-section-btn {
  margin: 0 0px;
}
.cid-tRXiYM0wyq .row {
  align-items: center;
}
.cid-tRXiYM0wyq .mbr-section-title {
  margin: 0 0;
  color: #bbbbbb;
  font-weight: 700;
}
.cid-tRXiYM0wyq .mbr-text {
  padding: 0;
  margin-top: 26px;
  color: #4c4c4c;
  font-weight: 500;
  width: 100%;
}
.cid-tRXiYM0wyq .mbr-section-subtitle {
  color: #a18d39;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-tRXiYM0wyq .button-align {
  margin-top: 36px;
  width: 100%;
}
.cid-tRXiYM0wyq .right-side {
  padding: 0;
}
.cid-tRXiYM0wyq .align {
  padding-right: 50px;
}
@media (max-width: 990px) {
  .cid-tRXiYM0wyq .left-side {
    padding: 0;
  }
}
.cid-tRXiYM0wyq .mbr-text,
.cid-tRXiYM0wyq .button-align {
  color: #b2b2b2;
}
.cid-tUKXZfAV25 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tUKXZfAV25 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUKXZfAV25 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUKXZfAV25 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tUKXZfAV25 .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tUKXZfAV25 .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-tUKXZfAV25 .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-tUKXZfAV25 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tUKXZfAV25 .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-tUKXZfAV25 .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tUKXZfAV25 .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-tUKXZfAV25 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tUKXZfAV25 .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-tUKXZfAV25 .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tUKXZfAV25 .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-tUKXZfAV25 .mbr-section-title {
  color: #ffffff;
}
.cid-tUKXZfAV25 .mbr-price {
  color: #ffffff;
}
.cid-tUKXZfAV25 .mbr-desc {
  color: #f2f2f2;
}
.cid-tUKXZfAV25 .mbr-text {
  color: #fafafa;
}
.cid-tUKXZfAV25 .mbr-section-btn {
  text-align: right;
}
.cid-u0aaDRc0vo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u0aaDRc0vo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0aaDRc0vo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0aaDRc0vo .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0aaDRc0vo .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u0aaDRc0vo .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-u0aaDRc0vo .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-u0aaDRc0vo .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u0aaDRc0vo .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-u0aaDRc0vo .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-u0aaDRc0vo .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-u0aaDRc0vo .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0aaDRc0vo .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-u0aaDRc0vo .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-u0aaDRc0vo .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-u0aaDRc0vo .mbr-section-title {
  color: #ffffff;
}
.cid-u0aaDRc0vo .mbr-price {
  color: #ffffff;
}
.cid-u0aaDRc0vo .mbr-desc {
  color: #f2f2f2;
}
.cid-u0aaDRc0vo .mbr-text {
  color: #fafafa;
}
.cid-u0aaDRc0vo .mbr-section-btn {
  text-align: right;
}
.cid-u0abtoXm1N {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u0abtoXm1N .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0abtoXm1N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0abtoXm1N .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0abtoXm1N .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u0abtoXm1N .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-u0abtoXm1N .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-u0abtoXm1N .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u0abtoXm1N .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-u0abtoXm1N .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-u0abtoXm1N .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-u0abtoXm1N .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0abtoXm1N .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-u0abtoXm1N .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-u0abtoXm1N .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-u0abtoXm1N .mbr-section-title {
  color: #ffffff;
}
.cid-u0abtoXm1N .mbr-price {
  color: #ffffff;
}
.cid-u0abtoXm1N .mbr-desc {
  color: #f2f2f2;
}
.cid-u0abtoXm1N .mbr-text {
  color: #fafafa;
}
.cid-u0abtoXm1N .mbr-section-btn {
  text-align: right;
}
.cid-u0Cf72qZTs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u0Cf72qZTs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Cf72qZTs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Cf72qZTs .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0Cf72qZTs .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u0Cf72qZTs .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-u0Cf72qZTs .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-u0Cf72qZTs .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u0Cf72qZTs .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-u0Cf72qZTs .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-u0Cf72qZTs .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-u0Cf72qZTs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0Cf72qZTs .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-u0Cf72qZTs .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-u0Cf72qZTs .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-u0Cf72qZTs .mbr-section-title {
  color: #ffffff;
}
.cid-u0Cf72qZTs .mbr-price {
  color: #ffffff;
}
.cid-u0Cf72qZTs .mbr-desc {
  color: #f2f2f2;
}
.cid-u0Cf72qZTs .mbr-text {
  color: #fafafa;
}
.cid-u0Cf72qZTs .mbr-section-btn {
  text-align: right;
}
.cid-u0Cf72qZTs .mbr-desc,
.cid-u0Cf72qZTs .desc-wrapper {
  color: #f8fbfd;
}
.cid-u0scB1GJrA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u0scB1GJrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0scB1GJrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0scB1GJrA .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .container-fluid {
    padding: 0 20px;
  }
}
.cid-u0scB1GJrA .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u0scB1GJrA .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-u0scB1GJrA .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-u0scB1GJrA .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u0scB1GJrA .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-u0scB1GJrA .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-u0scB1GJrA .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-u0scB1GJrA .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0scB1GJrA .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-u0scB1GJrA .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-u0scB1GJrA .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-u0scB1GJrA .mbr-section-title {
  color: #ffffff;
}
.cid-u0scB1GJrA .mbr-price {
  color: #ffffff;
}
.cid-u0scB1GJrA .mbr-desc {
  color: #f2f2f2;
}
.cid-u0scB1GJrA .mbr-text {
  color: #fafafa;
}
.cid-u0scB1GJrA .mbr-section-btn {
  text-align: right;
}
.cid-u0scB1GJrA .mbr-desc,
.cid-u0scB1GJrA .desc-wrapper {
  color: #f8fbfd;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ucHWsG1oyg {
  background-image: url("../../../assets/images/background18-h-lf2qmnjn.jpg");
}
.cid-ucHWsG1oyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucHWsG1oyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucHWsG1oyg .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ucHWsG1oyg .container-fluid {
    padding: 0 25px;
  }
}
.cid-ucHWsG1oyg .container-fluid .row {
  padding: 0;
}
.cid-ucHWsG1oyg .title-wrapper .image-wrapper {
  margin-bottom: 36px;
}
.cid-ucHWsG1oyg .title-wrapper .image-wrapper img {
  width: 108px;
  height: 108px;
  display: inline;
}
.cid-ucHWsG1oyg .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucHWsG1oyg .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-ucHWsG1oyg .title-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-ucHWsG1oyg .mbr-section-title {
  color: #ffffff;
}
.cid-ucHWsG1oyg .mbr-text {
  color: #78a3b8;
  text-align: center;
}
.cid-ucHWsG1oyg .mbr-section-title,
.cid-ucHWsG1oyg .mbr-section-btn,
.cid-ucHWsG1oyg .image-wrapper {
  text-align: center;
}
.cid-u0CS0xVjGd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-u0CS0xVjGd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0CS0xVjGd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0CS0xVjGd .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u0CS0xVjGd .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u0CS0xVjGd .container {
    padding: 0 20px;
  }
}
.cid-u0CS0xVjGd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-u0CS0xVjGd .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    border-right: none;
  }
}
.cid-u0CS0xVjGd .embla__slide .card-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-u0CS0xVjGd .embla__slide .card-wrap {
    display: block;
  }
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-u0CS0xVjGd .embla__slide .card-wrap .content-wrap {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .content-wrap .card-subtitle {
  margin-bottom: 10px;
  letter-spacing: .16em;
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 16px;
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 30px;
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 24px;
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .item-wrapper {
  width: 60%;
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-u0CS0xVjGd .embla__slide .card-wrap .item-wrapper {
    width: 100%;
    padding: 0;
  }
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .item-wrapper .image-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-u0CS0xVjGd .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u0CS0xVjGd .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-u0CS0xVjGd .embla__button--next,
.cid-u0CS0xVjGd .embla__button--prev {
  display: flex;
}
.cid-u0CS0xVjGd .embla__button {
  bottom: -3rem;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #2f779a;
  border: 2px solid #47b5ed;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u0CS0xVjGd .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u0CS0xVjGd .embla__button:hover {
  background: transparent;
  color: #2f779a;
  border-color: #2f779a;
}
.cid-u0CS0xVjGd .embla__button.embla__button--prev {
  left: auto;
  right: 3.5rem;
  margin-left: 0;
}
.cid-u0CS0xVjGd .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-u0CS0xVjGd .embla {
  position: relative;
  width: 100%;
}
.cid-u0CS0xVjGd .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u0CS0xVjGd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u0CS0xVjGd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u0CS0xVjGd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u0CS0xVjGd .card-subtitle {
  color: #ededed;
}
.cid-u0CS0xVjGd .card-title {
  color: #ffffff;
}
.cid-u0CS0xVjGd .card-desc {
  color: #acefa3;
}
.cid-u0CS0xVjGd .card-text {
  color: #ffffff;
}
.cid-ud5r6RtG6r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background18-h-lf2qmnjn.jpg");
}
.cid-ud5r6RtG6r .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud5r6RtG6r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud5r6RtG6r .image-wrapper {
  margin-left: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-ud5r6RtG6r .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ud5r6RtG6r .btn {
    margin-right: 0;
  }
  .cid-ud5r6RtG6r .image-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.cid-ud5r6RtG6r a {
  font-weight: 900;
}
.cid-ud5r6RtG6r p {
  line-height: 1.1;
}
.cid-ud5r6RtG6r .text-primary {
  background-color: #0a435f;
}
.cid-ud5r6RtG6r .d-flex {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-ud5r6RtG6r .d-flex {
    flex-direction: column;
  }
}
.cid-ud5r6RtG6r .mbr-text {
  color: #ffffff;
}
.cid-ud5r6RtG6r .mbr-section-title {
  color: #ffffff;
}
.cid-ud5r6RtG6r .name {
  color: #ffffff;
}
.cid-ud5r6RtG6r .position {
  color: #ffffff;
}
.cid-ud5r6RtG6r .mbr-title {
  color: #ffffff;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-u0amUMgpHE {
  z-index: 1000;
  width: 100%;
}
.cid-u0amUMgpHE nav.navbar {
  position: fixed;
}
.cid-u0amUMgpHE .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-u0amUMgpHE .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u0amUMgpHE .dropdown-item:hover,
.cid-u0amUMgpHE .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-u0amUMgpHE .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-u0amUMgpHE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0amUMgpHE .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-u0amUMgpHE .container {
  display: flex;
  margin: auto;
}
.cid-u0amUMgpHE .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0amUMgpHE .dropdown-menu,
.cid-u0amUMgpHE .navbar.opened {
  background: #04141d !important;
}
.cid-u0amUMgpHE .nav-item:focus,
.cid-u0amUMgpHE .nav-link:focus {
  outline: none;
}
.cid-u0amUMgpHE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0amUMgpHE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0amUMgpHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0amUMgpHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0amUMgpHE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0amUMgpHE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0amUMgpHE .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-u0amUMgpHE .navbar.opened {
  transition: all 0.3s;
}
.cid-u0amUMgpHE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0amUMgpHE .navbar .navbar-logo img {
  width: auto;
}
.cid-u0amUMgpHE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0amUMgpHE .navbar.collapsed {
  justify-content: center;
}
.cid-u0amUMgpHE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0amUMgpHE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0amUMgpHE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-u0amUMgpHE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0amUMgpHE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0amUMgpHE .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-u0amUMgpHE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0amUMgpHE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0amUMgpHE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-u0amUMgpHE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0amUMgpHE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0amUMgpHE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0amUMgpHE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0amUMgpHE .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-u0amUMgpHE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0amUMgpHE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0amUMgpHE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0amUMgpHE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0amUMgpHE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0amUMgpHE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0amUMgpHE .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0amUMgpHE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0amUMgpHE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0amUMgpHE .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0amUMgpHE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0amUMgpHE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0amUMgpHE .dropdown-item.active,
.cid-u0amUMgpHE .dropdown-item:active {
  background-color: transparent;
}
.cid-u0amUMgpHE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0amUMgpHE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0amUMgpHE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0amUMgpHE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-u0amUMgpHE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0amUMgpHE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0amUMgpHE ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-u0amUMgpHE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0amUMgpHE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0amUMgpHE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-u0amUMgpHE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0amUMgpHE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0amUMgpHE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0amUMgpHE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0amUMgpHE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0amUMgpHE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0amUMgpHE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0amUMgpHE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0amUMgpHE .navbar-dropdown {
  position: fixed;
}
.cid-u0amUMgpHE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0amUMgpHE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0amUMgpHE .navbar {
    height: 60px;
  }
  .cid-u0amUMgpHE .navbar.opened {
    height: auto;
  }
  .cid-u0amUMgpHE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0amUMgpHE a {
  display: inline;
  transition: all .3s !important;
}
.cid-u0amUMgpHE img {
  display: inline;
  padding-right: 10px;
}
.cid-u0amUMgpHE .dropdown-toggle:after {
  display: none;
}
.cid-u0amUMgpHE .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-u0amUMgpHE .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-u0amUMgpHE .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u0amUMgpHE .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-u0amUMgpHE .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-u0amUMgpHE .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-u0amUMgpHE ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-u0amUMgpHE .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-u0amUMgpHE .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-u0amUMgpHE .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-u0amUMgpHE .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-u0amUMgpHE .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-u0amUMgpHE .container-fluid {
  padding-right: 0;
}
.cid-u0amUMgpHE .btn {
  border-radius: 1000px !important;
}
.cid-u0amUMgpHE .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-u0amUMgpHE .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-u0amUMgpHE .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-u0amUMgpHE .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-u0amUMgpHE .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-u0amUMgpHE .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-u0amUMgpHE .container,
  .cid-u0amUMgpHE .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u0amUMgpHE li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-u0amUMgpHE ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-u0amUMgpHE a.btn > span {
  margin-left: 0.5rem;
}
.cid-u0amUMgpHE .nav-item {
  position: relative;
}
.cid-u0amUMgpHE .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u0amUMgpHE .nav-item:hover {
  text-decoration: underline;
}
.cid-u0amUMgpHE li.nav-item {
  padding: 0px 23px !important;
}
.cid-u0amUMgpHE a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-u0amUMgpHE .navbar-toggler {
  margin-right: 35px;
}
.cid-u0amUMgpHE .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-u0amUMgpHE .icons-menu {
    min-width: initial !important;
  }
  .cid-u0amUMgpHE .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-u0amUMgpHE a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-u0amUN3ck5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/qortal-island-wallpaper-1280x720.jpg");
}
.cid-u0amUN3ck5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0amUN3ck5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0amUN3ck5 .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u0amUN3ck5 .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-u0amUN3ck5 .row {
    padding: 0 24px;
  }
}
.cid-u0amUN3ck5 .row {
  justify-content: center;
}
.cid-u0amUN3ck5 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u0amUN3ck5 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u0amUN3ck5 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-u0amUN3ck5 .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-u0amUN3ck5 .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.cid-u0amUN3ck5 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0amUN3ck5 .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.cid-u0amUN3ck5 .card .mbr-card-title {
  margin-bottom: 30px;
}
.cid-u0amUN3ck5 .card .mbr-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .cid-u0amUN3ck5 .card {
    padding: 32px;
  }
}
.cid-u0amUN3ck5 .card.first {
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  border-bottom-right-radius: 16px;
}
.cid-u0amUN3ck5 .card.last {
  border-left: 2px solid #111111;
  border-top: 2px solid #111111;
  border-top-left-radius: 16px;
}
.cid-u0amUN3ck5 .mbr-section-title {
  color: #22a5e5;
  text-align: center;
}
.cid-u0amUN3ck5 .mbr-text {
  color: #082d44;
  text-align: center;
}
.cid-u0amUN3ck5 .mbr-card-title {
  color: #111111;
}
.cid-u0amUN3ck5 .mbr-card-text {
  color: #111111;
}
.cid-u0amUN3ck5 .mbr-card-title,
.cid-u0amUN3ck5 .mbr-section-btn {
  color: #082d44;
}
.cid-u0amUNttGt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f4efe8;
}
.cid-u0amUNttGt .row {
  position: relative;
}
.cid-u0amUNttGt .row .blur-circle {
  position: absolute;
  top: 25%;
  left: 34%;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #ebb5ff 50%, #5eadef);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-u0amUNttGt .row .blur-circle {
    display: none;
  }
}
.cid-u0amUNttGt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0amUNttGt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0amUNttGt .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u0amUNttGt .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-u0amUNttGt .row {
    padding: 0 24px;
  }
}
.cid-u0amUNttGt .row {
  justify-content: center;
}
.cid-u0amUNttGt .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u0amUNttGt .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u0amUNttGt .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-u0amUNttGt .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-u0amUNttGt .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.cid-u0amUNttGt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0amUNttGt .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.cid-u0amUNttGt .card .mbr-card-title {
  margin-bottom: 30px;
}
.cid-u0amUNttGt .card .mbr-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .cid-u0amUNttGt .card {
    padding: 32px;
  }
}
.cid-u0amUNttGt .card.first {
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  border-bottom-right-radius: 16px;
}
.cid-u0amUNttGt .card.last {
  border-left: 2px solid #111111;
  border-top: 2px solid #111111;
  border-top-left-radius: 16px;
}
.cid-u0amUNttGt .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-u0amUNttGt .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-u0amUNttGt .mbr-card-title {
  color: #111111;
}
.cid-u0amUNttGt .mbr-card-text {
  color: #111111;
}
.cid-u0amUNttGt .mbr-card-title,
.cid-u0amUNttGt .mbr-section-btn {
  color: #082d44;
}
.cid-u0amUNTRA6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/qortal-island-wallpaper-1280x720.jpg");
}
.cid-u0amUNTRA6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0amUNTRA6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0amUNTRA6 .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u0amUNTRA6 .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-u0amUNTRA6 .row {
    padding: 0 24px;
  }
}
.cid-u0amUNTRA6 .row {
  justify-content: center;
}
.cid-u0amUNTRA6 .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u0amUNTRA6 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u0amUNTRA6 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-u0amUNTRA6 .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-u0amUNTRA6 .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ffb639;
  z-index: -1;
}
.cid-u0amUNTRA6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0amUNTRA6 .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.cid-u0amUNTRA6 .card .mbr-card-title {
  margin-bottom: 30px;
}
.cid-u0amUNTRA6 .card .mbr-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .cid-u0amUNTRA6 .card {
    padding: 32px;
  }
}
.cid-u0amUNTRA6 .card.first {
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  border-bottom-right-radius: 16px;
}
.cid-u0amUNTRA6 .card.last {
  border-left: 2px solid #111111;
  border-top: 2px solid #111111;
  border-top-left-radius: 16px;
}
.cid-u0amUNTRA6 .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-u0amUNTRA6 .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-u0amUNTRA6 .mbr-card-title {
  color: #111111;
}
.cid-u0amUNTRA6 .mbr-card-text {
  color: #111111;
}
.cid-u0amUNTRA6 .mbr-card-title,
.cid-u0amUNTRA6 .mbr-section-btn {
  color: #082d44;
}
.cid-u0amUPaGnO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u0amUPaGnO .mbr-text {
  color: #e3ebf3;
}
.cid-u0amUPaGnO .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ucZH8JxnP6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-ucZH8JxnP6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucZH8JxnP6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/wallpaper-qortal-darkest-2000x1333.jpg");
}
.cid-ucZH8JxnP6 .container {
  max-width: 1600px;
}
.cid-ucZH8JxnP6 .row {
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.95%;
  min-width: 80%;
}
.cid-ucZH8JxnP6 .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucZH8JxnP6 .info-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .info-container {
    width: 100%;
  }
}
.cid-ucZH8JxnP6 .title-container {
  margin-bottom: 50px;
}
.cid-ucZH8JxnP6 .mbr-section-title {
  color: #FFDD65;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucZH8JxnP6 .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .mbr-section-subtitle {
    text-align: center !important;
    margin-top: 1rem;
  }
}
.cid-ucZH8JxnP6 .btn-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin-top: auto;
}
.cid-ucZH8JxnP6 .text-container {
  max-width: 400px;
  margin: 12px auto 0 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .text-container {
    margin: 24px auto;
  }
}
.cid-ucZH8JxnP6 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .mbr-text {
    text-align: center !important;
  }
}
.cid-ucZH8JxnP6 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-ucZH8JxnP6 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-ucZH8JxnP6 .icon-text {
  color: #AE5EFF;
}
.cid-ucZH8JxnP6 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0px;
}
.cid-ucZH8JxnP6 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-ucZH8JxnP6 .form-container {
  max-width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucZH8JxnP6 form {
  width: 100%;
}
.cid-ucZH8JxnP6 form .dragArea.row {
  justify-content: center;
  width: auto !important;
}
.cid-ucZH8JxnP6 form p {
  color: #ffffff;
}
.cid-ucZH8JxnP6 form .mbr-section-btn {
  width: max-content;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-ucZH8JxnP6 form .mbr-section-btn .btn {
  padding: 10px 0px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 6px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-ucZH8JxnP6 form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-ucZH8JxnP6 form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.1rem;
}
.cid-ucZH8JxnP6 form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-ucZH8JxnP6 form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-ucZH8JxnP6 form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 form .group-border {
    flex-wrap: wrap;
  }
}
.cid-ucZH8JxnP6 form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 5px 5px;
  font-size: 18px;
  line-height: 20px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 form .form-control {
    min-height: 64px;
    padding: 6px 6px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-ucZH8JxnP6 form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form .form-control:hover {
  outline: none !important;
}
.cid-ucZH8JxnP6 form select {
  color: #939292 !important;
}
.cid-ucZH8JxnP6 form textarea {
  height: 200px;
}
.cid-ucZH8JxnP6 form input:active,
.cid-ucZH8JxnP6 form textarea:active,
.cid-ucZH8JxnP6 form input:focus,
.cid-ucZH8JxnP6 form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-ucZH8JxnP6 form input:active::-webkit-input-placeholder,
.cid-ucZH8JxnP6 form textarea:active::-webkit-input-placeholder,
.cid-ucZH8JxnP6 form input:focus::-webkit-input-placeholder,
.cid-ucZH8JxnP6 form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form input:active::-moz-placeholder,
.cid-ucZH8JxnP6 form textarea:active::-moz-placeholder,
.cid-ucZH8JxnP6 form input:focus::-moz-placeholder,
.cid-ucZH8JxnP6 form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form input:active:-moz-placeholder,
.cid-ucZH8JxnP6 form textarea:active:-moz-placeholder,
.cid-ucZH8JxnP6 form input:focus:-moz-placeholder,
.cid-ucZH8JxnP6 form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form input:active:-ms-input-placeholder,
.cid-ucZH8JxnP6 form textarea:active:-ms-input-placeholder,
.cid-ucZH8JxnP6 form input:focus:-ms-input-placeholder,
.cid-ucZH8JxnP6 form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-ucZH8JxnP6 form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-ucZH8JxnP6 form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ucZH8JxnP6 form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-ucZH8JxnP6 form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-ucZH8JxnP6 form .form-check-input:focus,
.cid-ucZH8JxnP6 form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-ucZH8JxnP6 form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-ucZH8JxnP6 .img-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucZH8JxnP6 .img-container {
    width: 100%;
    margin-top: 80px;
  }
}
.cid-ucZH8JxnP6 .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-ucZH8JxnP6 .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-ucZH8JxnP6 .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
  background-color: #000000;
}
.cid-ucZH8JxnP6 .image-wrapper .pulled-comment-box {
  width: 100%;
  height: 700px;
  overflow-y: auto;
  padding-left: 25px;
  padding-right: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  margin-top: 20px;
}
.cid-ucZH8JxnP6 .image-wrapper .comment-text-control {
  padding-left: 0px;
  padding-right: 0px;
  border: 2px solid-white;
  z-index: 150;
}
.cid-ucZH8JxnP6 .image-wrapper .qdn-comment {
  color: white;
  font-family: monospace;
  font-size: 20px;
  z-index: 200;
}
.cid-ucZH8JxnP6 .image-wrapper .blockquote {
  border: 1px solid-white;
}
.cid-ucZH8JxnP6 .image-wrapper .qdn-commenter {
  color: #82aeef;
  font-size: 16px;
  z-index: 200;
}
.cid-ucZH8JxnP6 .image-wrapper .upfront {
  z-index: 15;
}
.cid-ucZH8JxnP6 .image-wrapper .date {
  font-size: 12px;
  color: orange;
}
.cid-ucZH8JxnP6 .image-wrapper .white {
  color: white;
}
.cid-ucZH8JxnP6 .image-wrapper .time {
  font-size: 5px;
  color: cyan;
}
.cid-ucZH8JxnP6 .image-wrapper img {
  width: 95%;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.cid-ucZH8JxnP6 P {
  color: #fff0b0;
}
.cid-ud39kRz9iS {
  background-color: #000000;
}
.cid-ud39kRz9iS .wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.cid-ud39kRz9iS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud39kRz9iS .wrapper {
  background: #000000;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-ud39kRz9iS .mbr-section-title {
  text-align: center;
}
.cid-ud39kRz9iS .mbr-text,
.cid-ud39kRz9iS .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-ud39kRz9iS .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-ud39kRz9iS .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-ud39kRz9iS .mbr-section-title,
.cid-ud39kRz9iS .dot {
  color: #c6c6d3;
  text-align: center;
}
.cid-ud39kRz9iS .mbr-section-subtitle {
  text-align: center;
  color: #9fdbf8;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
.cid-tDPdhH8FPe {
  z-index: 1000;
  width: 100%;
}
.cid-tDPdhH8FPe nav.navbar {
  position: fixed;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPdhH8FPe .dropdown-item:hover,
.cid-tDPdhH8FPe .dropdown-item:focus {
  color: #2f779a !important;
}
.cid-tDPdhH8FPe .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPdhH8FPe .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPdhH8FPe .container {
  display: flex;
  margin: auto;
}
.cid-tDPdhH8FPe .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown-menu,
.cid-tDPdhH8FPe .navbar.opened {
  background: #04141d !important;
}
.cid-tDPdhH8FPe .nav-item:focus,
.cid-tDPdhH8FPe .nav-link:focus {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPdhH8FPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPdhH8FPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPdhH8FPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPdhH8FPe .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  background: rgba(4, 20, 29, 0);
}
.cid-tDPdhH8FPe .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPdhH8FPe .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPdhH8FPe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar.collapsed {
  justify-content: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPdhH8FPe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPdhH8FPe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-tDPdhH8FPe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPdhH8FPe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPdhH8FPe .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-tDPdhH8FPe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPdhH8FPe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPdhH8FPe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPdhH8FPe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPdhH8FPe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPdhH8FPe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPdhH8FPe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPdhH8FPe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPdhH8FPe .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPdhH8FPe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPdhH8FPe .dropdown-item.active,
.cid-tDPdhH8FPe .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPdhH8FPe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPdhH8FPe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #04141d;
}
.cid-tDPdhH8FPe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPdhH8FPe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPdhH8FPe ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPdhH8FPe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPdhH8FPe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082d44;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPdhH8FPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPdhH8FPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPdhH8FPe .navbar-dropdown {
  position: fixed;
}
.cid-tDPdhH8FPe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPdhH8FPe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  text-align: center;
  min-width: 400px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPdhH8FPe .navbar {
    height: 60px;
  }
  .cid-tDPdhH8FPe .navbar.opened {
    height: auto;
  }
  .cid-tDPdhH8FPe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPdhH8FPe a {
  display: inline;
  transition: all .3s !important;
}
.cid-tDPdhH8FPe img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPdhH8FPe .dropdown-toggle:after {
  display: none;
}
.cid-tDPdhH8FPe .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}
.cid-tDPdhH8FPe .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPdhH8FPe .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPdhH8FPe .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPdhH8FPe .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPdhH8FPe .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPdhH8FPe ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPdhH8FPe .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPdhH8FPe .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPdhH8FPe .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPdhH8FPe .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 20px 25px !important;
  display: inline-block;
  transform-style: preserve-3d !important;
  margin: 0;
}
.cid-tDPdhH8FPe .container-fluid {
  padding-right: 0;
}
.cid-tDPdhH8FPe .btn {
  border-radius: 1000px !important;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPdhH8FPe .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPdhH8FPe .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-tDPdhH8FPe .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
@media (max-width: 945px) {
  .cid-tDPdhH8FPe .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPdhH8FPe .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPdhH8FPe .container,
  .cid-tDPdhH8FPe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPdhH8FPe li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPdhH8FPe ul.navbar-nav {
    padding-left: 0;
  }
}
.cid-tDPdhH8FPe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPdhH8FPe .nav-item {
  position: relative;
}
.cid-tDPdhH8FPe .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPdhH8FPe .nav-item:hover {
  text-decoration: underline;
}
.cid-tDPdhH8FPe li.nav-item {
  padding: 0px 23px !important;
}
.cid-tDPdhH8FPe a.btn:hover {
  background-color: #92c9b5 !important;
  border-color: #92c9b5 !important;
  color: #000000 !important;
  transform: none !important;
}
.cid-tDPdhH8FPe .navbar-toggler {
  margin-right: 35px;
}
.cid-tDPdhH8FPe .collapsed .mbr-section-btn {
  padding-bottom: 15px !important;
}
@media (max-width: 430px) {
  .cid-tDPdhH8FPe .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPdhH8FPe .navbar-toggler {
    margin-right: 12px;
  }
}
.cid-tDPdhH8FPe a.btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-ud54xHhusF {
  align-items: flex-end;
}
.cid-ud54xHhusF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud54xHhusF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background18-h-lf2qmnjn.jpg");
}
@media (max-width: 992px) {
  .cid-ud54xHhusF .container {
    padding: 0 30px;
  }
}
.cid-ud54xHhusF .card {
  justify-content: center;
}
.cid-ud54xHhusF .content-wrapper {
  padding: 0 120px 120px;
}
@media (max-width: 1440px) {
  .cid-ud54xHhusF .content-wrapper {
    padding: 0 60px 60px;
  }
}
@media (max-width: 992px) {
  .cid-ud54xHhusF .content-wrapper {
    padding: 0;
  }
}
.cid-ud54xHhusF .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ud54xHhusF .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ud54xHhusF .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ud54xHhusF .mbr-section-title {
  color: #ffffff;
}
.cid-ud54xHhusF .mbr-text {
  color: #ffffff;
}
.cid-udg2HjyT8k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-udg2HjyT8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-udg2HjyT8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-udg2HjyT8k .container {
    padding: 0 22px;
  }
}
.cid-udg2HjyT8k .row {
  justify-content: center;
}
.cid-udg2HjyT8k .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udg2HjyT8k .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-udg2HjyT8k .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udg2HjyT8k .item {
    margin-bottom: 20px;
  }
}
.cid-udg2HjyT8k .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 10px;
}
.cid-udg2HjyT8k .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 60px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udg2HjyT8k .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-udg2HjyT8k .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-udg2HjyT8k .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-udg2HjyT8k .mbr-section-title {
  color: #ffffff;
}
.cid-udg2HjyT8k .card-title {
  color: #ffffff;
}
.cid-udg2HjyT8k .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-udg2HjyT8k .mbr-section-title,
.cid-udg2HjyT8k .mbr-section-btn {
  text-align: center;
}
.cid-udg2HjyT8k .card-title,
.cid-udg2HjyT8k .icon-wrapper {
  text-align: center;
}
.cid-ud5esFtQQV {
  background-image: url("../../../assets/images/background18-h-lf2qmnjn.jpg");
}
.cid-ud5esFtQQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud5esFtQQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud5esFtQQV .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-ud5esFtQQV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ud5esFtQQV .container {
    padding: 0 26px;
  }
}
.cid-ud5esFtQQV .row {
  justify-content: center;
}
.cid-ud5esFtQQV .title-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ud5esFtQQV .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-ud5esFtQQV .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-ud5esFtQQV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ud5esFtQQV .nav.nav-tabs {
  border-bottom: 0;
}
.cid-ud5esFtQQV .nav.nav-tabs .nav-item {
  border: 1px solid #ffffff;
  padding: 3px;
}
@media (max-width: 768px) {
  .cid-ud5esFtQQV .nav.nav-tabs .nav-item {
    width: 100%;
  }
}
.cid-ud5esFtQQV .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  padding: 10px 40px;
  border: none;
  color: #ffffff;
  border-radius: 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-ud5esFtQQV .nav.nav-tabs .nav-item .nav-link {
    padding: 10px 40px;
    justify-content: center;
    width: 100%;
  }
}
.cid-ud5esFtQQV .nav.nav-tabs .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ud5esFtQQV .nav.nav-tabs .nav-item .nav-link.active {
  border: none;
}
.cid-ud5esFtQQV .nav.nav-tabs .nav-item .nav-link.active::after {
  width: 100%;
}
.cid-ud5esFtQQV .tab-content {
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-ud5esFtQQV .tab-content .tab-pane .text-wrapper {
  padding: 40px;
  background-color: #000000;
}
.cid-ud5esFtQQV .tab-content .tab-pane .text-wrapper .mbr-text {
  margin: 32px 0;
}
.cid-ud5esFtQQV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud5esFtQQV .mbr-section-title {
  color: #ffffff;
}
.cid-ud5esFtQQV .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ud59anM5GS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ud59anM5GS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud59anM5GS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ud59anM5GS .container {
    padding: 0 30px;
  }
}
.cid-ud59anM5GS .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ud59anM5GS .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ud59anM5GS .text-wrapper .mbr-text {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ud59anM5GS .text-wrapper .mbr-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-ud59anM5GS .desc-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-ud59anM5GS .panel-group .card {
  border: none;
}
.cid-ud59anM5GS .panel-group .card:first-child .card-header .panel-title {
  border-top: 4px solid #fff0b0;
}
.cid-ud59anM5GS .panel-group .card .card-header {
  border: none;
  padding: 0;
  background-color: transparent;
}
.cid-ud59anM5GS .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-bottom: 4px solid #fff0b0;
}
.cid-ud59anM5GS .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-ud59anM5GS .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ud59anM5GS .panel-group .card .card-header .panel-title .mbr-iconfont {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: #f0f0f0;
  color: #000000;
  transition: all 0.5s ease-in-out;
  margin-left: 10px;
}
.cid-ud59anM5GS .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0;
}
.cid-ud59anM5GS .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ud59anM5GS .mbr-section-title {
  color: #fafafa;
}
.cid-ud59anM5GS .mbr-text {
  color: #ffffff;
}
.cid-ud59anM5GS .mbr-desc {
  color: #ffffff;
}
.cid-ud59anM5GS .panel-title-edit {
  color: #ffffff;
}
.cid-ud59anM5GS .panel-text {
  color: #ffffff;
}
.cid-tRVwPh8W0q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tRVwPh8W0q .mbr-text {
  color: #e3ebf3;
}
.cid-tRVwPh8W0q .media-container-row .mbr-text {
  text-align: center;
}
