body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00303c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00303c !important;
  border-color: #00303c !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3a3a8b !important;
  border-color: #3a3a8b !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: #20204e !important;
  border-color: #20204e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #20204e !important;
  border-color: #20204e !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00303c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #00303c !important;
  border-color: #00303c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3a3a8b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #20204e !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: #3a3a8b !important;
  border-color: #3a3a8b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00303c !important;
}
.text-secondary {
  color: #3a3a8b !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1c1c43 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #00303c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00303c;
  border-color: #00303c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00303c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #22d3ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #00303c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #00303c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00303c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00303c;
}
.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: #00303c;
  border-bottom-color: #00303c;
}
.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: #00303c !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: #3a3a8b !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='%2300303c' %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-teAfLkYO7A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-teAfLkYO7A nav.navbar {
  position: fixed;
}
.cid-teAfLkYO7A .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-teAfLkYO7A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-teAfLkYO7A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-teAfLkYO7A .dropdown-item:hover,
.cid-teAfLkYO7A .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-teAfLkYO7A .dropdown-item:hover span {
  color: white;
}
.cid-teAfLkYO7A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-teAfLkYO7A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-teAfLkYO7A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-teAfLkYO7A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-teAfLkYO7A .nav-link {
  position: relative;
}
.cid-teAfLkYO7A .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-teAfLkYO7A .container {
    flex-wrap: nowrap;
  }
}
.cid-teAfLkYO7A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-teAfLkYO7A .dropdown-menu,
.cid-teAfLkYO7A .navbar.opened {
  background: #ffffff !important;
}
.cid-teAfLkYO7A .nav-item:focus,
.cid-teAfLkYO7A .nav-link:focus {
  outline: none;
}
.cid-teAfLkYO7A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-teAfLkYO7A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teAfLkYO7A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-teAfLkYO7A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-teAfLkYO7A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-teAfLkYO7A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teAfLkYO7A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-teAfLkYO7A .navbar.opened {
  transition: all 0.3s;
}
.cid-teAfLkYO7A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-teAfLkYO7A .navbar .navbar-logo img {
  width: auto;
}
.cid-teAfLkYO7A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-teAfLkYO7A .navbar.collapsed {
  justify-content: center;
}
.cid-teAfLkYO7A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-teAfLkYO7A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-teAfLkYO7A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-teAfLkYO7A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teAfLkYO7A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teAfLkYO7A .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-teAfLkYO7A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-teAfLkYO7A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-teAfLkYO7A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-teAfLkYO7A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-teAfLkYO7A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-teAfLkYO7A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-teAfLkYO7A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-teAfLkYO7A .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-teAfLkYO7A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-teAfLkYO7A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-teAfLkYO7A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-teAfLkYO7A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-teAfLkYO7A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-teAfLkYO7A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-teAfLkYO7A .navbar.navbar-short {
  min-height: 60px;
}
.cid-teAfLkYO7A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-teAfLkYO7A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-teAfLkYO7A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-teAfLkYO7A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teAfLkYO7A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teAfLkYO7A .dropdown-item.active,
.cid-teAfLkYO7A .dropdown-item:active {
  background-color: transparent;
}
.cid-teAfLkYO7A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teAfLkYO7A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-teAfLkYO7A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-teAfLkYO7A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-teAfLkYO7A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teAfLkYO7A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teAfLkYO7A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-teAfLkYO7A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-teAfLkYO7A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-teAfLkYO7A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-teAfLkYO7A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-teAfLkYO7A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-teAfLkYO7A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-teAfLkYO7A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-teAfLkYO7A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-teAfLkYO7A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-teAfLkYO7A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-teAfLkYO7A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-teAfLkYO7A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-teAfLkYO7A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-teAfLkYO7A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-teAfLkYO7A .navbar {
    height: 70px;
  }
  .cid-teAfLkYO7A .navbar.opened {
    height: auto;
  }
  .cid-teAfLkYO7A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-teAfEpKLZk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-teAfEpKLZk .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-teAfEpKLZk .mbr-text {
  color: #00303c;
}
.cid-tbs2YUez3a {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tbs2YUez3a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbs2YUez3a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbs2YUez3a ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tbs2YUez3a li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tbs2YUez3a ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tbs2YUez3a H3 {
  text-align: center;
}
.cid-teAfM58NXX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-teAfM58NXX .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-teAfMpiN0k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-teAfMpiN0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-teAfMpiN0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teAfMpiN0k .mbr-section-title {
  color: #ffffff;
}
.cid-teAfMGT7Oq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-teAfMGT7Oq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-teAfMGT7Oq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-teAfMGT7Oq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-teAfMGT7Oq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-teAfMGT7Oq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-teAfMGT7Oq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-teAfMGT7Oq .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-teAfMGT7Oq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-teAfMGT7Oq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-teAfMGT7Oq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-teAfMGT7Oq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-teAfMGT7Oq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-teAfMGT7Oq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-teAfMGT7Oq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-teAfMGT7Oq .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIViPtM9u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIViPtM9u nav.navbar {
  position: fixed;
}
.cid-tCIViPtM9u .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-tCIViPtM9u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIViPtM9u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIViPtM9u .dropdown-item:hover,
.cid-tCIViPtM9u .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIViPtM9u .dropdown-item:hover span {
  color: white;
}
.cid-tCIViPtM9u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIViPtM9u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIViPtM9u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIViPtM9u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIViPtM9u .nav-link {
  position: relative;
}
.cid-tCIViPtM9u .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIViPtM9u .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIViPtM9u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIViPtM9u .dropdown-menu,
.cid-tCIViPtM9u .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIViPtM9u .nav-item:focus,
.cid-tCIViPtM9u .nav-link:focus {
  outline: none;
}
.cid-tCIViPtM9u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIViPtM9u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIViPtM9u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIViPtM9u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIViPtM9u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIViPtM9u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIViPtM9u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIViPtM9u .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIViPtM9u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIViPtM9u .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIViPtM9u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIViPtM9u .navbar.collapsed {
  justify-content: center;
}
.cid-tCIViPtM9u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIViPtM9u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIViPtM9u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIViPtM9u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIViPtM9u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIViPtM9u .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-tCIViPtM9u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIViPtM9u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIViPtM9u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIViPtM9u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIViPtM9u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIViPtM9u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIViPtM9u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIViPtM9u .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-tCIViPtM9u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIViPtM9u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIViPtM9u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIViPtM9u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIViPtM9u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIViPtM9u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIViPtM9u .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIViPtM9u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIViPtM9u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIViPtM9u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIViPtM9u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIViPtM9u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIViPtM9u .dropdown-item.active,
.cid-tCIViPtM9u .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIViPtM9u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIViPtM9u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIViPtM9u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIViPtM9u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIViPtM9u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIViPtM9u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIViPtM9u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIViPtM9u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIViPtM9u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIViPtM9u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIViPtM9u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIViPtM9u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIViPtM9u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIViPtM9u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIViPtM9u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIViPtM9u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIViPtM9u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIViPtM9u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIViPtM9u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIViPtM9u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIViPtM9u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIViPtM9u .navbar {
    height: 70px;
  }
  .cid-tCIViPtM9u .navbar.opened {
    height: auto;
  }
  .cid-tCIViPtM9u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIViPLoNu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIViPLoNu .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIViPLoNu .mbr-text {
  color: #00303c;
}
.cid-tCIViPUY2Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIViQ6z7D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIViQiM6e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIViQiM6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIViQiM6e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIViQiM6e ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCIViQiM6e li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCIViQiM6e ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCIViQxu1o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIViQIOzC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIViQIOzC .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIViQSwE9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIViQSwE9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIViQSwE9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIViQSwE9 .mbr-section-title {
  color: #ffffff;
}
.cid-tCIViR6POc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIViR6POc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIViR6POc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIViR6POc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIViR6POc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIViR6POc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIViR6POc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIViR6POc .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIViR6POc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIViR6POc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIViR6POc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIViR6POc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIViR6POc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIViR6POc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIViR6POc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIViR6POc .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIVNDv81Z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIVNDv81Z nav.navbar {
  position: fixed;
}
.cid-tCIVNDv81Z .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-tCIVNDv81Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIVNDv81Z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIVNDv81Z .dropdown-item:hover,
.cid-tCIVNDv81Z .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIVNDv81Z .dropdown-item:hover span {
  color: white;
}
.cid-tCIVNDv81Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIVNDv81Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIVNDv81Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIVNDv81Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIVNDv81Z .nav-link {
  position: relative;
}
.cid-tCIVNDv81Z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIVNDv81Z .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIVNDv81Z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIVNDv81Z .dropdown-menu,
.cid-tCIVNDv81Z .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIVNDv81Z .nav-item:focus,
.cid-tCIVNDv81Z .nav-link:focus {
  outline: none;
}
.cid-tCIVNDv81Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIVNDv81Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIVNDv81Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIVNDv81Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIVNDv81Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIVNDv81Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIVNDv81Z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIVNDv81Z .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIVNDv81Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIVNDv81Z .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIVNDv81Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIVNDv81Z .navbar.collapsed {
  justify-content: center;
}
.cid-tCIVNDv81Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIVNDv81Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIVNDv81Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIVNDv81Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIVNDv81Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIVNDv81Z .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-tCIVNDv81Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIVNDv81Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIVNDv81Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIVNDv81Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIVNDv81Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIVNDv81Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIVNDv81Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIVNDv81Z .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-tCIVNDv81Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIVNDv81Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIVNDv81Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIVNDv81Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIVNDv81Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIVNDv81Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIVNDv81Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIVNDv81Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIVNDv81Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIVNDv81Z .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIVNDv81Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIVNDv81Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIVNDv81Z .dropdown-item.active,
.cid-tCIVNDv81Z .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIVNDv81Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIVNDv81Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIVNDv81Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIVNDv81Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIVNDv81Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIVNDv81Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIVNDv81Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIVNDv81Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIVNDv81Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIVNDv81Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIVNDv81Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIVNDv81Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIVNDv81Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIVNDv81Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIVNDv81Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIVNDv81Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIVNDv81Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIVNDv81Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIVNDv81Z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIVNDv81Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIVNDv81Z .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIVNDv81Z .navbar {
    height: 70px;
  }
  .cid-tCIVNDv81Z .navbar.opened {
    height: auto;
  }
  .cid-tCIVNDv81Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIVNDMsDk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIVNDMsDk .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIVNDMsDk .mbr-text {
  color: #00303c;
}
.cid-tCIVNDURGQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIVNDURGQ .mbr-text {
  text-align: center;
}
.cid-tCIVNEjgpJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIVNEjgpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIVNEjgpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIVNEjgpJ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCIVNEjgpJ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCIVNEjgpJ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCIVNEJh0N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIVNEJh0N .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIVNETEF1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIVNETEF1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIVNETEF1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIVNETEF1 .mbr-section-title {
  color: #ffffff;
}
.cid-tCIVNF69E3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIVNF69E3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIVNF69E3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIVNF69E3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIVNF69E3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIVNF69E3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIVNF69E3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIVNF69E3 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIVNF69E3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIVNF69E3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIVNF69E3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIVNF69E3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIVNF69E3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIVNF69E3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIVNF69E3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIVNF69E3 .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIW4mgTFW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIW4mgTFW nav.navbar {
  position: fixed;
}
.cid-tCIW4mgTFW .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-tCIW4mgTFW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIW4mgTFW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIW4mgTFW .dropdown-item:hover,
.cid-tCIW4mgTFW .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIW4mgTFW .dropdown-item:hover span {
  color: white;
}
.cid-tCIW4mgTFW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIW4mgTFW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIW4mgTFW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIW4mgTFW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIW4mgTFW .nav-link {
  position: relative;
}
.cid-tCIW4mgTFW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIW4mgTFW .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIW4mgTFW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIW4mgTFW .dropdown-menu,
.cid-tCIW4mgTFW .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIW4mgTFW .nav-item:focus,
.cid-tCIW4mgTFW .nav-link:focus {
  outline: none;
}
.cid-tCIW4mgTFW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIW4mgTFW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIW4mgTFW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIW4mgTFW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIW4mgTFW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIW4mgTFW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIW4mgTFW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIW4mgTFW .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIW4mgTFW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIW4mgTFW .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIW4mgTFW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIW4mgTFW .navbar.collapsed {
  justify-content: center;
}
.cid-tCIW4mgTFW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIW4mgTFW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIW4mgTFW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIW4mgTFW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIW4mgTFW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIW4mgTFW .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-tCIW4mgTFW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIW4mgTFW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIW4mgTFW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIW4mgTFW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIW4mgTFW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIW4mgTFW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIW4mgTFW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIW4mgTFW .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-tCIW4mgTFW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIW4mgTFW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIW4mgTFW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIW4mgTFW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIW4mgTFW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIW4mgTFW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIW4mgTFW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIW4mgTFW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIW4mgTFW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIW4mgTFW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIW4mgTFW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIW4mgTFW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIW4mgTFW .dropdown-item.active,
.cid-tCIW4mgTFW .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIW4mgTFW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIW4mgTFW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIW4mgTFW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIW4mgTFW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIW4mgTFW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIW4mgTFW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIW4mgTFW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIW4mgTFW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIW4mgTFW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIW4mgTFW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIW4mgTFW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIW4mgTFW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIW4mgTFW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIW4mgTFW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIW4mgTFW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIW4mgTFW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIW4mgTFW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIW4mgTFW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIW4mgTFW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIW4mgTFW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIW4mgTFW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIW4mgTFW .navbar {
    height: 70px;
  }
  .cid-tCIW4mgTFW .navbar.opened {
    height: auto;
  }
  .cid-tCIW4mgTFW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIW4myxTY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIW4myxTY .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIW4myxTY .mbr-text {
  color: #00303c;
}
.cid-tCIW4mIT0Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIW4mIT0Q .mbr-text {
  text-align: center;
}
.cid-tCIW4n5REb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIW4n5REb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIW4n5REb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIW4n5REb ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCIW4n5REb li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCIW4n5REb ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCIW4ni2E0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIW4ni2E0 .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIW4ntcP9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIW4ntcP9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIW4ntcP9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIW4ntcP9 .mbr-section-title {
  color: #ffffff;
}
.cid-tCIW4nHGN8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIW4nHGN8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIW4nHGN8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIW4nHGN8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIW4nHGN8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIW4nHGN8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIW4nHGN8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIW4nHGN8 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIW4nHGN8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIW4nHGN8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIW4nHGN8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIW4nHGN8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIW4nHGN8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIW4nHGN8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIW4nHGN8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIW4nHGN8 .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIWvx3630 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIWvx3630 nav.navbar {
  position: fixed;
}
.cid-tCIWvx3630 .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-tCIWvx3630 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIWvx3630 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIWvx3630 .dropdown-item:hover,
.cid-tCIWvx3630 .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIWvx3630 .dropdown-item:hover span {
  color: white;
}
.cid-tCIWvx3630 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIWvx3630 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIWvx3630 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIWvx3630 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIWvx3630 .nav-link {
  position: relative;
}
.cid-tCIWvx3630 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIWvx3630 .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIWvx3630 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIWvx3630 .dropdown-menu,
.cid-tCIWvx3630 .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIWvx3630 .nav-item:focus,
.cid-tCIWvx3630 .nav-link:focus {
  outline: none;
}
.cid-tCIWvx3630 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIWvx3630 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIWvx3630 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIWvx3630 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIWvx3630 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIWvx3630 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIWvx3630 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIWvx3630 .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIWvx3630 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIWvx3630 .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIWvx3630 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIWvx3630 .navbar.collapsed {
  justify-content: center;
}
.cid-tCIWvx3630 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIWvx3630 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIWvx3630 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIWvx3630 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIWvx3630 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIWvx3630 .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-tCIWvx3630 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIWvx3630 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIWvx3630 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIWvx3630 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIWvx3630 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIWvx3630 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIWvx3630 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIWvx3630 .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-tCIWvx3630 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIWvx3630 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIWvx3630 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIWvx3630 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIWvx3630 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIWvx3630 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIWvx3630 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIWvx3630 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIWvx3630 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIWvx3630 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIWvx3630 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIWvx3630 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIWvx3630 .dropdown-item.active,
.cid-tCIWvx3630 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIWvx3630 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIWvx3630 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIWvx3630 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIWvx3630 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIWvx3630 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIWvx3630 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIWvx3630 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIWvx3630 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIWvx3630 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIWvx3630 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIWvx3630 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIWvx3630 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIWvx3630 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIWvx3630 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIWvx3630 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIWvx3630 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIWvx3630 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIWvx3630 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIWvx3630 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIWvx3630 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIWvx3630 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIWvx3630 .navbar {
    height: 70px;
  }
  .cid-tCIWvx3630 .navbar.opened {
    height: auto;
  }
  .cid-tCIWvx3630 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIWvxjAdL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIWvxjAdL .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIWvxjAdL .mbr-text {
  color: #00303c;
}
.cid-tCIWvxsC9a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIWvxEH0q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIWvxPfmS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIWvxPfmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIWvxPfmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIWvxPfmS ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCIWvxPfmS li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCIWvxPfmS ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCIWPs1SQv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIWVqzKT8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIWvy3P9g {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIWvy3P9g .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIWvyh3Cw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIWvyh3Cw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIWvyh3Cw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIWvyh3Cw .mbr-section-title {
  color: #ffffff;
}
.cid-tCIWvyuFrU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIWvyuFrU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIWvyuFrU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIWvyuFrU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIWvyuFrU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIWvyuFrU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIWvyuFrU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIWvyuFrU .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIWvyuFrU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIWvyuFrU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIWvyuFrU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIWvyuFrU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIWvyuFrU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIWvyuFrU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIWvyuFrU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIWvyuFrU .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIXegzg6D {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIXegzg6D nav.navbar {
  position: fixed;
}
.cid-tCIXegzg6D .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-tCIXegzg6D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIXegzg6D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIXegzg6D .dropdown-item:hover,
.cid-tCIXegzg6D .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIXegzg6D .dropdown-item:hover span {
  color: white;
}
.cid-tCIXegzg6D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIXegzg6D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIXegzg6D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIXegzg6D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIXegzg6D .nav-link {
  position: relative;
}
.cid-tCIXegzg6D .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIXegzg6D .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIXegzg6D .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIXegzg6D .dropdown-menu,
.cid-tCIXegzg6D .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIXegzg6D .nav-item:focus,
.cid-tCIXegzg6D .nav-link:focus {
  outline: none;
}
.cid-tCIXegzg6D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIXegzg6D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIXegzg6D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIXegzg6D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIXegzg6D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIXegzg6D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIXegzg6D .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIXegzg6D .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIXegzg6D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIXegzg6D .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIXegzg6D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIXegzg6D .navbar.collapsed {
  justify-content: center;
}
.cid-tCIXegzg6D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIXegzg6D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIXegzg6D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIXegzg6D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIXegzg6D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIXegzg6D .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-tCIXegzg6D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIXegzg6D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIXegzg6D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIXegzg6D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIXegzg6D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIXegzg6D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIXegzg6D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIXegzg6D .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-tCIXegzg6D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIXegzg6D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIXegzg6D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIXegzg6D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIXegzg6D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIXegzg6D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIXegzg6D .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIXegzg6D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIXegzg6D .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIXegzg6D .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIXegzg6D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIXegzg6D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIXegzg6D .dropdown-item.active,
.cid-tCIXegzg6D .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIXegzg6D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIXegzg6D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIXegzg6D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIXegzg6D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIXegzg6D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIXegzg6D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIXegzg6D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIXegzg6D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIXegzg6D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIXegzg6D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIXegzg6D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIXegzg6D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIXegzg6D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIXegzg6D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIXegzg6D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIXegzg6D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIXegzg6D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIXegzg6D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIXegzg6D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIXegzg6D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIXegzg6D .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIXegzg6D .navbar {
    height: 70px;
  }
  .cid-tCIXegzg6D .navbar.opened {
    height: auto;
  }
  .cid-tCIXegzg6D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIXegS9L2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIXegS9L2 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIXegS9L2 .mbr-text {
  color: #00303c;
}
.cid-tCIXeh3h9m {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCIXei1hRF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIXei1hRF .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIXeibsgy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIXeibsgy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIXeibsgy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIXeibsgy .mbr-section-title {
  color: #ffffff;
}
.cid-tCIXeioMop {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIXeioMop .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIXeioMop .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIXeioMop .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIXeioMop .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIXeioMop .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIXeioMop .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIXeioMop .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIXeioMop .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIXeioMop .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIXeioMop .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIXeioMop .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIXeioMop .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIXeioMop .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIXeioMop .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIXeioMop .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIXvI9ejQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIXvI9ejQ nav.navbar {
  position: fixed;
}
.cid-tCIXvI9ejQ .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-tCIXvI9ejQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIXvI9ejQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIXvI9ejQ .dropdown-item:hover,
.cid-tCIXvI9ejQ .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIXvI9ejQ .dropdown-item:hover span {
  color: white;
}
.cid-tCIXvI9ejQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIXvI9ejQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIXvI9ejQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIXvI9ejQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIXvI9ejQ .nav-link {
  position: relative;
}
.cid-tCIXvI9ejQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIXvI9ejQ .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIXvI9ejQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIXvI9ejQ .dropdown-menu,
.cid-tCIXvI9ejQ .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIXvI9ejQ .nav-item:focus,
.cid-tCIXvI9ejQ .nav-link:focus {
  outline: none;
}
.cid-tCIXvI9ejQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIXvI9ejQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIXvI9ejQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIXvI9ejQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIXvI9ejQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIXvI9ejQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIXvI9ejQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIXvI9ejQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIXvI9ejQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIXvI9ejQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIXvI9ejQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIXvI9ejQ .navbar.collapsed {
  justify-content: center;
}
.cid-tCIXvI9ejQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIXvI9ejQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIXvI9ejQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIXvI9ejQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIXvI9ejQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIXvI9ejQ .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-tCIXvI9ejQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIXvI9ejQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIXvI9ejQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIXvI9ejQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIXvI9ejQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIXvI9ejQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIXvI9ejQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIXvI9ejQ .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-tCIXvI9ejQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIXvI9ejQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIXvI9ejQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIXvI9ejQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIXvI9ejQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIXvI9ejQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIXvI9ejQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIXvI9ejQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIXvI9ejQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIXvI9ejQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIXvI9ejQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIXvI9ejQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIXvI9ejQ .dropdown-item.active,
.cid-tCIXvI9ejQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIXvI9ejQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIXvI9ejQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIXvI9ejQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIXvI9ejQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIXvI9ejQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIXvI9ejQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIXvI9ejQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIXvI9ejQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIXvI9ejQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIXvI9ejQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIXvI9ejQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIXvI9ejQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIXvI9ejQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIXvI9ejQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIXvI9ejQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIXvI9ejQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIXvI9ejQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIXvI9ejQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIXvI9ejQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIXvI9ejQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIXvI9ejQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIXvI9ejQ .navbar {
    height: 70px;
  }
  .cid-tCIXvI9ejQ .navbar.opened {
    height: auto;
  }
  .cid-tCIXvI9ejQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIXvIBjJs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIXvIBjJs .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIXvIBjJs .mbr-text {
  color: #00303c;
}
.cid-tD6Cryn7DY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD6Cryn7DY .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tD6Cryn7DY .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tD6Cryn7DY .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tD6Cryn7DY .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #3a3a8b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIXvIWudn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIXvIWudn .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIXvJc7BA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIXvJc7BA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIXvJc7BA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIXvJc7BA .mbr-section-title {
  color: #ffffff;
}
.cid-tCIXvJpTPM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIXvJpTPM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIXvJpTPM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIXvJpTPM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIXvJpTPM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIXvJpTPM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIXvJpTPM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIXvJpTPM .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIXvJpTPM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIXvJpTPM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIXvJpTPM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIXvJpTPM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIXvJpTPM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIXvJpTPM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIXvJpTPM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIXvJpTPM .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIYWlz3TF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIYWlz3TF nav.navbar {
  position: fixed;
}
.cid-tCIYWlz3TF .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-tCIYWlz3TF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIYWlz3TF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIYWlz3TF .dropdown-item:hover,
.cid-tCIYWlz3TF .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIYWlz3TF .dropdown-item:hover span {
  color: white;
}
.cid-tCIYWlz3TF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIYWlz3TF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIYWlz3TF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIYWlz3TF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIYWlz3TF .nav-link {
  position: relative;
}
.cid-tCIYWlz3TF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIYWlz3TF .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIYWlz3TF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIYWlz3TF .dropdown-menu,
.cid-tCIYWlz3TF .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIYWlz3TF .nav-item:focus,
.cid-tCIYWlz3TF .nav-link:focus {
  outline: none;
}
.cid-tCIYWlz3TF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIYWlz3TF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIYWlz3TF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIYWlz3TF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIYWlz3TF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIYWlz3TF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIYWlz3TF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIYWlz3TF .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIYWlz3TF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIYWlz3TF .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIYWlz3TF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIYWlz3TF .navbar.collapsed {
  justify-content: center;
}
.cid-tCIYWlz3TF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIYWlz3TF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIYWlz3TF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIYWlz3TF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIYWlz3TF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIYWlz3TF .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-tCIYWlz3TF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIYWlz3TF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIYWlz3TF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIYWlz3TF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIYWlz3TF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIYWlz3TF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIYWlz3TF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIYWlz3TF .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-tCIYWlz3TF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIYWlz3TF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIYWlz3TF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIYWlz3TF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIYWlz3TF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIYWlz3TF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIYWlz3TF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIYWlz3TF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIYWlz3TF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIYWlz3TF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIYWlz3TF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIYWlz3TF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIYWlz3TF .dropdown-item.active,
.cid-tCIYWlz3TF .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIYWlz3TF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIYWlz3TF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIYWlz3TF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIYWlz3TF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIYWlz3TF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIYWlz3TF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIYWlz3TF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIYWlz3TF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIYWlz3TF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIYWlz3TF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIYWlz3TF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIYWlz3TF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIYWlz3TF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIYWlz3TF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIYWlz3TF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIYWlz3TF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIYWlz3TF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIYWlz3TF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIYWlz3TF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIYWlz3TF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIYWlz3TF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIYWlz3TF .navbar {
    height: 70px;
  }
  .cid-tCIYWlz3TF .navbar.opened {
    height: auto;
  }
  .cid-tCIYWlz3TF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIYWlOE8r {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIYWlOE8r .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIYWlOE8r .mbr-text {
  color: #00303c;
}
.cid-tCIZbv85xb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCIZbv85xb .mbr-section-subtitle {
  text-align: center;
}
.cid-tCIZkCwWm5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCIZkCwWm5 .mbr-section-subtitle {
  text-align: center;
}
.cid-tCIZlFQZyQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIZlFQZyQ .mbr-section-subtitle {
  text-align: center;
}
.cid-tCIYWm83zL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIYWm83zL .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIYWmjANW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIYWmjANW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIYWmjANW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIYWmjANW .mbr-section-title {
  color: #ffffff;
}
.cid-tCIYWmx9tM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIYWmx9tM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIYWmx9tM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIYWmx9tM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIYWmx9tM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIYWmx9tM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIYWmx9tM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIYWmx9tM .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIYWmx9tM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIYWmx9tM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIYWmx9tM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIYWmx9tM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIYWmx9tM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIYWmx9tM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIYWmx9tM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIYWmx9tM .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCIZK0J0vW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCIZK0J0vW nav.navbar {
  position: fixed;
}
.cid-tCIZK0J0vW .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-tCIZK0J0vW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCIZK0J0vW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCIZK0J0vW .dropdown-item:hover,
.cid-tCIZK0J0vW .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCIZK0J0vW .dropdown-item:hover span {
  color: white;
}
.cid-tCIZK0J0vW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCIZK0J0vW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCIZK0J0vW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCIZK0J0vW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCIZK0J0vW .nav-link {
  position: relative;
}
.cid-tCIZK0J0vW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCIZK0J0vW .container {
    flex-wrap: nowrap;
  }
}
.cid-tCIZK0J0vW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCIZK0J0vW .dropdown-menu,
.cid-tCIZK0J0vW .navbar.opened {
  background: #ffffff !important;
}
.cid-tCIZK0J0vW .nav-item:focus,
.cid-tCIZK0J0vW .nav-link:focus {
  outline: none;
}
.cid-tCIZK0J0vW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCIZK0J0vW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCIZK0J0vW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCIZK0J0vW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCIZK0J0vW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCIZK0J0vW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCIZK0J0vW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCIZK0J0vW .navbar.opened {
  transition: all 0.3s;
}
.cid-tCIZK0J0vW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCIZK0J0vW .navbar .navbar-logo img {
  width: auto;
}
.cid-tCIZK0J0vW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCIZK0J0vW .navbar.collapsed {
  justify-content: center;
}
.cid-tCIZK0J0vW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCIZK0J0vW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCIZK0J0vW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCIZK0J0vW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCIZK0J0vW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCIZK0J0vW .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-tCIZK0J0vW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCIZK0J0vW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCIZK0J0vW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCIZK0J0vW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCIZK0J0vW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCIZK0J0vW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCIZK0J0vW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCIZK0J0vW .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-tCIZK0J0vW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCIZK0J0vW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCIZK0J0vW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCIZK0J0vW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCIZK0J0vW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCIZK0J0vW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCIZK0J0vW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCIZK0J0vW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCIZK0J0vW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCIZK0J0vW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCIZK0J0vW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCIZK0J0vW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCIZK0J0vW .dropdown-item.active,
.cid-tCIZK0J0vW .dropdown-item:active {
  background-color: transparent;
}
.cid-tCIZK0J0vW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCIZK0J0vW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCIZK0J0vW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCIZK0J0vW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCIZK0J0vW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCIZK0J0vW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCIZK0J0vW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCIZK0J0vW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCIZK0J0vW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCIZK0J0vW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCIZK0J0vW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCIZK0J0vW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIZK0J0vW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCIZK0J0vW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCIZK0J0vW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIZK0J0vW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCIZK0J0vW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCIZK0J0vW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCIZK0J0vW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCIZK0J0vW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCIZK0J0vW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCIZK0J0vW .navbar {
    height: 70px;
  }
  .cid-tCIZK0J0vW .navbar.opened {
    height: auto;
  }
  .cid-tCIZK0J0vW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCIZK1133t {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIZK1133t .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCIZK1133t .mbr-text {
  color: #00303c;
}
.cid-tCIZYYpz0u {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCIZYYpz0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIZYYpz0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIZYYpz0u ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCIZYYpz0u li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCIZYYpz0u ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ014lNAu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ014lNAu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ014lNAu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ014lNAu ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ014lNAu li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ014lNAu ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ014lNAu H3 {
  text-align: left;
}
.cid-tCJ00pAbYE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCIZK1Jsuj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIZK1Jsuj .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCIZK1T6aA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCIZK1T6aA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCIZK1T6aA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCIZK1T6aA .mbr-section-title {
  color: #ffffff;
}
.cid-tCIZK255AQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCIZK255AQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCIZK255AQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCIZK255AQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCIZK255AQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCIZK255AQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCIZK255AQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCIZK255AQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCIZK255AQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCIZK255AQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCIZK255AQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCIZK255AQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCIZK255AQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCIZK255AQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCIZK255AQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCIZK255AQ .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCJ0sIJ0C2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCJ0sIJ0C2 nav.navbar {
  position: fixed;
}
.cid-tCJ0sIJ0C2 .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-tCJ0sIJ0C2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCJ0sIJ0C2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCJ0sIJ0C2 .dropdown-item:hover,
.cid-tCJ0sIJ0C2 .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCJ0sIJ0C2 .dropdown-item:hover span {
  color: white;
}
.cid-tCJ0sIJ0C2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCJ0sIJ0C2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCJ0sIJ0C2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCJ0sIJ0C2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCJ0sIJ0C2 .nav-link {
  position: relative;
}
.cid-tCJ0sIJ0C2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCJ0sIJ0C2 .container {
    flex-wrap: nowrap;
  }
}
.cid-tCJ0sIJ0C2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCJ0sIJ0C2 .dropdown-menu,
.cid-tCJ0sIJ0C2 .navbar.opened {
  background: #ffffff !important;
}
.cid-tCJ0sIJ0C2 .nav-item:focus,
.cid-tCJ0sIJ0C2 .nav-link:focus {
  outline: none;
}
.cid-tCJ0sIJ0C2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCJ0sIJ0C2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCJ0sIJ0C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCJ0sIJ0C2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCJ0sIJ0C2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCJ0sIJ0C2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCJ0sIJ0C2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCJ0sIJ0C2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tCJ0sIJ0C2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCJ0sIJ0C2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tCJ0sIJ0C2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCJ0sIJ0C2 .navbar.collapsed {
  justify-content: center;
}
.cid-tCJ0sIJ0C2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCJ0sIJ0C2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCJ0sIJ0C2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCJ0sIJ0C2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCJ0sIJ0C2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCJ0sIJ0C2 .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-tCJ0sIJ0C2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCJ0sIJ0C2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCJ0sIJ0C2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCJ0sIJ0C2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCJ0sIJ0C2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCJ0sIJ0C2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCJ0sIJ0C2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCJ0sIJ0C2 .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-tCJ0sIJ0C2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCJ0sIJ0C2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCJ0sIJ0C2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCJ0sIJ0C2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCJ0sIJ0C2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCJ0sIJ0C2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCJ0sIJ0C2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCJ0sIJ0C2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCJ0sIJ0C2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCJ0sIJ0C2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCJ0sIJ0C2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCJ0sIJ0C2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCJ0sIJ0C2 .dropdown-item.active,
.cid-tCJ0sIJ0C2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCJ0sIJ0C2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCJ0sIJ0C2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCJ0sIJ0C2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCJ0sIJ0C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCJ0sIJ0C2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCJ0sIJ0C2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCJ0sIJ0C2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCJ0sIJ0C2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCJ0sIJ0C2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCJ0sIJ0C2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCJ0sIJ0C2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCJ0sIJ0C2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ0sIJ0C2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ0sIJ0C2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCJ0sIJ0C2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ0sIJ0C2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCJ0sIJ0C2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCJ0sIJ0C2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ0sIJ0C2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCJ0sIJ0C2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCJ0sIJ0C2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCJ0sIJ0C2 .navbar {
    height: 70px;
  }
  .cid-tCJ0sIJ0C2 .navbar.opened {
    height: auto;
  }
  .cid-tCJ0sIJ0C2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCJ0sJ5m8i {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ0sJ5m8i .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCJ0sJ5m8i .mbr-text {
  color: #00303c;
}
.cid-tCJ0sJYOKC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ0JKbdc2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ0JKbdc2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ0JKbdc2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tCJ0JKbdc2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCJ0JKbdc2 .row {
  flex-direction: row-reverse;
}
.cid-tCJ0JKbdc2 img {
  width: 100%;
}
.cid-tCJ14SaBL2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1iNZttM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1iNZttM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ1iNZttM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ1iNZttM ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ1iNZttM li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ1iNZttM ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ1vbaWwj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1ExgRcF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1ExgRcF .mbr-text {
  text-align: center;
}
.cid-tCJ0sKbSIa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ0sKbSIa .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCJ0sKpWzt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ0sKpWzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ0sKpWzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ0sKpWzt .mbr-section-title {
  color: #ffffff;
}
.cid-tCJ0sKEh97 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCJ0sKEh97 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCJ0sKEh97 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCJ0sKEh97 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCJ0sKEh97 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCJ0sKEh97 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCJ0sKEh97 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCJ0sKEh97 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCJ0sKEh97 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCJ0sKEh97 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCJ0sKEh97 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCJ0sKEh97 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCJ0sKEh97 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCJ0sKEh97 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCJ0sKEh97 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCJ0sKEh97 .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCJ1U5urqA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCJ1U5urqA nav.navbar {
  position: fixed;
}
.cid-tCJ1U5urqA .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-tCJ1U5urqA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCJ1U5urqA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCJ1U5urqA .dropdown-item:hover,
.cid-tCJ1U5urqA .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCJ1U5urqA .dropdown-item:hover span {
  color: white;
}
.cid-tCJ1U5urqA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCJ1U5urqA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCJ1U5urqA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCJ1U5urqA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCJ1U5urqA .nav-link {
  position: relative;
}
.cid-tCJ1U5urqA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCJ1U5urqA .container {
    flex-wrap: nowrap;
  }
}
.cid-tCJ1U5urqA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCJ1U5urqA .dropdown-menu,
.cid-tCJ1U5urqA .navbar.opened {
  background: #ffffff !important;
}
.cid-tCJ1U5urqA .nav-item:focus,
.cid-tCJ1U5urqA .nav-link:focus {
  outline: none;
}
.cid-tCJ1U5urqA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCJ1U5urqA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCJ1U5urqA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCJ1U5urqA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCJ1U5urqA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCJ1U5urqA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCJ1U5urqA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCJ1U5urqA .navbar.opened {
  transition: all 0.3s;
}
.cid-tCJ1U5urqA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCJ1U5urqA .navbar .navbar-logo img {
  width: auto;
}
.cid-tCJ1U5urqA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCJ1U5urqA .navbar.collapsed {
  justify-content: center;
}
.cid-tCJ1U5urqA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCJ1U5urqA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCJ1U5urqA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCJ1U5urqA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCJ1U5urqA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCJ1U5urqA .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-tCJ1U5urqA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCJ1U5urqA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCJ1U5urqA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCJ1U5urqA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCJ1U5urqA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCJ1U5urqA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCJ1U5urqA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCJ1U5urqA .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-tCJ1U5urqA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCJ1U5urqA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCJ1U5urqA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCJ1U5urqA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCJ1U5urqA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCJ1U5urqA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCJ1U5urqA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCJ1U5urqA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCJ1U5urqA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCJ1U5urqA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCJ1U5urqA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCJ1U5urqA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCJ1U5urqA .dropdown-item.active,
.cid-tCJ1U5urqA .dropdown-item:active {
  background-color: transparent;
}
.cid-tCJ1U5urqA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCJ1U5urqA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCJ1U5urqA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCJ1U5urqA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCJ1U5urqA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCJ1U5urqA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCJ1U5urqA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCJ1U5urqA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCJ1U5urqA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCJ1U5urqA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCJ1U5urqA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCJ1U5urqA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ1U5urqA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ1U5urqA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCJ1U5urqA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ1U5urqA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCJ1U5urqA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCJ1U5urqA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ1U5urqA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCJ1U5urqA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCJ1U5urqA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCJ1U5urqA .navbar {
    height: 70px;
  }
  .cid-tCJ1U5urqA .navbar.opened {
    height: auto;
  }
  .cid-tCJ1U5urqA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCJ1U5L0mE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1U5L0mE .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCJ1U5L0mE .mbr-text {
  color: #00303c;
}
.cid-tCJ1U5VjcR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1U67tB0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ1U67tB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ1U67tB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tCJ1U67tB0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCJ1U67tB0 .row {
  flex-direction: row-reverse;
}
.cid-tCJ1U67tB0 img {
  width: 100%;
}
.cid-tCJ2nC9UHG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ2nC9UHG .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ2yvdy68 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ2yvdy68 .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ2FALaji {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ2FALaji .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ2FALaji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ2FALaji ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ2FALaji li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ2FALaji ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ2QGqSMQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ2QGqSMQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ2QGqSMQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ2QGqSMQ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ2QGqSMQ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ2QGqSMQ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ36yG8Hv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ36yG8Hv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ36yG8Hv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ36yG8Hv ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ36yG8Hv li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ36yG8Hv ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ39NzrQY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3b7Pnhf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3b7Pnhf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ3b7Pnhf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ3b7Pnhf ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ3b7Pnhf li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ3b7Pnhf ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ3c5z3Ha {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3dAK5uO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3dAK5uO .mbr-text {
  text-align: center;
}
.cid-tCJ1U75qMG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ1U75qMG .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCJ1U7gqAz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ1U7gqAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ1U7gqAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ1U7gqAz .mbr-section-title {
  color: #ffffff;
}
.cid-tCJ1U7u2Nl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCJ1U7u2Nl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCJ1U7u2Nl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCJ1U7u2Nl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCJ1U7u2Nl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCJ1U7u2Nl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCJ1U7u2Nl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCJ1U7u2Nl .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCJ1U7u2Nl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCJ1U7u2Nl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCJ1U7u2Nl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCJ1U7u2Nl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCJ1U7u2Nl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCJ1U7u2Nl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCJ1U7u2Nl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCJ1U7u2Nl .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCJ3SONAjd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCJ3SONAjd nav.navbar {
  position: fixed;
}
.cid-tCJ3SONAjd .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-tCJ3SONAjd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCJ3SONAjd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCJ3SONAjd .dropdown-item:hover,
.cid-tCJ3SONAjd .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCJ3SONAjd .dropdown-item:hover span {
  color: white;
}
.cid-tCJ3SONAjd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCJ3SONAjd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCJ3SONAjd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCJ3SONAjd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCJ3SONAjd .nav-link {
  position: relative;
}
.cid-tCJ3SONAjd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCJ3SONAjd .container {
    flex-wrap: nowrap;
  }
}
.cid-tCJ3SONAjd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCJ3SONAjd .dropdown-menu,
.cid-tCJ3SONAjd .navbar.opened {
  background: #ffffff !important;
}
.cid-tCJ3SONAjd .nav-item:focus,
.cid-tCJ3SONAjd .nav-link:focus {
  outline: none;
}
.cid-tCJ3SONAjd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCJ3SONAjd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCJ3SONAjd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCJ3SONAjd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCJ3SONAjd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCJ3SONAjd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCJ3SONAjd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCJ3SONAjd .navbar.opened {
  transition: all 0.3s;
}
.cid-tCJ3SONAjd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCJ3SONAjd .navbar .navbar-logo img {
  width: auto;
}
.cid-tCJ3SONAjd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCJ3SONAjd .navbar.collapsed {
  justify-content: center;
}
.cid-tCJ3SONAjd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCJ3SONAjd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCJ3SONAjd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCJ3SONAjd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCJ3SONAjd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCJ3SONAjd .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-tCJ3SONAjd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCJ3SONAjd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCJ3SONAjd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCJ3SONAjd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCJ3SONAjd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCJ3SONAjd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCJ3SONAjd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCJ3SONAjd .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-tCJ3SONAjd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCJ3SONAjd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCJ3SONAjd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCJ3SONAjd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCJ3SONAjd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCJ3SONAjd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCJ3SONAjd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCJ3SONAjd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCJ3SONAjd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCJ3SONAjd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCJ3SONAjd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCJ3SONAjd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCJ3SONAjd .dropdown-item.active,
.cid-tCJ3SONAjd .dropdown-item:active {
  background-color: transparent;
}
.cid-tCJ3SONAjd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCJ3SONAjd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCJ3SONAjd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCJ3SONAjd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCJ3SONAjd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCJ3SONAjd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCJ3SONAjd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCJ3SONAjd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCJ3SONAjd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCJ3SONAjd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCJ3SONAjd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCJ3SONAjd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ3SONAjd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ3SONAjd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCJ3SONAjd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ3SONAjd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCJ3SONAjd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCJ3SONAjd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ3SONAjd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCJ3SONAjd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCJ3SONAjd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCJ3SONAjd .navbar {
    height: 70px;
  }
  .cid-tCJ3SONAjd .navbar.opened {
    height: auto;
  }
  .cid-tCJ3SONAjd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCJ3SP5Ur3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3SP5Ur3 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCJ3SP5Ur3 .mbr-text {
  color: #00303c;
}
.cid-tCJ3SPfmJb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3SQ4V4E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3SQ4V4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ3SQ4V4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ3SQ4V4E ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ3SQ4V4E li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ3SQ4V4E ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ3SQjP8Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3SQjP8Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ3SQjP8Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ3SQjP8Y ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ3SQjP8Y li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ3SQjP8Y ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ3SQwm0K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3SQwm0K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ3SQwm0K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ3SQwm0K ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ3SQwm0K li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ3SQwm0K ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ3SQUD9h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ3SQUD9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ3SQUD9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ3SQUD9h ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ3SQUD9h li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ3SQUD9h ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ4zMxbZu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ4zMxbZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ4zMxbZu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ4zMxbZu ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ4zMxbZu li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ4zMxbZu ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ3SRvfGR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ3SRvfGR .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCJ3SRHGlt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ3SRHGlt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ3SRHGlt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ3SRHGlt .mbr-section-title {
  color: #ffffff;
}
.cid-tCJ3SRUwVh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCJ3SRUwVh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCJ3SRUwVh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCJ3SRUwVh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCJ3SRUwVh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCJ3SRUwVh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCJ3SRUwVh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCJ3SRUwVh .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCJ3SRUwVh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCJ3SRUwVh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCJ3SRUwVh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCJ3SRUwVh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCJ3SRUwVh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCJ3SRUwVh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCJ3SRUwVh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCJ3SRUwVh .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCJ4P2jNHP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCJ4P2jNHP nav.navbar {
  position: fixed;
}
.cid-tCJ4P2jNHP .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-tCJ4P2jNHP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCJ4P2jNHP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCJ4P2jNHP .dropdown-item:hover,
.cid-tCJ4P2jNHP .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCJ4P2jNHP .dropdown-item:hover span {
  color: white;
}
.cid-tCJ4P2jNHP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCJ4P2jNHP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCJ4P2jNHP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCJ4P2jNHP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCJ4P2jNHP .nav-link {
  position: relative;
}
.cid-tCJ4P2jNHP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCJ4P2jNHP .container {
    flex-wrap: nowrap;
  }
}
.cid-tCJ4P2jNHP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCJ4P2jNHP .dropdown-menu,
.cid-tCJ4P2jNHP .navbar.opened {
  background: #ffffff !important;
}
.cid-tCJ4P2jNHP .nav-item:focus,
.cid-tCJ4P2jNHP .nav-link:focus {
  outline: none;
}
.cid-tCJ4P2jNHP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCJ4P2jNHP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCJ4P2jNHP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCJ4P2jNHP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCJ4P2jNHP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCJ4P2jNHP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCJ4P2jNHP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCJ4P2jNHP .navbar.opened {
  transition: all 0.3s;
}
.cid-tCJ4P2jNHP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCJ4P2jNHP .navbar .navbar-logo img {
  width: auto;
}
.cid-tCJ4P2jNHP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCJ4P2jNHP .navbar.collapsed {
  justify-content: center;
}
.cid-tCJ4P2jNHP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCJ4P2jNHP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCJ4P2jNHP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCJ4P2jNHP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCJ4P2jNHP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCJ4P2jNHP .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-tCJ4P2jNHP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCJ4P2jNHP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCJ4P2jNHP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCJ4P2jNHP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCJ4P2jNHP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCJ4P2jNHP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCJ4P2jNHP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCJ4P2jNHP .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-tCJ4P2jNHP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCJ4P2jNHP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCJ4P2jNHP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCJ4P2jNHP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCJ4P2jNHP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCJ4P2jNHP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCJ4P2jNHP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCJ4P2jNHP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCJ4P2jNHP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCJ4P2jNHP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCJ4P2jNHP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCJ4P2jNHP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCJ4P2jNHP .dropdown-item.active,
.cid-tCJ4P2jNHP .dropdown-item:active {
  background-color: transparent;
}
.cid-tCJ4P2jNHP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCJ4P2jNHP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCJ4P2jNHP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCJ4P2jNHP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCJ4P2jNHP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCJ4P2jNHP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCJ4P2jNHP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCJ4P2jNHP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCJ4P2jNHP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCJ4P2jNHP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCJ4P2jNHP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCJ4P2jNHP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ4P2jNHP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ4P2jNHP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCJ4P2jNHP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ4P2jNHP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCJ4P2jNHP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCJ4P2jNHP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ4P2jNHP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCJ4P2jNHP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCJ4P2jNHP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCJ4P2jNHP .navbar {
    height: 70px;
  }
  .cid-tCJ4P2jNHP .navbar.opened {
    height: auto;
  }
  .cid-tCJ4P2jNHP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCJ4P2A0Qc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ4P2A0Qc .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCJ4P2A0Qc .mbr-text {
  color: #00303c;
}
.cid-tCJ4P2UMBu {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ4P2UMBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ4P2UMBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ4P2UMBu ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ4P2UMBu li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ4P2UMBu ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ5ig28QA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ5ig28QA .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ5uuGolF {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ5uuGolF .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ5uuGolF .mbr-text {
  text-align: left;
}
.cid-tCJ5JOw6gU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ5JOw6gU .mbr-text {
  text-align: center;
}
.cid-tCJ5Z3VHbE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ5Z3VHbE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ5Z3VHbE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ5Z3VHbE ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ5Z3VHbE li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ5Z3VHbE ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ5Z3VHbE H3 {
  text-align: center;
}
.cid-tCJ67ACU6h {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ67ACU6h .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ6f6nhc4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ6f6nhc4 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tCJ4P404Ja {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ4P404Ja .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCJ4P4eIZ4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ4P4eIZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ4P4eIZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ4P4eIZ4 .mbr-section-title {
  color: #ffffff;
}
.cid-tCJ4P4qD3B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCJ4P4qD3B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCJ4P4qD3B .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCJ4P4qD3B .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCJ4P4qD3B .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCJ4P4qD3B .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCJ4P4qD3B .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCJ4P4qD3B .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCJ4P4qD3B .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCJ4P4qD3B .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCJ4P4qD3B .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCJ4P4qD3B .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCJ4P4qD3B .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCJ4P4qD3B .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCJ4P4qD3B .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCJ4P4qD3B .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCJ6nOcRww {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCJ6nOcRww nav.navbar {
  position: fixed;
}
.cid-tCJ6nOcRww .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-tCJ6nOcRww .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCJ6nOcRww .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCJ6nOcRww .dropdown-item:hover,
.cid-tCJ6nOcRww .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCJ6nOcRww .dropdown-item:hover span {
  color: white;
}
.cid-tCJ6nOcRww .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCJ6nOcRww .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCJ6nOcRww .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCJ6nOcRww .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCJ6nOcRww .nav-link {
  position: relative;
}
.cid-tCJ6nOcRww .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCJ6nOcRww .container {
    flex-wrap: nowrap;
  }
}
.cid-tCJ6nOcRww .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCJ6nOcRww .dropdown-menu,
.cid-tCJ6nOcRww .navbar.opened {
  background: #ffffff !important;
}
.cid-tCJ6nOcRww .nav-item:focus,
.cid-tCJ6nOcRww .nav-link:focus {
  outline: none;
}
.cid-tCJ6nOcRww .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCJ6nOcRww .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCJ6nOcRww .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCJ6nOcRww .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCJ6nOcRww .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCJ6nOcRww .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCJ6nOcRww .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCJ6nOcRww .navbar.opened {
  transition: all 0.3s;
}
.cid-tCJ6nOcRww .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCJ6nOcRww .navbar .navbar-logo img {
  width: auto;
}
.cid-tCJ6nOcRww .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCJ6nOcRww .navbar.collapsed {
  justify-content: center;
}
.cid-tCJ6nOcRww .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCJ6nOcRww .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCJ6nOcRww .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCJ6nOcRww .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCJ6nOcRww .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCJ6nOcRww .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-tCJ6nOcRww .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCJ6nOcRww .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCJ6nOcRww .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCJ6nOcRww .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCJ6nOcRww .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCJ6nOcRww .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCJ6nOcRww .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCJ6nOcRww .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-tCJ6nOcRww .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCJ6nOcRww .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCJ6nOcRww .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCJ6nOcRww .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCJ6nOcRww .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCJ6nOcRww .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCJ6nOcRww .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCJ6nOcRww .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCJ6nOcRww .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCJ6nOcRww .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCJ6nOcRww .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCJ6nOcRww .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCJ6nOcRww .dropdown-item.active,
.cid-tCJ6nOcRww .dropdown-item:active {
  background-color: transparent;
}
.cid-tCJ6nOcRww .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCJ6nOcRww .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCJ6nOcRww .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCJ6nOcRww .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCJ6nOcRww .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCJ6nOcRww .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCJ6nOcRww ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCJ6nOcRww .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCJ6nOcRww button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCJ6nOcRww button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCJ6nOcRww button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCJ6nOcRww button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ6nOcRww button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ6nOcRww button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCJ6nOcRww nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ6nOcRww nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCJ6nOcRww nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCJ6nOcRww nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ6nOcRww .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCJ6nOcRww a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCJ6nOcRww .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCJ6nOcRww .navbar {
    height: 70px;
  }
  .cid-tCJ6nOcRww .navbar.opened {
    height: auto;
  }
  .cid-tCJ6nOcRww .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCJ6nOsLaI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ6nOsLaI .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCJ6nOsLaI .mbr-text {
  color: #00303c;
}
.cid-tCJ6nOPAa0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCJ6nOPAa0 .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ6nPmQzS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ6nPmQzS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ6nPmQzS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ6nPmQzS ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tCJ6nPmQzS li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tCJ6nPmQzS ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #00303c;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tCJ6nPmQzS H3 {
  text-align: left;
}
.cid-tCJ6nPAwYB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ6nPAwYB .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ6nPVA0B {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ6nPVA0B .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCJ6nQ6Jpy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ6nQ6Jpy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ6nQ6Jpy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ6nQ6Jpy .mbr-section-title {
  color: #ffffff;
}
.cid-tCJ6nQidew {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCJ6nQidew .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCJ6nQidew .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCJ6nQidew .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCJ6nQidew .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCJ6nQidew .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCJ6nQidew .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCJ6nQidew .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCJ6nQidew .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCJ6nQidew .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCJ6nQidew .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCJ6nQidew .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCJ6nQidew .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCJ6nQidew .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCJ6nQidew .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCJ6nQidew .media-container-row .mbr-text {
  color: #747a96;
}
.cid-tCJ7MXVYgL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCJ7MXVYgL nav.navbar {
  position: fixed;
}
.cid-tCJ7MXVYgL .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-tCJ7MXVYgL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCJ7MXVYgL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCJ7MXVYgL .dropdown-item:hover,
.cid-tCJ7MXVYgL .dropdown-item:focus {
  background: #00303c !important;
  color: white !important;
}
.cid-tCJ7MXVYgL .dropdown-item:hover span {
  color: white;
}
.cid-tCJ7MXVYgL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCJ7MXVYgL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCJ7MXVYgL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCJ7MXVYgL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCJ7MXVYgL .nav-link {
  position: relative;
}
.cid-tCJ7MXVYgL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCJ7MXVYgL .container {
    flex-wrap: nowrap;
  }
}
.cid-tCJ7MXVYgL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCJ7MXVYgL .dropdown-menu,
.cid-tCJ7MXVYgL .navbar.opened {
  background: #ffffff !important;
}
.cid-tCJ7MXVYgL .nav-item:focus,
.cid-tCJ7MXVYgL .nav-link:focus {
  outline: none;
}
.cid-tCJ7MXVYgL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCJ7MXVYgL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCJ7MXVYgL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCJ7MXVYgL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCJ7MXVYgL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCJ7MXVYgL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCJ7MXVYgL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tCJ7MXVYgL .navbar.opened {
  transition: all 0.3s;
}
.cid-tCJ7MXVYgL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCJ7MXVYgL .navbar .navbar-logo img {
  width: auto;
}
.cid-tCJ7MXVYgL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCJ7MXVYgL .navbar.collapsed {
  justify-content: center;
}
.cid-tCJ7MXVYgL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCJ7MXVYgL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCJ7MXVYgL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tCJ7MXVYgL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCJ7MXVYgL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCJ7MXVYgL .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-tCJ7MXVYgL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCJ7MXVYgL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCJ7MXVYgL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCJ7MXVYgL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCJ7MXVYgL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCJ7MXVYgL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCJ7MXVYgL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCJ7MXVYgL .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-tCJ7MXVYgL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCJ7MXVYgL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCJ7MXVYgL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCJ7MXVYgL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCJ7MXVYgL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCJ7MXVYgL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCJ7MXVYgL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCJ7MXVYgL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCJ7MXVYgL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCJ7MXVYgL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCJ7MXVYgL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCJ7MXVYgL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCJ7MXVYgL .dropdown-item.active,
.cid-tCJ7MXVYgL .dropdown-item:active {
  background-color: transparent;
}
.cid-tCJ7MXVYgL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCJ7MXVYgL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCJ7MXVYgL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCJ7MXVYgL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCJ7MXVYgL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCJ7MXVYgL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCJ7MXVYgL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCJ7MXVYgL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCJ7MXVYgL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCJ7MXVYgL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tCJ7MXVYgL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCJ7MXVYgL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ7MXVYgL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCJ7MXVYgL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCJ7MXVYgL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ7MXVYgL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCJ7MXVYgL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCJ7MXVYgL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCJ7MXVYgL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCJ7MXVYgL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCJ7MXVYgL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCJ7MXVYgL .navbar {
    height: 70px;
  }
  .cid-tCJ7MXVYgL .navbar.opened {
    height: auto;
  }
  .cid-tCJ7MXVYgL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCJ7MYhelw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ7MYhelw .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCJ7MYhelw .mbr-text {
  color: #00303c;
}
.cid-tCJ7MYUkZQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCJ7MYUkZQ .mbr-section-subtitle {
  text-align: center;
}
.cid-tCJ7MZ4K1X {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ7MZ4K1X .mbr-text {
  text-align: center;
  color: #747a96;
}
.cid-tCJ7MZefTv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eceef6;
}
.cid-tCJ7MZefTv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCJ7MZefTv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCJ7MZefTv .mbr-section-title {
  color: #ffffff;
}
.cid-tCJ7MZqLHh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eceef6;
}
.cid-tCJ7MZqLHh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCJ7MZqLHh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCJ7MZqLHh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCJ7MZqLHh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCJ7MZqLHh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCJ7MZqLHh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCJ7MZqLHh .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCJ7MZqLHh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCJ7MZqLHh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCJ7MZqLHh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCJ7MZqLHh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCJ7MZqLHh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCJ7MZqLHh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCJ7MZqLHh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCJ7MZqLHh .media-container-row .mbr-text {
  color: #747a96;
}
