body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: #2f5bae !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: #2f5bae !important;
  border-color: #2f5bae !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: #1d376a !important;
  border-color: #1d376a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1d376a !important;
  border-color: #1d376a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #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: #2f5bae;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1d376a !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: #2f5bae !important;
  border-color: #2f5bae !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: #2f5bae !important;
}
.text-secondary {
  color: #ff6666 !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: #19315e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #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: #2f5bae;
}
.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: #2f5bae;
  border-color: #2f5bae;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2f5bae;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #80a0dd;
}
.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: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #2f5bae !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #2f5bae;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2f5bae;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2f5bae;
}
.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: #2f5bae;
  border-bottom-color: #2f5bae;
}
.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: #2f5bae !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%232f5bae' %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-sIDlmnYdyy {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tgGXtJ8szF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tgGYamokQT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tgGYamokQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgGYamokQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgGYamokQT ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tgGYamokQT li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tgGYamokQT ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #2f5bae;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ttB3tiLWrX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttB3tiLWrX nav.navbar {
  position: fixed;
}
.cid-ttB3tiLWrX .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-ttB3tiLWrX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttB3tiLWrX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttB3tiLWrX .dropdown-item:hover,
.cid-ttB3tiLWrX .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-ttB3tiLWrX .dropdown-item:hover span {
  color: white;
}
.cid-ttB3tiLWrX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttB3tiLWrX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttB3tiLWrX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttB3tiLWrX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttB3tiLWrX .nav-link {
  position: relative;
}
.cid-ttB3tiLWrX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttB3tiLWrX .container {
    flex-wrap: nowrap;
  }
}
.cid-ttB3tiLWrX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttB3tiLWrX .dropdown-menu,
.cid-ttB3tiLWrX .navbar.opened {
  background: #ffffff !important;
}
.cid-ttB3tiLWrX .nav-item:focus,
.cid-ttB3tiLWrX .nav-link:focus {
  outline: none;
}
.cid-ttB3tiLWrX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttB3tiLWrX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttB3tiLWrX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttB3tiLWrX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttB3tiLWrX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttB3tiLWrX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttB3tiLWrX .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-ttB3tiLWrX .navbar.opened {
  transition: all 0.3s;
}
.cid-ttB3tiLWrX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttB3tiLWrX .navbar .navbar-logo img {
  width: auto;
}
.cid-ttB3tiLWrX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttB3tiLWrX .navbar.collapsed {
  justify-content: center;
}
.cid-ttB3tiLWrX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttB3tiLWrX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ttB3tiLWrX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttB3tiLWrX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttB3tiLWrX .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-ttB3tiLWrX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttB3tiLWrX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttB3tiLWrX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttB3tiLWrX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttB3tiLWrX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttB3tiLWrX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttB3tiLWrX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttB3tiLWrX .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-ttB3tiLWrX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttB3tiLWrX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttB3tiLWrX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttB3tiLWrX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttB3tiLWrX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttB3tiLWrX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttB3tiLWrX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttB3tiLWrX .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttB3tiLWrX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttB3tiLWrX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttB3tiLWrX .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-ttB3tiLWrX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttB3tiLWrX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttB3tiLWrX .dropdown-item.active,
.cid-ttB3tiLWrX .dropdown-item:active {
  background-color: transparent;
}
.cid-ttB3tiLWrX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttB3tiLWrX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttB3tiLWrX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttB3tiLWrX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttB3tiLWrX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttB3tiLWrX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttB3tiLWrX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttB3tiLWrX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttB3tiLWrX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttB3tiLWrX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ttB3tiLWrX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttB3tiLWrX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttB3tiLWrX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttB3tiLWrX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttB3tiLWrX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttB3tiLWrX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttB3tiLWrX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttB3tiLWrX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttB3tiLWrX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttB3tiLWrX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttB3tiLWrX .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-ttB3tiLWrX .navbar {
    height: 70px;
  }
  .cid-ttB3tiLWrX .navbar.opened {
    height: auto;
  }
  .cid-ttB3tiLWrX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-ttHstjKbSf {
  background-color: #ffffff;
}
.cid-ttHstjKbSf .wrapper {
  padding-top: 9rem;
  padding-bottom: 1rem;
}
.cid-ttHstjKbSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttHstjKbSf .wrapper {
  background: #171717;
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
}
.cid-ttHstjKbSf .mbr-section-title {
  text-align: center;
}
.cid-ttHstjKbSf .mbr-text,
.cid-ttHstjKbSf .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ttHstjKbSf .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-ttHstjKbSf .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-ttHstjKbSf .mbr-section-title,
.cid-ttHstjKbSf .dot {
  color: #ffffff;
  text-align: center;
}
.cid-ttHstjKbSf .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-ttHsu3Tenr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0c66b4;
}
.cid-ttHsu3Tenr .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ttHsu3Tenr .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #2f5bae;
}
.cid-ttHsu3Tenr .svg-top .st0 {
  fill: #0c66b4;
}
@media (max-width: 992px) {
  .cid-ttHsu3Tenr .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-ttHsu3Tenr .col-12 {
    padding: 0 2rem;
  }
  .cid-ttHsu3Tenr .row {
    margin: 0 -2rem;
  }
}
.cid-ttHsu3Tenr .mbr-text,
.cid-ttHsu3Tenr .mbr-section-btn {
  color: #ffffff;
}
.cid-ttHsu3Tenr .mbr-section-title {
  color: #ffffff;
}
.cid-ttBlk1UUq0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ttBlk1UUq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttBlk1UUq0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ttBlk1UUq0 .row {
    flex-direction: column-reverse;
  }
  .cid-ttBlk1UUq0 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-ttBlk1UUq0 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-ttBlk1UUq0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ttBlk1UUq0 .media-content,
.cid-ttBlk1UUq0 .mbr-figure {
  align-self: center;
}
.cid-ttBlk1UUq0 .mbr-figure iframe {
  width: 100%;
}
.cid-ttF8y6MVNk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttF8y6MVNk .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ttF8y6MVNk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttF8y6MVNk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ttF8y6MVNk .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ttF8y6MVNk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttF8y6MVNk .mbr-text,
.cid-ttF8y6MVNk .mbr-section-btn {
  color: #353535;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttBr15wLqc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttBr15wLqc .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ttBr15wLqc .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBr15wLqc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ttBr15wLqc .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ttBr15wLqc .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBr15wLqc .mbr-text,
.cid-ttBr15wLqc .mbr-section-btn {
  color: #353535;
}
.cid-ttBr7qjFXs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttBr7qjFXs .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ttBr7qjFXs .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBr7qjFXs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ttBr7qjFXs .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ttBr7qjFXs .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBr7qjFXs .mbr-text,
.cid-ttBr7qjFXs .mbr-section-btn {
  color: #353535;
}
.cid-ttBrb7Jiql {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttBrb7Jiql .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ttBrb7Jiql .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBrb7Jiql .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ttBrb7Jiql .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ttBrb7Jiql .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBrb7Jiql .mbr-text,
.cid-ttBrb7Jiql .mbr-section-btn {
  color: #353535;
}
.cid-ttBrk6M6Sz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttBrk6M6Sz .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-ttBrk6M6Sz .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBrk6M6Sz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ttBrk6M6Sz .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ttBrk6M6Sz .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ttBrk6M6Sz .mbr-text,
.cid-ttBrk6M6Sz .mbr-section-btn {
  color: #353535;
}
.cid-sFzxmVl7J6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-tCZDX2E1WA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tCZDX2E1WA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZDX2E1WA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCZDX2E1WA .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tCZDX2E1WA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tCZDX2E1WA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCZDX2E1WA .card-wrapper {
    padding: 4rem;
  }
}
.cid-tCZDX2E1WA .mbr-text,
.cid-tCZDX2E1WA .mbr-section-btn {
  color: #ffffff;
}
.cid-tCZDX2E1WA .card-title,
.cid-tCZDX2E1WA .card-box {
  text-align: left;
}
.cid-ttHOPaak6u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ttHOPaak6u img {
  width: 120px;
  margin: auto;
}
.cid-ttHOPaak6u .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ttHOPaak6u .card {
    max-width: 12.5%;
  }
}
.cid-ttHOur1yz3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tADy1iCGIF {
  background-color: #ffffff;
}
.cid-tADy1iCGIF .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tADy1iCGIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tADy1iCGIF .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tADy1iCGIF .mbr-section-title {
  text-align: center;
}
.cid-tADy1iCGIF .mbr-text,
.cid-tADy1iCGIF .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tADy1iCGIF .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tADy1iCGIF .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tADy1iCGIF .mbr-section-title,
.cid-tADy1iCGIF .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tADy1iCGIF .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tADy1jxIbw {
  z-index: 1000;
  width: 100%;
}
.cid-tADy1jxIbw nav.navbar {
  position: fixed;
}
.cid-tADy1jxIbw .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-tADy1jxIbw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tADy1jxIbw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tADy1jxIbw .dropdown-item:hover,
.cid-tADy1jxIbw .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tADy1jxIbw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tADy1jxIbw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tADy1jxIbw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tADy1jxIbw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tADy1jxIbw .nav-link {
  position: relative;
}
.cid-tADy1jxIbw .container {
  display: flex;
  margin: auto;
}
.cid-tADy1jxIbw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tADy1jxIbw .dropdown-menu,
.cid-tADy1jxIbw .navbar.opened {
  background: #fafafa !important;
}
.cid-tADy1jxIbw .nav-item:focus,
.cid-tADy1jxIbw .nav-link:focus {
  outline: none;
}
.cid-tADy1jxIbw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tADy1jxIbw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tADy1jxIbw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tADy1jxIbw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tADy1jxIbw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tADy1jxIbw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tADy1jxIbw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tADy1jxIbw .navbar.opened {
  transition: all 0.3s;
}
.cid-tADy1jxIbw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tADy1jxIbw .navbar .navbar-logo img {
  width: auto;
}
.cid-tADy1jxIbw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tADy1jxIbw .navbar.collapsed {
  justify-content: center;
}
.cid-tADy1jxIbw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tADy1jxIbw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tADy1jxIbw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tADy1jxIbw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tADy1jxIbw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tADy1jxIbw .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-tADy1jxIbw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tADy1jxIbw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tADy1jxIbw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tADy1jxIbw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tADy1jxIbw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tADy1jxIbw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tADy1jxIbw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tADy1jxIbw .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-tADy1jxIbw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tADy1jxIbw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tADy1jxIbw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tADy1jxIbw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tADy1jxIbw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tADy1jxIbw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tADy1jxIbw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tADy1jxIbw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tADy1jxIbw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tADy1jxIbw .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-tADy1jxIbw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tADy1jxIbw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tADy1jxIbw .dropdown-item.active,
.cid-tADy1jxIbw .dropdown-item:active {
  background-color: transparent;
}
.cid-tADy1jxIbw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tADy1jxIbw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tADy1jxIbw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tADy1jxIbw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tADy1jxIbw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tADy1jxIbw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tADy1jxIbw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tADy1jxIbw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tADy1jxIbw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tADy1jxIbw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tADy1jxIbw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tADy1jxIbw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tADy1jxIbw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tADy1jxIbw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tADy1jxIbw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tADy1jxIbw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tADy1jxIbw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tADy1jxIbw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tADy1jxIbw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tADy1jxIbw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tADy1jxIbw .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-tADy1jxIbw .navbar {
    height: 70px;
  }
  .cid-tADy1jxIbw .navbar.opened {
    height: auto;
  }
  .cid-tADy1jxIbw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tADzLSOkbo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tADA6gzFUM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tADA6gzFUM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tADA6gzFUM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tADA6gzFUM .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tADA6gzFUM .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tADA6gzFUM .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tADA6gzFUM .card-wrapper {
    padding: 4rem;
  }
}
.cid-tADA6gzFUM .mbr-text,
.cid-tADA6gzFUM .mbr-section-btn {
  color: #ffffff;
}
.cid-tADA6gzFUM .card-title,
.cid-tADA6gzFUM .card-box {
  text-align: left;
}
.cid-tADAOqBZQh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tADAOqBZQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tADAOqBZQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tADy1kHtvh {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tADy1kHtvh {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tADy1kHtvh {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tADy1kHtvh .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tADy1kHtvh .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tADy1kHtvh .row {
    padding: 0;
  }
}
.cid-tADy1kHtvh .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tADy1kHtvh .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tADy1kHtvh .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tADy1kHtvh .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tADy1lyNFx {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tADy1lyNFx img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tADy1lyNFx .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tADy1lyNFx .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tADy1lyNFx .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tADy1lyNFx .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tADy1lyNFx .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tADy1lyNFx * {
    text-align: left;
  }
}
.cid-tADy1lyNFx a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tADy1lyNFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tADy1lyNFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tADy1lyNFx .card-wrapper .card-box .mbr-text,
.cid-tADy1lyNFx .mbr-section-btn {
  color: #353535;
}
.cid-tADEeKMfFp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADEeKMfFp .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADFu36bsw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADFu36bsw .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADFWgziep {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADFWgziep .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADGjnatQD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADGjnatQD .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADGG97iVc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tADGG97iVc blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tADHfZI0lD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADHfZI0lD .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADHx6p0BK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tADHx6p0BK blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tADHHzOFPg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADHHzOFPg .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADI3w8qsJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADI3w8qsJ .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tADIc2Mw2y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADIc2Mw2y .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tADIc2Mw2y .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tADIc2Mw2y .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tADIc2Mw2y .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: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tADJfWRZjv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADJfWRZjv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tADJfWRZjv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tADJfWRZjv .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tADJfWRZjv .panel-group {
  border: none;
}
.cid-tADJfWRZjv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tADJfWRZjv .panel-body,
.cid-tADJfWRZjv .card-header {
  padding: 1rem 0;
}
.cid-tADJfWRZjv .panel-title-edit {
  color: #000000;
}
.cid-tADJfWRZjv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tADy1uqR2l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tADy1uqR2l img {
  width: 120px;
  margin: auto;
}
.cid-tADy1uqR2l .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tADy1uqR2l .card {
    max-width: 12.5%;
  }
}
.cid-tCZU3XismA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC56Onj4j2 {
  background-color: #ffffff;
}
.cid-tC56Onj4j2 .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC56Onj4j2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC56Onj4j2 .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC56Onj4j2 .mbr-section-title {
  text-align: center;
}
.cid-tC56Onj4j2 .mbr-text,
.cid-tC56Onj4j2 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC56Onj4j2 .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC56Onj4j2 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC56Onj4j2 .mbr-section-title,
.cid-tC56Onj4j2 .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC56Onj4j2 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC56OnvRqy {
  z-index: 1000;
  width: 100%;
}
.cid-tC56OnvRqy nav.navbar {
  position: fixed;
}
.cid-tC56OnvRqy .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-tC56OnvRqy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC56OnvRqy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC56OnvRqy .dropdown-item:hover,
.cid-tC56OnvRqy .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC56OnvRqy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC56OnvRqy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC56OnvRqy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC56OnvRqy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC56OnvRqy .nav-link {
  position: relative;
}
.cid-tC56OnvRqy .container {
  display: flex;
  margin: auto;
}
.cid-tC56OnvRqy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC56OnvRqy .dropdown-menu,
.cid-tC56OnvRqy .navbar.opened {
  background: #fafafa !important;
}
.cid-tC56OnvRqy .nav-item:focus,
.cid-tC56OnvRqy .nav-link:focus {
  outline: none;
}
.cid-tC56OnvRqy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC56OnvRqy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC56OnvRqy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC56OnvRqy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC56OnvRqy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC56OnvRqy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC56OnvRqy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC56OnvRqy .navbar.opened {
  transition: all 0.3s;
}
.cid-tC56OnvRqy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC56OnvRqy .navbar .navbar-logo img {
  width: auto;
}
.cid-tC56OnvRqy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC56OnvRqy .navbar.collapsed {
  justify-content: center;
}
.cid-tC56OnvRqy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC56OnvRqy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC56OnvRqy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC56OnvRqy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC56OnvRqy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC56OnvRqy .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-tC56OnvRqy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC56OnvRqy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC56OnvRqy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC56OnvRqy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC56OnvRqy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC56OnvRqy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC56OnvRqy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC56OnvRqy .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-tC56OnvRqy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC56OnvRqy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC56OnvRqy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC56OnvRqy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC56OnvRqy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC56OnvRqy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC56OnvRqy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC56OnvRqy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC56OnvRqy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC56OnvRqy .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-tC56OnvRqy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC56OnvRqy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC56OnvRqy .dropdown-item.active,
.cid-tC56OnvRqy .dropdown-item:active {
  background-color: transparent;
}
.cid-tC56OnvRqy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC56OnvRqy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC56OnvRqy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC56OnvRqy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC56OnvRqy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC56OnvRqy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC56OnvRqy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC56OnvRqy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC56OnvRqy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC56OnvRqy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC56OnvRqy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC56OnvRqy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC56OnvRqy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC56OnvRqy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC56OnvRqy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC56OnvRqy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC56OnvRqy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC56OnvRqy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC56OnvRqy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC56OnvRqy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC56OnvRqy .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-tC56OnvRqy .navbar {
    height: 70px;
  }
  .cid-tC56OnvRqy .navbar.opened {
    height: auto;
  }
  .cid-tC56OnvRqy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC56Oo2THU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC56Oo2THU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC56Oo2THU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC56OobFBj {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC56OobFBj {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC56OobFBj {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC56OobFBj .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC56OobFBj .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC56OobFBj .row {
    padding: 0;
  }
}
.cid-tC56OobFBj .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC56OobFBj .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC56OobFBj .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC56OobFBj .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC56OolhQ4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC56OolhQ4 img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC56OolhQ4 .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC56OolhQ4 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC56OolhQ4 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC56OolhQ4 * {
    text-align: left;
  }
}
.cid-tC56OolhQ4 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC56OolhQ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC56OolhQ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC56OolhQ4 .card-wrapper .card-box .mbr-text,
.cid-tC56OolhQ4 .mbr-section-btn {
  color: #353535;
}
.cid-tC56OoYCYD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC56OoYCYD .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC56Op6csA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC56Op6csA .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC56OpfaXK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC56OpfaXK .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5i8rUyfS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5i8rUyfS .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5jrj8eqc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5jrj8eqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC5jrj8eqc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC5jrj8eqc .card-wrapper {
  background: #8a8888;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tC5jrj8eqc .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tC5jrj8eqc .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tC5jrj8eqc .card-wrapper {
    padding: 4rem;
  }
}
.cid-tC5jrj8eqc .mbr-text,
.cid-tC5jrj8eqc .mbr-section-btn {
  color: #ffffff;
}
.cid-tC5jrj8eqc .card-title,
.cid-tC5jrj8eqc .card-box {
  text-align: left;
}
.cid-tC5jFKpSm6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5jFKpSm6 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC56OqjY5H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC56OqjY5H .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tC56OqjY5H .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tC56OqjY5H .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tC56OqjY5H .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC5iPoXDFJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5iPoXDFJ .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5lg064PE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5lg064PE .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5mgbq2fC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5mgbq2fC .mbr-section-subtitle {
  color: #2f5bae;
}
#custom-html-gt {
  /* Type valid CSS here */
}
#custom-html-gt div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-gt p {
  font-size: 60px;
  color: #777;
}
.cid-tC5l3MfbD1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5l3MfbD1 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC56OqBJwP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC56OqBJwP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC56OqBJwP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC56OqBJwP .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC56OqBJwP .panel-group {
  border: none;
}
.cid-tC56OqBJwP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC56OqBJwP .panel-body,
.cid-tC56OqBJwP .card-header {
  padding: 1rem 0;
}
.cid-tC56OqBJwP .panel-title-edit {
  color: #000000;
}
.cid-tC56OqBJwP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC56OqVeEy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC56OqVeEy img {
  width: 120px;
  margin: auto;
}
.cid-tC56OqVeEy .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC56OqVeEy .card {
    max-width: 12.5%;
  }
}
.cid-tCZUnewpsn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCb1PrKyqy {
  background-color: #ffffff;
}
.cid-tCb1PrKyqy .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCb1PrKyqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb1PrKyqy .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCb1PrKyqy .mbr-section-title {
  text-align: center;
}
.cid-tCb1PrKyqy .mbr-text,
.cid-tCb1PrKyqy .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCb1PrKyqy .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCb1PrKyqy .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCb1PrKyqy .mbr-section-title,
.cid-tCb1PrKyqy .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCb1PrKyqy .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCb1Ps77zB {
  z-index: 1000;
  width: 100%;
}
.cid-tCb1Ps77zB nav.navbar {
  position: fixed;
}
.cid-tCb1Ps77zB .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-tCb1Ps77zB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCb1Ps77zB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCb1Ps77zB .dropdown-item:hover,
.cid-tCb1Ps77zB .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCb1Ps77zB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCb1Ps77zB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCb1Ps77zB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCb1Ps77zB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCb1Ps77zB .nav-link {
  position: relative;
}
.cid-tCb1Ps77zB .container {
  display: flex;
  margin: auto;
}
.cid-tCb1Ps77zB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCb1Ps77zB .dropdown-menu,
.cid-tCb1Ps77zB .navbar.opened {
  background: #fafafa !important;
}
.cid-tCb1Ps77zB .nav-item:focus,
.cid-tCb1Ps77zB .nav-link:focus {
  outline: none;
}
.cid-tCb1Ps77zB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCb1Ps77zB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCb1Ps77zB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCb1Ps77zB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCb1Ps77zB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCb1Ps77zB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCb1Ps77zB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCb1Ps77zB .navbar.opened {
  transition: all 0.3s;
}
.cid-tCb1Ps77zB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCb1Ps77zB .navbar .navbar-logo img {
  width: auto;
}
.cid-tCb1Ps77zB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCb1Ps77zB .navbar.collapsed {
  justify-content: center;
}
.cid-tCb1Ps77zB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCb1Ps77zB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCb1Ps77zB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCb1Ps77zB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCb1Ps77zB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCb1Ps77zB .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-tCb1Ps77zB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCb1Ps77zB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCb1Ps77zB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCb1Ps77zB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCb1Ps77zB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCb1Ps77zB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCb1Ps77zB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCb1Ps77zB .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-tCb1Ps77zB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCb1Ps77zB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCb1Ps77zB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCb1Ps77zB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCb1Ps77zB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCb1Ps77zB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCb1Ps77zB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCb1Ps77zB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCb1Ps77zB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCb1Ps77zB .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-tCb1Ps77zB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCb1Ps77zB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCb1Ps77zB .dropdown-item.active,
.cid-tCb1Ps77zB .dropdown-item:active {
  background-color: transparent;
}
.cid-tCb1Ps77zB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCb1Ps77zB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCb1Ps77zB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCb1Ps77zB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCb1Ps77zB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCb1Ps77zB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCb1Ps77zB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCb1Ps77zB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCb1Ps77zB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCb1Ps77zB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCb1Ps77zB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCb1Ps77zB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCb1Ps77zB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCb1Ps77zB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCb1Ps77zB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCb1Ps77zB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCb1Ps77zB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCb1Ps77zB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCb1Ps77zB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCb1Ps77zB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCb1Ps77zB .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-tCb1Ps77zB .navbar {
    height: 70px;
  }
  .cid-tCb1Ps77zB .navbar.opened {
    height: auto;
  }
  .cid-tCb1Ps77zB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCb1PtfXrv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCb1PtT8c6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCb1PtT8c6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb1PtT8c6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb1PtT8c6 .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tCb1PtT8c6 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tCb1PtT8c6 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCb1PtT8c6 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tCb1PtT8c6 .mbr-text,
.cid-tCb1PtT8c6 .mbr-section-btn {
  color: #ffffff;
}
.cid-tCb1PtT8c6 .card-title,
.cid-tCb1PtT8c6 .card-box {
  text-align: left;
}
.cid-tCb1Pu9Ozt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCb1Pu9Ozt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb1Pu9Ozt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb1Puq4MU {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCb1Puq4MU {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCb1Puq4MU {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tCb1Puq4MU .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCb1Puq4MU .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCb1Puq4MU .row {
    padding: 0;
  }
}
.cid-tCb1Puq4MU .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCb1Puq4MU .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCb1Puq4MU .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCb1Puq4MU .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCb1PuGR1V {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCb1PuGR1V img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCb1PuGR1V .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCb1PuGR1V .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCb1PuGR1V .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCb1PuGR1V * {
    text-align: left;
  }
}
.cid-tCb1PuGR1V a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCb1PuGR1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb1PuGR1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb1PuGR1V .card-wrapper .card-box .mbr-text,
.cid-tCb1PuGR1V .mbr-section-btn {
  color: #353535;
}
.cid-tCi3TyYNNr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCi3TyYNNr .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCi3TyYNNr .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCi3TyYNNr .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCi3TyYNNr .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tCi4aAFStN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCi4aAFStN .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCb1PvQ1uc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb1PvQ1uc .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCi4GodEFc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCi4GodEFc .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCi4GodEFc .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCi4GodEFc .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCi4GodEFc .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCi4GodEFc .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCi4GodEFc .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCi4GodEFc .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCi4GodEFc .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCi4GodEFc .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCi4GodEFc .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCi4GodEFc .mbr-section-title {
  color: #1E1C21;
}
.cid-tCi4GodEFc .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCi4GodEFc .mbr-text {
  color: #1E1C21;
}
.cid-tCi4Wq9gnD {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tCi4Wq9gnD .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCi4Wq9gnD .container {
    max-width: 1000px;
  }
}
.cid-tCi4Wq9gnD .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCi5W5CZGG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi5W5CZGG .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCi5W5CZGG .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCi5W5CZGG .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCi5W5CZGG .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCi5W5CZGG .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCi5W5CZGG .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCi5W5CZGG .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCi5W5CZGG .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCi5W5CZGG .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCi5W5CZGG .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCi5W5CZGG .mbr-section-title {
  color: #1E1C21;
}
.cid-tCi5W5CZGG .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCi5W5CZGG .mbr-text {
  color: #1E1C21;
}
.cid-tCi64CkzuF {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tCi64CkzuF .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCi64CkzuF .container {
    max-width: 1000px;
  }
}
.cid-tCi64CkzuF .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCb1Pw7i79 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb1Pw7i79 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCi6JCwKYn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi6JCwKYn blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCi7iRhAoc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi7iRhAoc blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCi7JedPK0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi7JedPK0 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCi7KMSfSe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi7KMSfSe blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCi8gwkhZk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi8gwkhZk blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCi9NyjnyU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCi9NyjnyU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCi9NyjnyU .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-tCi9NyjnyU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCi9NyjnyU .row {
  flex-direction: row-reverse;
}
.cid-tCi9NyjnyU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCi9NyjnyU .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCb1PwmAOW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb1PwmAOW .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCicCxVUhj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCicCxVUhj .first {
  border-top: 1px solid #0c66b4;
  padding-top: 1rem;
}
.cid-tCicCxVUhj .icon {
  position: relative;
  margin: 0;
  padding-top: 1rem;
  border-bottom: 1px solid #0c66b4;
  padding-right: 2rem;
}
.cid-tCicCxVUhj .icon div {
  padding: 0;
}
.cid-tCicCxVUhj .icon:before {
  position: absolute;
  cursor: pointer;
  right: 0px;
  content: "\e909";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c66b4;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 20%;
  font-family: 'Moririse2' !important;
  font-size: 0.8rem;
  padding-left: 3px;
}
.cid-tCxYUtQCx1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCxYUtQCx1 .first {
  border-top: 1px solid #0c66b4;
  padding-top: 1rem;
}
.cid-tCxYUtQCx1 .icon {
  position: relative;
  margin: 0;
  padding-top: 1rem;
  border-bottom: 1px solid #0c66b4;
  padding-right: 2rem;
}
.cid-tCxYUtQCx1 .icon div {
  padding: 0;
}
.cid-tCxYUtQCx1 .icon:before {
  position: absolute;
  cursor: pointer;
  right: 0px;
  content: "\e909";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c66b4;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 20%;
  font-family: 'Moririse2' !important;
  font-size: 0.8rem;
  padding-left: 3px;
}
.cid-tCy0k6sK13 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCy0k6sK13 .first {
  border-top: 1px solid #0c66b4;
  padding-top: 1rem;
}
.cid-tCy0k6sK13 .icon {
  position: relative;
  margin: 0;
  padding-top: 1rem;
  border-bottom: 1px solid #0c66b4;
  padding-right: 2rem;
}
.cid-tCy0k6sK13 .icon div {
  padding: 0;
}
.cid-tCy0k6sK13 .icon:before {
  position: absolute;
  cursor: pointer;
  right: 0px;
  content: "\e909";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c66b4;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 20%;
  font-family: 'Moririse2' !important;
  font-size: 0.8rem;
  padding-left: 3px;
}
.cid-tCy1w4h5YT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tCy1w4h5YT .first {
  border-top: 1px solid #0c66b4;
  padding-top: 1rem;
}
.cid-tCy1w4h5YT .icon {
  position: relative;
  margin: 0;
  padding-top: 1rem;
  border-bottom: 1px solid #0c66b4;
  padding-right: 2rem;
}
.cid-tCy1w4h5YT .icon div {
  padding: 0;
}
.cid-tCy1w4h5YT .icon:before {
  position: absolute;
  cursor: pointer;
  right: 0px;
  content: "\e909";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c66b4;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 20%;
  font-family: 'Moririse2' !important;
  font-size: 0.8rem;
  padding-left: 3px;
}
.cid-tCiac7zYu6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCiac7zYu6 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCb1PwSO7t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb1PwSO7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb1PwSO7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb1PwSO7t .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCb1PwSO7t .panel-group {
  border: none;
}
.cid-tCb1PwSO7t .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCb1PwSO7t .panel-body,
.cid-tCb1PwSO7t .card-header {
  padding: 1rem 0;
}
.cid-tCb1PwSO7t .panel-title-edit {
  color: #000000;
}
.cid-tCb1PwSO7t .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCb1Pxjpi9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb1Pxjpi9 img {
  width: 120px;
  margin: auto;
}
.cid-tCb1Pxjpi9 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCb1Pxjpi9 .card {
    max-width: 12.5%;
  }
}
.cid-tCZWYOLbv4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCZF2YIpyE {
  background-color: #ffffff;
}
.cid-tCZF2YIpyE .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCZF2YIpyE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZF2YIpyE .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCZF2YIpyE .mbr-section-title {
  text-align: center;
}
.cid-tCZF2YIpyE .mbr-text,
.cid-tCZF2YIpyE .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCZF2YIpyE .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCZF2YIpyE .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCZF2YIpyE .mbr-section-title,
.cid-tCZF2YIpyE .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCZF2YIpyE .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCZFjdQkam {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tCZFjdQkam .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZFjdQkam .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCZFjdQkam .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCZFjdQkam .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCZFjdQkam .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCZFjdQkam .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCZFjdQkam .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCZFjdQkam .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCZFjdQkam .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCZFjdQkam .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCZFjdQkam .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCZFjdQkam .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCZFTsqQ4q {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tCZFTsqQ4q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZFTsqQ4q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCZFTsqQ4q .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCZFTsqQ4q .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCZFTsqQ4q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCZFTsqQ4q .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCZFTsqQ4q .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCZFTsqQ4q .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCZFTsqQ4q .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCZFTsqQ4q .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCZFTsqQ4q .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCZFTsqQ4q .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCZGsZkTl4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tCZGsZkTl4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZGsZkTl4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCZGsZkTl4 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCZGsZkTl4 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCZGsZkTl4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCZGsZkTl4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCZGsZkTl4 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCZGsZkTl4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCZGsZkTl4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCZGsZkTl4 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCZGsZkTl4 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCZGsZkTl4 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCZGLMNOwZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tCZGLMNOwZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZGLMNOwZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCZGLMNOwZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCZGLMNOwZ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCZGLMNOwZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCZGLMNOwZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCZGLMNOwZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCZGLMNOwZ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCZGLMNOwZ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCZGLMNOwZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCZGLMNOwZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCZGLMNOwZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCZHbMkbWF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tCZHbMkbWF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCZHbMkbWF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCZHbMkbWF .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCZHbMkbWF .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tCZHbMkbWF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCZHbMkbWF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tCZHbMkbWF .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tCZHbMkbWF .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tCZHbMkbWF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tCZHbMkbWF .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCZHbMkbWF .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCZHbMkbWF .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCZF2YXmWh {
  z-index: 1000;
  width: 100%;
}
.cid-tCZF2YXmWh nav.navbar {
  position: fixed;
}
.cid-tCZF2YXmWh .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-tCZF2YXmWh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCZF2YXmWh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCZF2YXmWh .dropdown-item:hover,
.cid-tCZF2YXmWh .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCZF2YXmWh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCZF2YXmWh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCZF2YXmWh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCZF2YXmWh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCZF2YXmWh .nav-link {
  position: relative;
}
.cid-tCZF2YXmWh .container {
  display: flex;
  margin: auto;
}
.cid-tCZF2YXmWh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCZF2YXmWh .dropdown-menu,
.cid-tCZF2YXmWh .navbar.opened {
  background: #fafafa !important;
}
.cid-tCZF2YXmWh .nav-item:focus,
.cid-tCZF2YXmWh .nav-link:focus {
  outline: none;
}
.cid-tCZF2YXmWh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCZF2YXmWh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCZF2YXmWh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCZF2YXmWh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCZF2YXmWh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCZF2YXmWh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCZF2YXmWh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCZF2YXmWh .navbar.opened {
  transition: all 0.3s;
}
.cid-tCZF2YXmWh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCZF2YXmWh .navbar .navbar-logo img {
  width: auto;
}
.cid-tCZF2YXmWh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCZF2YXmWh .navbar.collapsed {
  justify-content: center;
}
.cid-tCZF2YXmWh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCZF2YXmWh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCZF2YXmWh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCZF2YXmWh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCZF2YXmWh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCZF2YXmWh .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-tCZF2YXmWh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCZF2YXmWh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCZF2YXmWh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCZF2YXmWh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCZF2YXmWh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCZF2YXmWh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCZF2YXmWh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCZF2YXmWh .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-tCZF2YXmWh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCZF2YXmWh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCZF2YXmWh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCZF2YXmWh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCZF2YXmWh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCZF2YXmWh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCZF2YXmWh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCZF2YXmWh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCZF2YXmWh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCZF2YXmWh .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-tCZF2YXmWh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCZF2YXmWh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCZF2YXmWh .dropdown-item.active,
.cid-tCZF2YXmWh .dropdown-item:active {
  background-color: transparent;
}
.cid-tCZF2YXmWh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCZF2YXmWh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCZF2YXmWh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCZF2YXmWh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCZF2YXmWh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCZF2YXmWh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCZF2YXmWh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCZF2YXmWh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCZF2YXmWh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCZF2YXmWh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCZF2YXmWh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCZF2YXmWh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCZF2YXmWh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCZF2YXmWh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCZF2YXmWh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCZF2YXmWh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCZF2YXmWh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCZF2YXmWh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCZF2YXmWh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCZF2YXmWh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCZF2YXmWh .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-tCZF2YXmWh .navbar {
    height: 70px;
  }
  .cid-tCZF2YXmWh .navbar.opened {
    height: auto;
  }
  .cid-tCZF2YXmWh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCZF337FKq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCZF337FKq img {
  width: 120px;
  margin: auto;
}
.cid-tCZF337FKq .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCZF337FKq .card {
    max-width: 12.5%;
  }
}
.cid-tCZTckflTF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC5xj34vMt {
  background-color: #ffffff;
}
.cid-tC5xj34vMt .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC5xj34vMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC5xj34vMt .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC5xj34vMt .mbr-section-title {
  text-align: center;
}
.cid-tC5xj34vMt .mbr-text,
.cid-tC5xj34vMt .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC5xj34vMt .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC5xj34vMt .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC5xj34vMt .mbr-section-title,
.cid-tC5xj34vMt .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC5xj34vMt .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC5xj3q3Oq {
  z-index: 1000;
  width: 100%;
}
.cid-tC5xj3q3Oq nav.navbar {
  position: fixed;
}
.cid-tC5xj3q3Oq .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-tC5xj3q3Oq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC5xj3q3Oq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC5xj3q3Oq .dropdown-item:hover,
.cid-tC5xj3q3Oq .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC5xj3q3Oq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC5xj3q3Oq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC5xj3q3Oq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC5xj3q3Oq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC5xj3q3Oq .nav-link {
  position: relative;
}
.cid-tC5xj3q3Oq .container {
  display: flex;
  margin: auto;
}
.cid-tC5xj3q3Oq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC5xj3q3Oq .dropdown-menu,
.cid-tC5xj3q3Oq .navbar.opened {
  background: #fafafa !important;
}
.cid-tC5xj3q3Oq .nav-item:focus,
.cid-tC5xj3q3Oq .nav-link:focus {
  outline: none;
}
.cid-tC5xj3q3Oq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC5xj3q3Oq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC5xj3q3Oq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC5xj3q3Oq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC5xj3q3Oq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC5xj3q3Oq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC5xj3q3Oq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC5xj3q3Oq .navbar.opened {
  transition: all 0.3s;
}
.cid-tC5xj3q3Oq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC5xj3q3Oq .navbar .navbar-logo img {
  width: auto;
}
.cid-tC5xj3q3Oq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC5xj3q3Oq .navbar.collapsed {
  justify-content: center;
}
.cid-tC5xj3q3Oq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC5xj3q3Oq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC5xj3q3Oq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC5xj3q3Oq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC5xj3q3Oq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC5xj3q3Oq .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-tC5xj3q3Oq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC5xj3q3Oq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC5xj3q3Oq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC5xj3q3Oq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC5xj3q3Oq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC5xj3q3Oq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC5xj3q3Oq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC5xj3q3Oq .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-tC5xj3q3Oq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC5xj3q3Oq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC5xj3q3Oq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC5xj3q3Oq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC5xj3q3Oq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC5xj3q3Oq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC5xj3q3Oq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC5xj3q3Oq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC5xj3q3Oq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC5xj3q3Oq .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-tC5xj3q3Oq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC5xj3q3Oq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC5xj3q3Oq .dropdown-item.active,
.cid-tC5xj3q3Oq .dropdown-item:active {
  background-color: transparent;
}
.cid-tC5xj3q3Oq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC5xj3q3Oq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC5xj3q3Oq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC5xj3q3Oq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC5xj3q3Oq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC5xj3q3Oq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC5xj3q3Oq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC5xj3q3Oq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC5xj3q3Oq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC5xj3q3Oq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC5xj3q3Oq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC5xj3q3Oq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC5xj3q3Oq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC5xj3q3Oq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC5xj3q3Oq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC5xj3q3Oq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC5xj3q3Oq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC5xj3q3Oq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC5xj3q3Oq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC5xj3q3Oq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC5xj3q3Oq .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-tC5xj3q3Oq .navbar {
    height: 70px;
  }
  .cid-tC5xj3q3Oq .navbar.opened {
    height: auto;
  }
  .cid-tC5xj3q3Oq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC5xj3P9cP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC5xj3P9cP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC5xj3P9cP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC5xj4a99U {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC5xj4a99U {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC5xj4a99U {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC5xj4a99U .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC5xj4a99U .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC5xj4a99U .row {
    padding: 0;
  }
}
.cid-tC5xj4a99U .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC5xj4a99U .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC5xj4a99U .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC5xj4a99U .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC5xj4Y9BH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC5xj4Y9BH img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC5xj4Y9BH .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC5xj4Y9BH * {
    text-align: left;
  }
}
.cid-tC5xj4Y9BH a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC5xj4Y9BH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC5xj4Y9BH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC5xj4Y9BH .card-wrapper .card-box .mbr-text,
.cid-tC5xj4Y9BH .mbr-section-btn {
  color: #353535;
}
.cid-tC5xj61asS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj61asS .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5xj6hwqo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj6hwqo .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5xj6wR0d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj6wR0d .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC6Dz5InL4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6Dz5InL4 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5xj6L17F {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj6L17F .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5xj87WPB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj87WPB .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5xj8rPGm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj8rPGm .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC5z5u6dxh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC5z5u6dxh blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tC5zmrEFfS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC5zmrEFfS blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tC5znOBCes {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC5znOBCes blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tC5xj9weOP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj9weOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC5xj9weOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC5xj9weOP .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC5xj9weOP .panel-group {
  border: none;
}
.cid-tC5xj9weOP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC5xj9weOP .panel-body,
.cid-tC5xj9weOP .card-header {
  padding: 1rem 0;
}
.cid-tC5xj9weOP .panel-title-edit {
  color: #000000;
}
.cid-tC5xj9weOP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC5xj9VZ2q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC5xj9VZ2q img {
  width: 120px;
  margin: auto;
}
.cid-tC5xj9VZ2q .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC5xj9VZ2q .card {
    max-width: 12.5%;
  }
}
.cid-tCZUIfGmXQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC6Exxq6CS {
  background-color: #ffffff;
}
.cid-tC6Exxq6CS .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC6Exxq6CS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC6Exxq6CS .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC6Exxq6CS .mbr-section-title {
  text-align: center;
}
.cid-tC6Exxq6CS .mbr-text,
.cid-tC6Exxq6CS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC6Exxq6CS .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC6Exxq6CS .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC6Exxq6CS .mbr-section-title,
.cid-tC6Exxq6CS .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC6Exxq6CS .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC6ExxMBz3 {
  z-index: 1000;
  width: 100%;
}
.cid-tC6ExxMBz3 nav.navbar {
  position: fixed;
}
.cid-tC6ExxMBz3 .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-tC6ExxMBz3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC6ExxMBz3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC6ExxMBz3 .dropdown-item:hover,
.cid-tC6ExxMBz3 .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC6ExxMBz3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC6ExxMBz3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC6ExxMBz3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC6ExxMBz3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC6ExxMBz3 .nav-link {
  position: relative;
}
.cid-tC6ExxMBz3 .container {
  display: flex;
  margin: auto;
}
.cid-tC6ExxMBz3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC6ExxMBz3 .dropdown-menu,
.cid-tC6ExxMBz3 .navbar.opened {
  background: #fafafa !important;
}
.cid-tC6ExxMBz3 .nav-item:focus,
.cid-tC6ExxMBz3 .nav-link:focus {
  outline: none;
}
.cid-tC6ExxMBz3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC6ExxMBz3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC6ExxMBz3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC6ExxMBz3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC6ExxMBz3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC6ExxMBz3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC6ExxMBz3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC6ExxMBz3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tC6ExxMBz3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC6ExxMBz3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tC6ExxMBz3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC6ExxMBz3 .navbar.collapsed {
  justify-content: center;
}
.cid-tC6ExxMBz3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC6ExxMBz3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC6ExxMBz3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC6ExxMBz3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC6ExxMBz3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC6ExxMBz3 .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-tC6ExxMBz3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC6ExxMBz3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC6ExxMBz3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC6ExxMBz3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC6ExxMBz3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC6ExxMBz3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC6ExxMBz3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC6ExxMBz3 .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-tC6ExxMBz3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC6ExxMBz3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC6ExxMBz3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC6ExxMBz3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC6ExxMBz3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC6ExxMBz3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC6ExxMBz3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC6ExxMBz3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC6ExxMBz3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC6ExxMBz3 .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-tC6ExxMBz3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC6ExxMBz3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC6ExxMBz3 .dropdown-item.active,
.cid-tC6ExxMBz3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tC6ExxMBz3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC6ExxMBz3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC6ExxMBz3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC6ExxMBz3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC6ExxMBz3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC6ExxMBz3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC6ExxMBz3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC6ExxMBz3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC6ExxMBz3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC6ExxMBz3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC6ExxMBz3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC6ExxMBz3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC6ExxMBz3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC6ExxMBz3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC6ExxMBz3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC6ExxMBz3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC6ExxMBz3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC6ExxMBz3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC6ExxMBz3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC6ExxMBz3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC6ExxMBz3 .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-tC6ExxMBz3 .navbar {
    height: 70px;
  }
  .cid-tC6ExxMBz3 .navbar.opened {
    height: auto;
  }
  .cid-tC6ExxMBz3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC6Exye04t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC6Exye04t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC6Exye04t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC6ExyA9QQ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC6ExyA9QQ {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC6ExyA9QQ {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC6ExyA9QQ .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC6ExyA9QQ .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC6ExyA9QQ .row {
    padding: 0;
  }
}
.cid-tC6ExyA9QQ .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC6ExyA9QQ .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC6ExyA9QQ .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC6ExyA9QQ .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC6ExzgwrA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC6ExzgwrA img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC6ExzgwrA .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC6ExzgwrA .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC6ExzgwrA .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC6ExzgwrA * {
    text-align: left;
  }
}
.cid-tC6ExzgwrA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC6ExzgwrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC6ExzgwrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC6ExzgwrA .card-wrapper .card-box .mbr-text,
.cid-tC6ExzgwrA .mbr-section-btn {
  color: #353535;
}
.cid-tD1keRsL4t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD1keRsL4t blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tD1kgYvPRJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD1kgYvPRJ .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC6ExAde7V {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExAde7V .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD1iPiXYms {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tD1iPiXYms .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD1iPiXYms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD1iPiXYms .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tD1iPiXYms .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tD1iPiXYms .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tD1jnFguVN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD1jnFguVN .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD1jQZt44A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD1jQZt44A blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tD1k42ZEiS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD1k42ZEiS .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC6ExAs72B {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExAs72B .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC6ExAHolT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExAHolT .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC6ExBb7IL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExBb7IL .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyY7bgG9c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyY7bgG9c .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyY7bgG9c .container {
    max-width: 1000px;
  }
}
.cid-tCyY7bgG9c .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tC6ExBwkvC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExBwkvC .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyYsY5Q98 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyYsY5Q98 .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyYsY5Q98 .container {
    max-width: 1000px;
  }
}
.cid-tCyYsY5Q98 .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tC6ExCNY6h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExCNY6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC6ExCNY6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC6ExCNY6h .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC6ExCNY6h .panel-group {
  border: none;
}
.cid-tC6ExCNY6h .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC6ExCNY6h .panel-body,
.cid-tC6ExCNY6h .card-header {
  padding: 1rem 0;
}
.cid-tC6ExCNY6h .panel-title-edit {
  color: #000000;
}
.cid-tC6ExCNY6h .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC6ExDewJ6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC6ExDewJ6 img {
  width: 120px;
  margin: auto;
}
.cid-tC6ExDewJ6 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC6ExDewJ6 .card {
    max-width: 12.5%;
  }
}
.cid-tCZUYoDY9g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC8VuXuSSH {
  background-color: #ffffff;
}
.cid-tC8VuXuSSH .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC8VuXuSSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8VuXuSSH .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC8VuXuSSH .mbr-section-title {
  text-align: center;
}
.cid-tC8VuXuSSH .mbr-text,
.cid-tC8VuXuSSH .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC8VuXuSSH .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC8VuXuSSH .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC8VuXuSSH .mbr-section-title,
.cid-tC8VuXuSSH .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC8VuXuSSH .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC8VuXKXCq {
  z-index: 1000;
  width: 100%;
}
.cid-tC8VuXKXCq nav.navbar {
  position: fixed;
}
.cid-tC8VuXKXCq .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-tC8VuXKXCq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC8VuXKXCq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC8VuXKXCq .dropdown-item:hover,
.cid-tC8VuXKXCq .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC8VuXKXCq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC8VuXKXCq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC8VuXKXCq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC8VuXKXCq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC8VuXKXCq .nav-link {
  position: relative;
}
.cid-tC8VuXKXCq .container {
  display: flex;
  margin: auto;
}
.cid-tC8VuXKXCq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC8VuXKXCq .dropdown-menu,
.cid-tC8VuXKXCq .navbar.opened {
  background: #fafafa !important;
}
.cid-tC8VuXKXCq .nav-item:focus,
.cid-tC8VuXKXCq .nav-link:focus {
  outline: none;
}
.cid-tC8VuXKXCq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC8VuXKXCq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC8VuXKXCq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC8VuXKXCq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC8VuXKXCq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC8VuXKXCq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC8VuXKXCq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC8VuXKXCq .navbar.opened {
  transition: all 0.3s;
}
.cid-tC8VuXKXCq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC8VuXKXCq .navbar .navbar-logo img {
  width: auto;
}
.cid-tC8VuXKXCq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC8VuXKXCq .navbar.collapsed {
  justify-content: center;
}
.cid-tC8VuXKXCq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC8VuXKXCq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC8VuXKXCq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC8VuXKXCq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC8VuXKXCq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC8VuXKXCq .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-tC8VuXKXCq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC8VuXKXCq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC8VuXKXCq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC8VuXKXCq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC8VuXKXCq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC8VuXKXCq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC8VuXKXCq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC8VuXKXCq .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-tC8VuXKXCq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC8VuXKXCq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC8VuXKXCq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC8VuXKXCq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC8VuXKXCq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC8VuXKXCq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC8VuXKXCq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC8VuXKXCq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC8VuXKXCq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC8VuXKXCq .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-tC8VuXKXCq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC8VuXKXCq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC8VuXKXCq .dropdown-item.active,
.cid-tC8VuXKXCq .dropdown-item:active {
  background-color: transparent;
}
.cid-tC8VuXKXCq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC8VuXKXCq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC8VuXKXCq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC8VuXKXCq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC8VuXKXCq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC8VuXKXCq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC8VuXKXCq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC8VuXKXCq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC8VuXKXCq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC8VuXKXCq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC8VuXKXCq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC8VuXKXCq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC8VuXKXCq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC8VuXKXCq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC8VuXKXCq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC8VuXKXCq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC8VuXKXCq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC8VuXKXCq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC8VuXKXCq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC8VuXKXCq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC8VuXKXCq .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-tC8VuXKXCq .navbar {
    height: 70px;
  }
  .cid-tC8VuXKXCq .navbar.opened {
    height: auto;
  }
  .cid-tC8VuXKXCq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC8VuY6UZh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC8VuYl1mS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tC8VuYl1mS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8VuYl1mS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8VuYl1mS .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tC8VuYl1mS .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tC8VuYl1mS .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tC8VuYl1mS .card-wrapper {
    padding: 4rem;
  }
}
.cid-tC8VuYl1mS .mbr-text,
.cid-tC8VuYl1mS .mbr-section-btn {
  color: #ffffff;
}
.cid-tC8VuYl1mS .card-title,
.cid-tC8VuYl1mS .card-box {
  text-align: left;
}
.cid-tC8VuYC6kL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC8VuYC6kL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8VuYC6kL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8VuYTcur {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC8VuYTcur {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC8VuYTcur {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC8VuYTcur .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC8VuYTcur .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC8VuYTcur .row {
    padding: 0;
  }
}
.cid-tC8VuYTcur .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC8VuYTcur .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC8VuYTcur .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC8VuYTcur .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC8VuZdVER {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC8VuZdVER img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC8VuZdVER .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8VuZdVER .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC8VuZdVER .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC8VuZdVER .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC8VuZdVER .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC8VuZdVER * {
    text-align: left;
  }
}
.cid-tC8VuZdVER a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC8VuZdVER .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8VuZdVER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8VuZdVER .card-wrapper .card-box .mbr-text,
.cid-tC8VuZdVER .mbr-section-btn {
  color: #353535;
}
.cid-tCz8uWuDRx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCz8uWuDRx blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCz88s7Vg3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCz88s7Vg3 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC8Vv2DE2Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8Vv2DE2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8Vv2DE2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8Vv2DE2Q .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC8Vv2DE2Q .panel-group {
  border: none;
}
.cid-tC8Vv2DE2Q .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC8Vv2DE2Q .panel-body,
.cid-tC8Vv2DE2Q .card-header {
  padding: 1rem 0;
}
.cid-tC8Vv2DE2Q .panel-title-edit {
  color: #000000;
}
.cid-tC8Vv2DE2Q .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC8Vv31DeJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8Vv31DeJ img {
  width: 120px;
  margin: auto;
}
.cid-tC8Vv31DeJ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC8Vv31DeJ .card {
    max-width: 12.5%;
  }
}
.cid-tCZVcPkGy3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC8WTQTXgH {
  background-color: #ffffff;
}
.cid-tC8WTQTXgH .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC8WTQTXgH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8WTQTXgH .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC8WTQTXgH .mbr-section-title {
  text-align: center;
}
.cid-tC8WTQTXgH .mbr-text,
.cid-tC8WTQTXgH .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC8WTQTXgH .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC8WTQTXgH .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC8WTQTXgH .mbr-section-title,
.cid-tC8WTQTXgH .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC8WTQTXgH .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC8WTRjeGu {
  z-index: 1000;
  width: 100%;
}
.cid-tC8WTRjeGu nav.navbar {
  position: fixed;
}
.cid-tC8WTRjeGu .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-tC8WTRjeGu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC8WTRjeGu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC8WTRjeGu .dropdown-item:hover,
.cid-tC8WTRjeGu .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC8WTRjeGu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC8WTRjeGu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC8WTRjeGu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC8WTRjeGu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC8WTRjeGu .nav-link {
  position: relative;
}
.cid-tC8WTRjeGu .container {
  display: flex;
  margin: auto;
}
.cid-tC8WTRjeGu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC8WTRjeGu .dropdown-menu,
.cid-tC8WTRjeGu .navbar.opened {
  background: #fafafa !important;
}
.cid-tC8WTRjeGu .nav-item:focus,
.cid-tC8WTRjeGu .nav-link:focus {
  outline: none;
}
.cid-tC8WTRjeGu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC8WTRjeGu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC8WTRjeGu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC8WTRjeGu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC8WTRjeGu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC8WTRjeGu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC8WTRjeGu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC8WTRjeGu .navbar.opened {
  transition: all 0.3s;
}
.cid-tC8WTRjeGu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC8WTRjeGu .navbar .navbar-logo img {
  width: auto;
}
.cid-tC8WTRjeGu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC8WTRjeGu .navbar.collapsed {
  justify-content: center;
}
.cid-tC8WTRjeGu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC8WTRjeGu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC8WTRjeGu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC8WTRjeGu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC8WTRjeGu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC8WTRjeGu .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-tC8WTRjeGu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC8WTRjeGu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC8WTRjeGu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC8WTRjeGu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC8WTRjeGu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC8WTRjeGu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC8WTRjeGu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC8WTRjeGu .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-tC8WTRjeGu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC8WTRjeGu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC8WTRjeGu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC8WTRjeGu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC8WTRjeGu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC8WTRjeGu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC8WTRjeGu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC8WTRjeGu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC8WTRjeGu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC8WTRjeGu .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-tC8WTRjeGu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC8WTRjeGu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC8WTRjeGu .dropdown-item.active,
.cid-tC8WTRjeGu .dropdown-item:active {
  background-color: transparent;
}
.cid-tC8WTRjeGu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC8WTRjeGu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC8WTRjeGu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC8WTRjeGu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC8WTRjeGu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC8WTRjeGu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC8WTRjeGu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC8WTRjeGu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC8WTRjeGu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC8WTRjeGu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC8WTRjeGu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC8WTRjeGu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC8WTRjeGu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC8WTRjeGu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC8WTRjeGu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC8WTRjeGu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC8WTRjeGu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC8WTRjeGu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC8WTRjeGu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC8WTRjeGu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC8WTRjeGu .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-tC8WTRjeGu .navbar {
    height: 70px;
  }
  .cid-tC8WTRjeGu .navbar.opened {
    height: auto;
  }
  .cid-tC8WTRjeGu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC8WTRJ2oS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC8WTRJ2oS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8WTRJ2oS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8WTSr5Jc {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC8WTSr5Jc {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC8WTSr5Jc {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC8WTSr5Jc .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC8WTSr5Jc .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC8WTSr5Jc .row {
    padding: 0;
  }
}
.cid-tC8WTSr5Jc .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC8WTSr5Jc .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC8WTSr5Jc .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC8WTSr5Jc .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC8WTSWc3p {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC8WTSWc3p img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC8WTSWc3p .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC8WTSWc3p .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC8WTSWc3p .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC8WTSWc3p * {
    text-align: left;
  }
}
.cid-tC8WTSWc3p a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC8WTSWc3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8WTSWc3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8WTSWc3p .card-wrapper .card-box .mbr-text,
.cid-tC8WTSWc3p .mbr-section-btn {
  color: #353535;
}
.cid-tC8WTUu7Qe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8WTUu7Qe .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC8WTUu7Qe .mbr-section-title {
  color: #2f5bae;
}
.cid-tCyQCakcA6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyQCakcA6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCyQCakcA6 .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-tCyQCakcA6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCyQCakcA6 .row {
  flex-direction: row-reverse;
}
.cid-tCyQCakcA6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCyQCakcA6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tC8YqAKDV6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8YqAKDV6 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC8YqAKDV6 .mbr-section-title {
  color: #2f5bae;
}
.cid-tCyRkUKjvA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCyRkUKjvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCyRkUKjvA .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-tCyRkUKjvA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCyRkUKjvA .row {
  flex-direction: row-reverse;
}
.cid-tCyRkUKjvA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCyRkUKjvA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tC8Yy3H4TF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8Yy3H4TF .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC8Yy3H4TF .mbr-section-title {
  color: #2f5bae;
}
.cid-tD1ZGkviGo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD1ZGkviGo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD1ZGkviGo .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-tD1ZGkviGo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD1ZGkviGo .row {
  flex-direction: row-reverse;
}
.cid-tD1ZGkviGo img {
  width: 100%;
}
.cid-tD1Y6LDWQC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD1Y6LDWQC .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC8WTXbrdw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8WTXbrdw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC8WTXbrdw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC8WTXbrdw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC8WTXbrdw .panel-group {
  border: none;
}
.cid-tC8WTXbrdw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC8WTXbrdw .panel-body,
.cid-tC8WTXbrdw .card-header {
  padding: 1rem 0;
}
.cid-tC8WTXbrdw .panel-title-edit {
  color: #000000;
}
.cid-tC8WTXbrdw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC8WTXAEbo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC8WTXAEbo img {
  width: 120px;
  margin: auto;
}
.cid-tC8WTXAEbo .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC8WTXAEbo .card {
    max-width: 12.5%;
  }
}
.cid-tCZVjPu4TN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC90B33qzr {
  background-color: #ffffff;
}
.cid-tC90B33qzr .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC90B33qzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC90B33qzr .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC90B33qzr .mbr-section-title {
  text-align: center;
}
.cid-tC90B33qzr .mbr-text,
.cid-tC90B33qzr .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC90B33qzr .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC90B33qzr .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC90B33qzr .mbr-section-title,
.cid-tC90B33qzr .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC90B33qzr .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC90B3kUUi {
  z-index: 1000;
  width: 100%;
}
.cid-tC90B3kUUi nav.navbar {
  position: fixed;
}
.cid-tC90B3kUUi .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-tC90B3kUUi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC90B3kUUi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC90B3kUUi .dropdown-item:hover,
.cid-tC90B3kUUi .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC90B3kUUi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC90B3kUUi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC90B3kUUi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC90B3kUUi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC90B3kUUi .nav-link {
  position: relative;
}
.cid-tC90B3kUUi .container {
  display: flex;
  margin: auto;
}
.cid-tC90B3kUUi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC90B3kUUi .dropdown-menu,
.cid-tC90B3kUUi .navbar.opened {
  background: #fafafa !important;
}
.cid-tC90B3kUUi .nav-item:focus,
.cid-tC90B3kUUi .nav-link:focus {
  outline: none;
}
.cid-tC90B3kUUi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC90B3kUUi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC90B3kUUi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC90B3kUUi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC90B3kUUi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC90B3kUUi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC90B3kUUi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC90B3kUUi .navbar.opened {
  transition: all 0.3s;
}
.cid-tC90B3kUUi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC90B3kUUi .navbar .navbar-logo img {
  width: auto;
}
.cid-tC90B3kUUi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC90B3kUUi .navbar.collapsed {
  justify-content: center;
}
.cid-tC90B3kUUi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC90B3kUUi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC90B3kUUi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC90B3kUUi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC90B3kUUi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC90B3kUUi .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-tC90B3kUUi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC90B3kUUi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC90B3kUUi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC90B3kUUi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC90B3kUUi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC90B3kUUi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC90B3kUUi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC90B3kUUi .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-tC90B3kUUi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC90B3kUUi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC90B3kUUi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC90B3kUUi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC90B3kUUi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC90B3kUUi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC90B3kUUi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC90B3kUUi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC90B3kUUi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC90B3kUUi .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-tC90B3kUUi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC90B3kUUi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC90B3kUUi .dropdown-item.active,
.cid-tC90B3kUUi .dropdown-item:active {
  background-color: transparent;
}
.cid-tC90B3kUUi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC90B3kUUi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC90B3kUUi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC90B3kUUi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC90B3kUUi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC90B3kUUi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC90B3kUUi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC90B3kUUi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC90B3kUUi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC90B3kUUi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC90B3kUUi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC90B3kUUi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC90B3kUUi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC90B3kUUi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC90B3kUUi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC90B3kUUi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC90B3kUUi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC90B3kUUi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC90B3kUUi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC90B3kUUi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC90B3kUUi .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-tC90B3kUUi .navbar {
    height: 70px;
  }
  .cid-tC90B3kUUi .navbar.opened {
    height: auto;
  }
  .cid-tC90B3kUUi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC90B3FMVo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC90B3FMVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC90B3FMVo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC90B3VLyD {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC90B3VLyD {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC90B3VLyD {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC90B3VLyD .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC90B3VLyD .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC90B3VLyD .row {
    padding: 0;
  }
}
.cid-tC90B3VLyD .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC90B3VLyD .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC90B3VLyD .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC90B3VLyD .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC90B4ep8t {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC90B4ep8t img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC90B4ep8t .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC90B4ep8t .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC90B4ep8t .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC90B4ep8t .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC90B4ep8t .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC90B4ep8t * {
    text-align: left;
  }
}
.cid-tC90B4ep8t a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC90B4ep8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC90B4ep8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC90B4ep8t .card-wrapper .card-box .mbr-text,
.cid-tC90B4ep8t .mbr-section-btn {
  color: #353535;
}
.cid-tC91PJURDw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC91PJURDw .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC923nrOiE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC923nrOiE .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC929etQA3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC929etQA3 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC92b51Be9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92b51Be9 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC92aewQbw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92aewQbw .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyMYPTdFW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyMYPTdFW .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyMYPTdFW .container {
    max-width: 1000px;
  }
}
.cid-tCyMYPTdFW .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCyNnEn35q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyNnEn35q .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyNnEn35q .container {
    max-width: 1000px;
  }
}
.cid-tCyNnEn35q .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tC90B6fT41 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC90B6fT41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC90B6fT41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC90B6fT41 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC90B6fT41 .panel-group {
  border: none;
}
.cid-tC90B6fT41 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC90B6fT41 .panel-body,
.cid-tC90B6fT41 .card-header {
  padding: 1rem 0;
}
.cid-tC90B6fT41 .panel-title-edit {
  color: #000000;
}
.cid-tC90B6fT41 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC90B6BqNv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC90B6BqNv img {
  width: 120px;
  margin: auto;
}
.cid-tC90B6BqNv .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC90B6BqNv .card {
    max-width: 12.5%;
  }
}
.cid-tCZVoJQMtl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC92K8sPHW {
  background-color: #ffffff;
}
.cid-tC92K8sPHW .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC92K8sPHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC92K8sPHW .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC92K8sPHW .mbr-section-title {
  text-align: center;
}
.cid-tC92K8sPHW .mbr-text,
.cid-tC92K8sPHW .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC92K8sPHW .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC92K8sPHW .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC92K8sPHW .mbr-section-title,
.cid-tC92K8sPHW .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC92K8sPHW .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC92K8IzSs {
  z-index: 1000;
  width: 100%;
}
.cid-tC92K8IzSs nav.navbar {
  position: fixed;
}
.cid-tC92K8IzSs .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-tC92K8IzSs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC92K8IzSs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC92K8IzSs .dropdown-item:hover,
.cid-tC92K8IzSs .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC92K8IzSs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC92K8IzSs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC92K8IzSs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC92K8IzSs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC92K8IzSs .nav-link {
  position: relative;
}
.cid-tC92K8IzSs .container {
  display: flex;
  margin: auto;
}
.cid-tC92K8IzSs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC92K8IzSs .dropdown-menu,
.cid-tC92K8IzSs .navbar.opened {
  background: #fafafa !important;
}
.cid-tC92K8IzSs .nav-item:focus,
.cid-tC92K8IzSs .nav-link:focus {
  outline: none;
}
.cid-tC92K8IzSs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC92K8IzSs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC92K8IzSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC92K8IzSs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC92K8IzSs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC92K8IzSs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC92K8IzSs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC92K8IzSs .navbar.opened {
  transition: all 0.3s;
}
.cid-tC92K8IzSs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC92K8IzSs .navbar .navbar-logo img {
  width: auto;
}
.cid-tC92K8IzSs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC92K8IzSs .navbar.collapsed {
  justify-content: center;
}
.cid-tC92K8IzSs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC92K8IzSs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC92K8IzSs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC92K8IzSs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC92K8IzSs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC92K8IzSs .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-tC92K8IzSs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC92K8IzSs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC92K8IzSs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC92K8IzSs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC92K8IzSs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC92K8IzSs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC92K8IzSs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC92K8IzSs .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-tC92K8IzSs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC92K8IzSs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC92K8IzSs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC92K8IzSs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC92K8IzSs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC92K8IzSs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC92K8IzSs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC92K8IzSs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC92K8IzSs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC92K8IzSs .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-tC92K8IzSs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC92K8IzSs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC92K8IzSs .dropdown-item.active,
.cid-tC92K8IzSs .dropdown-item:active {
  background-color: transparent;
}
.cid-tC92K8IzSs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC92K8IzSs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC92K8IzSs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC92K8IzSs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC92K8IzSs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC92K8IzSs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC92K8IzSs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC92K8IzSs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC92K8IzSs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC92K8IzSs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC92K8IzSs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC92K8IzSs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC92K8IzSs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC92K8IzSs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC92K8IzSs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC92K8IzSs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC92K8IzSs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC92K8IzSs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC92K8IzSs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC92K8IzSs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC92K8IzSs .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-tC92K8IzSs .navbar {
    height: 70px;
  }
  .cid-tC92K8IzSs .navbar.opened {
    height: auto;
  }
  .cid-tC92K8IzSs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC92K931Gi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC92K931Gi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC92K931Gi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC92K9nBsz {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC92K9nBsz {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC92K9nBsz {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC92K9nBsz .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC92K9nBsz .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC92K9nBsz .row {
    padding: 0;
  }
}
.cid-tC92K9nBsz .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC92K9nBsz .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC92K9nBsz .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC92K9nBsz .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC92K9DPid {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC92K9DPid img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC92K9DPid .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC92K9DPid .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC92K9DPid .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC92K9DPid .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC92K9DPid .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC92K9DPid .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC92K9DPid .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC92K9DPid * {
    text-align: left;
  }
}
.cid-tC92K9DPid a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC92K9DPid .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC92K9DPid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC92K9DPid .card-wrapper .card-box .mbr-text,
.cid-tC92K9DPid .mbr-section-btn {
  color: #353535;
}
.cid-tC92Kaov4U {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92Kaov4U .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD24ncqutF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tD24ncqutF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD24ncqutF .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-tD24ncqutF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD24ncqutF .row {
  flex-direction: row-reverse;
}
.cid-tD24ncqutF img {
  width: 100%;
}
.cid-tD24qmWO1M {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD24qmWO1M .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC92KaEV3G {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92KaEV3G .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC92KaUsQG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92KaUsQG .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC92KbvoyV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92KbvoyV .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC93S8s0wk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC93S8s0wk .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC92KbLeYW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92KbLeYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC92KbLeYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC92KbLeYW .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC92KbLeYW .panel-group {
  border: none;
}
.cid-tC92KbLeYW .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC92KbLeYW .panel-body,
.cid-tC92KbLeYW .card-header {
  padding: 1rem 0;
}
.cid-tC92KbLeYW .panel-title-edit {
  color: #000000;
}
.cid-tC92KbLeYW .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC92Kc8jIq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC92Kc8jIq img {
  width: 120px;
  margin: auto;
}
.cid-tC92Kc8jIq .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC92Kc8jIq .card {
    max-width: 12.5%;
  }
}
.cid-tCZVwmfcxa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC94SJmYGL {
  background-color: #ffffff;
}
.cid-tC94SJmYGL .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC94SJmYGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC94SJmYGL .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC94SJmYGL .mbr-section-title {
  text-align: center;
}
.cid-tC94SJmYGL .mbr-text,
.cid-tC94SJmYGL .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC94SJmYGL .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC94SJmYGL .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC94SJmYGL .mbr-section-title,
.cid-tC94SJmYGL .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC94SJmYGL .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC94SJCub2 {
  z-index: 1000;
  width: 100%;
}
.cid-tC94SJCub2 nav.navbar {
  position: fixed;
}
.cid-tC94SJCub2 .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-tC94SJCub2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC94SJCub2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC94SJCub2 .dropdown-item:hover,
.cid-tC94SJCub2 .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC94SJCub2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC94SJCub2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC94SJCub2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC94SJCub2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC94SJCub2 .nav-link {
  position: relative;
}
.cid-tC94SJCub2 .container {
  display: flex;
  margin: auto;
}
.cid-tC94SJCub2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC94SJCub2 .dropdown-menu,
.cid-tC94SJCub2 .navbar.opened {
  background: #fafafa !important;
}
.cid-tC94SJCub2 .nav-item:focus,
.cid-tC94SJCub2 .nav-link:focus {
  outline: none;
}
.cid-tC94SJCub2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC94SJCub2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC94SJCub2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC94SJCub2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC94SJCub2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC94SJCub2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC94SJCub2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC94SJCub2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tC94SJCub2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC94SJCub2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tC94SJCub2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC94SJCub2 .navbar.collapsed {
  justify-content: center;
}
.cid-tC94SJCub2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC94SJCub2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC94SJCub2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC94SJCub2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC94SJCub2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC94SJCub2 .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-tC94SJCub2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC94SJCub2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC94SJCub2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC94SJCub2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC94SJCub2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC94SJCub2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC94SJCub2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC94SJCub2 .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-tC94SJCub2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC94SJCub2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC94SJCub2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC94SJCub2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC94SJCub2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC94SJCub2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC94SJCub2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC94SJCub2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC94SJCub2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC94SJCub2 .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-tC94SJCub2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC94SJCub2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC94SJCub2 .dropdown-item.active,
.cid-tC94SJCub2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tC94SJCub2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC94SJCub2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC94SJCub2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC94SJCub2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC94SJCub2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC94SJCub2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC94SJCub2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC94SJCub2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC94SJCub2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC94SJCub2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC94SJCub2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC94SJCub2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC94SJCub2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC94SJCub2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC94SJCub2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC94SJCub2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC94SJCub2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC94SJCub2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC94SJCub2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC94SJCub2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC94SJCub2 .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-tC94SJCub2 .navbar {
    height: 70px;
  }
  .cid-tC94SJCub2 .navbar.opened {
    height: auto;
  }
  .cid-tC94SJCub2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC94SK15Do {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC94SKgEEx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tC94SKgEEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC94SKgEEx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC94SKgEEx .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tC94SKgEEx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tC94SKgEEx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tC94SKgEEx .card-wrapper {
    padding: 4rem;
  }
}
.cid-tC94SKgEEx .mbr-text,
.cid-tC94SKgEEx .mbr-section-btn {
  color: #ffffff;
}
.cid-tC94SKgEEx .card-title,
.cid-tC94SKgEEx .card-box {
  text-align: left;
}
.cid-tC94SKx45S {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC94SKx45S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC94SKx45S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC94SKNN63 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC94SKNN63 {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC94SKNN63 {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC94SKNN63 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC94SKNN63 .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC94SKNN63 .row {
    padding: 0;
  }
}
.cid-tC94SKNN63 .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC94SKNN63 .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC94SKNN63 .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC94SKNN63 .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC94SL4kpC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC94SL4kpC img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC94SL4kpC .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC94SL4kpC .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC94SL4kpC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC94SL4kpC .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC94SL4kpC .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC94SL4kpC * {
    text-align: left;
  }
}
.cid-tC94SL4kpC a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC94SL4kpC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC94SL4kpC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC94SL4kpC .card-wrapper .card-box .mbr-text,
.cid-tC94SL4kpC .mbr-section-btn {
  color: #353535;
}
.cid-tC94SLUdP6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC94SLUdP6 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCywDAANGT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCywDAANGT blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCyw1P1uFG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyw1P1uFG .mbr-section-subtitle {
  color: #2f5bae;
}
#custom-html-h7 {
  /* Type valid CSS here */
}
#custom-html-h7 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-h7 p {
  font-size: 60px;
  color: #777;
}
.cid-tD5sqRKKkN {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD5sqRKKkN .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC94SMqtv5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC94SMqtv5 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD5tXrDFAy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD5tXrDFAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD5tXrDFAy .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-tD5tXrDFAy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD5tXrDFAy .row {
  flex-direction: row-reverse;
}
.cid-tD5tXrDFAy img {
  width: 100%;
}
.cid-tD5uAJzfGi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD5uAJzfGi .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD5uigRlGn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tD5uigRlGn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD5uigRlGn .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-tD5uigRlGn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD5uigRlGn .row {
  flex-direction: row-reverse;
}
.cid-tD5uigRlGn img {
  width: 100%;
}
.cid-tC94SO05HJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC94SO05HJ .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC94SO05HJ .mbr-text {
  color: #2f5bae;
}
.cid-tCytV11f8s {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCytV11f8s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCytV11f8s .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-tCytV11f8s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCytV11f8s .row {
  flex-direction: row-reverse;
}
.cid-tCytV11f8s img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCytV11f8s .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCyuwQu4kN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyuwQu4kN .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC94SOvkHB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC94SOvkHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC94SOvkHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC94SOvkHB .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC94SOvkHB .panel-group {
  border: none;
}
.cid-tC94SOvkHB .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC94SOvkHB .panel-body,
.cid-tC94SOvkHB .card-header {
  padding: 1rem 0;
}
.cid-tC94SOvkHB .panel-title-edit {
  color: #000000;
}
.cid-tC94SOvkHB .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC94SOWqX5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC94SOWqX5 img {
  width: 120px;
  margin: auto;
}
.cid-tC94SOWqX5 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC94SOWqX5 .card {
    max-width: 12.5%;
  }
}
.cid-tCZVJ4m8L4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC98eH7BCm {
  background-color: #ffffff;
}
.cid-tC98eH7BCm .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC98eH7BCm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC98eH7BCm .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC98eH7BCm .mbr-section-title {
  text-align: center;
}
.cid-tC98eH7BCm .mbr-text,
.cid-tC98eH7BCm .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC98eH7BCm .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC98eH7BCm .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC98eH7BCm .mbr-section-title,
.cid-tC98eH7BCm .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC98eH7BCm .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC98eHtatR {
  z-index: 1000;
  width: 100%;
}
.cid-tC98eHtatR nav.navbar {
  position: fixed;
}
.cid-tC98eHtatR .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-tC98eHtatR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC98eHtatR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC98eHtatR .dropdown-item:hover,
.cid-tC98eHtatR .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC98eHtatR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC98eHtatR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC98eHtatR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC98eHtatR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC98eHtatR .nav-link {
  position: relative;
}
.cid-tC98eHtatR .container {
  display: flex;
  margin: auto;
}
.cid-tC98eHtatR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC98eHtatR .dropdown-menu,
.cid-tC98eHtatR .navbar.opened {
  background: #fafafa !important;
}
.cid-tC98eHtatR .nav-item:focus,
.cid-tC98eHtatR .nav-link:focus {
  outline: none;
}
.cid-tC98eHtatR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC98eHtatR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC98eHtatR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC98eHtatR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC98eHtatR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC98eHtatR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC98eHtatR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC98eHtatR .navbar.opened {
  transition: all 0.3s;
}
.cid-tC98eHtatR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC98eHtatR .navbar .navbar-logo img {
  width: auto;
}
.cid-tC98eHtatR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC98eHtatR .navbar.collapsed {
  justify-content: center;
}
.cid-tC98eHtatR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC98eHtatR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC98eHtatR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC98eHtatR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC98eHtatR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC98eHtatR .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-tC98eHtatR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC98eHtatR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC98eHtatR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC98eHtatR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC98eHtatR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC98eHtatR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC98eHtatR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC98eHtatR .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-tC98eHtatR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC98eHtatR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC98eHtatR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC98eHtatR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC98eHtatR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC98eHtatR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC98eHtatR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC98eHtatR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC98eHtatR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC98eHtatR .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-tC98eHtatR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC98eHtatR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC98eHtatR .dropdown-item.active,
.cid-tC98eHtatR .dropdown-item:active {
  background-color: transparent;
}
.cid-tC98eHtatR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC98eHtatR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC98eHtatR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC98eHtatR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC98eHtatR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC98eHtatR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC98eHtatR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC98eHtatR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC98eHtatR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC98eHtatR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC98eHtatR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC98eHtatR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC98eHtatR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC98eHtatR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC98eHtatR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC98eHtatR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC98eHtatR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC98eHtatR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC98eHtatR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC98eHtatR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC98eHtatR .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-tC98eHtatR .navbar {
    height: 70px;
  }
  .cid-tC98eHtatR .navbar.opened {
    height: auto;
  }
  .cid-tC98eHtatR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC98eISyp1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC98eISyp1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC98eISyp1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC98eJ9SPl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC98eJ9SPl {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC98eJ9SPl {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC98eJ9SPl .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC98eJ9SPl .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC98eJ9SPl .row {
    padding: 0;
  }
}
.cid-tC98eJ9SPl .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC98eJ9SPl .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC98eJ9SPl .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC98eJ9SPl .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC98eJpNyv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC98eJpNyv img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC98eJpNyv .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC98eJpNyv .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC98eJpNyv .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC98eJpNyv .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC98eJpNyv .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC98eJpNyv * {
    text-align: left;
  }
}
.cid-tC98eJpNyv a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC98eJpNyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC98eJpNyv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC98eJpNyv .card-wrapper .card-box .mbr-text,
.cid-tC98eJpNyv .mbr-section-btn {
  color: #353535;
}
.cid-tC98eK7Go8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC98eK7Go8 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD5xesvrax {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD5xesvrax blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tD5xg1YytB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD5xg1YytB .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD5xU5TtNh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD5xU5TtNh .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tD5xU5TtNh .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tD5xU5TtNh .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tD5xU5TtNh .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: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD5xXtsSL3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD5xXtsSL3 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD5yt3Lgre {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD5yt3Lgre .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tD5yt3Lgre .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tD5yt3Lgre .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tD5yt3Lgre .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: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD5ytRaXK0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD5ytRaXK0 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC98eKnT9v {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC98eKnT9v .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyL3Ljyat {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyL3Ljyat blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCyKUFgmWF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyKUFgmWF .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyKBqiDut {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCyKBqiDut .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCyKBqiDut .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-tCyKBqiDut .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCyKBqiDut .row {
  flex-direction: row-reverse;
}
.cid-tCyKBqiDut img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCyKBqiDut .text-wrapper {
    padding: 2rem;
  }
}
.cid-tC98eKDx0Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC98eKDx0Z .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tD5ALftWv4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD5ALftWv4 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tD5ALftWv4 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tD5ALftWv4 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tD5ALftWv4 .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: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD5ALZGcS3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD5ALZGcS3 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyIaKmCcX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyIaKmCcX blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCyH3GSuBL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyH3GSuBL .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC98eKXclx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC98eKXclx .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyG3CiH79 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyG3CiH79 .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyG3CiH79 .container {
    max-width: 1000px;
  }
}
.cid-tCyG3CiH79 .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tC98eLcAEM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC98eLcAEM .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC98eLHNfX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC98eLHNfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC98eLHNfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC98eLHNfX .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC98eLHNfX .panel-group {
  border: none;
}
.cid-tC98eLHNfX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC98eLHNfX .panel-body,
.cid-tC98eLHNfX .card-header {
  padding: 1rem 0;
}
.cid-tC98eLHNfX .panel-title-edit {
  color: #000000;
}
.cid-tC98eLHNfX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC98eM4SeT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC98eM4SeT img {
  width: 120px;
  margin: auto;
}
.cid-tC98eM4SeT .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC98eM4SeT .card {
    max-width: 12.5%;
  }
}
.cid-tCZVNMFb9r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC99HVT8ce {
  background-color: #ffffff;
}
.cid-tC99HVT8ce .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC99HVT8ce .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99HVT8ce .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC99HVT8ce .mbr-section-title {
  text-align: center;
}
.cid-tC99HVT8ce .mbr-text,
.cid-tC99HVT8ce .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC99HVT8ce .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC99HVT8ce .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC99HVT8ce .mbr-section-title,
.cid-tC99HVT8ce .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC99HVT8ce .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC99HWox5J {
  z-index: 1000;
  width: 100%;
}
.cid-tC99HWox5J nav.navbar {
  position: fixed;
}
.cid-tC99HWox5J .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-tC99HWox5J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC99HWox5J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC99HWox5J .dropdown-item:hover,
.cid-tC99HWox5J .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC99HWox5J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC99HWox5J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC99HWox5J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC99HWox5J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC99HWox5J .nav-link {
  position: relative;
}
.cid-tC99HWox5J .container {
  display: flex;
  margin: auto;
}
.cid-tC99HWox5J .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC99HWox5J .dropdown-menu,
.cid-tC99HWox5J .navbar.opened {
  background: #fafafa !important;
}
.cid-tC99HWox5J .nav-item:focus,
.cid-tC99HWox5J .nav-link:focus {
  outline: none;
}
.cid-tC99HWox5J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC99HWox5J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC99HWox5J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC99HWox5J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC99HWox5J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC99HWox5J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC99HWox5J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC99HWox5J .navbar.opened {
  transition: all 0.3s;
}
.cid-tC99HWox5J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC99HWox5J .navbar .navbar-logo img {
  width: auto;
}
.cid-tC99HWox5J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC99HWox5J .navbar.collapsed {
  justify-content: center;
}
.cid-tC99HWox5J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC99HWox5J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC99HWox5J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC99HWox5J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC99HWox5J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC99HWox5J .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-tC99HWox5J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC99HWox5J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC99HWox5J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC99HWox5J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC99HWox5J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC99HWox5J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC99HWox5J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC99HWox5J .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-tC99HWox5J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC99HWox5J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC99HWox5J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC99HWox5J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC99HWox5J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC99HWox5J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC99HWox5J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC99HWox5J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC99HWox5J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC99HWox5J .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-tC99HWox5J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC99HWox5J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC99HWox5J .dropdown-item.active,
.cid-tC99HWox5J .dropdown-item:active {
  background-color: transparent;
}
.cid-tC99HWox5J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC99HWox5J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC99HWox5J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC99HWox5J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC99HWox5J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC99HWox5J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC99HWox5J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC99HWox5J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC99HWox5J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC99HWox5J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC99HWox5J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC99HWox5J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC99HWox5J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC99HWox5J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC99HWox5J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC99HWox5J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC99HWox5J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC99HWox5J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC99HWox5J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC99HWox5J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC99HWox5J .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-tC99HWox5J .navbar {
    height: 70px;
  }
  .cid-tC99HWox5J .navbar.opened {
    height: auto;
  }
  .cid-tC99HWox5J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC99HX3m1M {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC99HX3m1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99HX3m1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC99HXvSsF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC99HXvSsF {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC99HXvSsF {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC99HXvSsF .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC99HXvSsF .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC99HXvSsF .row {
    padding: 0;
  }
}
.cid-tC99HXvSsF .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC99HXvSsF .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC99HXvSsF .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC99HXvSsF .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC99HXUvmC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC99HXUvmC img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC99HXUvmC .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99HXUvmC .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC99HXUvmC .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC99HXUvmC .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC99HXUvmC .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC99HXUvmC * {
    text-align: left;
  }
}
.cid-tC99HXUvmC a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC99HXUvmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99HXUvmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC99HXUvmC .card-wrapper .card-box .mbr-text,
.cid-tC99HXUvmC .mbr-section-btn {
  color: #353535;
}
.cid-tCyD4AcIx6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyD4AcIx6 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCyD5lL9Om {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyD5lL9Om .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyDhw2OSR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyDhw2OSR blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tCyDscyW2U {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyDscyW2U .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99HZ2ckW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99HZ2ckW .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99HZp98x {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99HZp98x .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99HZKJMn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC99HZKJMn .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99HZKJMn .mbr-text {
  color: #2f5bae;
}
.cid-tCyEfNTQaq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCyEfNTQaq .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCyEfNTQaq .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCyEfNTQaq .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCyEfNTQaq .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCyEfNTQaq .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCyEfNTQaq .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCyEfNTQaq .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCyEfNTQaq .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCyEfNTQaq .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCyEfNTQaq .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCyEfNTQaq .mbr-section-title {
  color: #1E1C21;
}
.cid-tCyEfNTQaq .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCyEfNTQaq .mbr-text {
  color: #1E1C21;
}
.cid-tCyESqAa5Q {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyESqAa5Q .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99I1LzwE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99I1LzwE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99I1LzwE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC99I1LzwE .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC99I1LzwE .panel-group {
  border: none;
}
.cid-tC99I1LzwE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC99I1LzwE .panel-body,
.cid-tC99I1LzwE .card-header {
  padding: 1rem 0;
}
.cid-tC99I1LzwE .panel-title-edit {
  color: #000000;
}
.cid-tC99I1LzwE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC99I27wA5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99I27wA5 img {
  width: 120px;
  margin: auto;
}
.cid-tC99I27wA5 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC99I27wA5 .card {
    max-width: 12.5%;
  }
}
.cid-tCZVRnQvuD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tC99LVkIgz {
  background-color: #ffffff;
}
.cid-tC99LVkIgz .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tC99LVkIgz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99LVkIgz .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tC99LVkIgz .mbr-section-title {
  text-align: center;
}
.cid-tC99LVkIgz .mbr-text,
.cid-tC99LVkIgz .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tC99LVkIgz .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tC99LVkIgz .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tC99LVkIgz .mbr-section-title,
.cid-tC99LVkIgz .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tC99LVkIgz .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tC99LVGb33 {
  z-index: 1000;
  width: 100%;
}
.cid-tC99LVGb33 nav.navbar {
  position: fixed;
}
.cid-tC99LVGb33 .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-tC99LVGb33 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tC99LVGb33 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tC99LVGb33 .dropdown-item:hover,
.cid-tC99LVGb33 .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tC99LVGb33 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tC99LVGb33 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tC99LVGb33 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tC99LVGb33 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tC99LVGb33 .nav-link {
  position: relative;
}
.cid-tC99LVGb33 .container {
  display: flex;
  margin: auto;
}
.cid-tC99LVGb33 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC99LVGb33 .dropdown-menu,
.cid-tC99LVGb33 .navbar.opened {
  background: #fafafa !important;
}
.cid-tC99LVGb33 .nav-item:focus,
.cid-tC99LVGb33 .nav-link:focus {
  outline: none;
}
.cid-tC99LVGb33 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tC99LVGb33 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC99LVGb33 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tC99LVGb33 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tC99LVGb33 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tC99LVGb33 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC99LVGb33 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tC99LVGb33 .navbar.opened {
  transition: all 0.3s;
}
.cid-tC99LVGb33 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tC99LVGb33 .navbar .navbar-logo img {
  width: auto;
}
.cid-tC99LVGb33 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tC99LVGb33 .navbar.collapsed {
  justify-content: center;
}
.cid-tC99LVGb33 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tC99LVGb33 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tC99LVGb33 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tC99LVGb33 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC99LVGb33 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC99LVGb33 .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-tC99LVGb33 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tC99LVGb33 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tC99LVGb33 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tC99LVGb33 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tC99LVGb33 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tC99LVGb33 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tC99LVGb33 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tC99LVGb33 .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-tC99LVGb33 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tC99LVGb33 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tC99LVGb33 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tC99LVGb33 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tC99LVGb33 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tC99LVGb33 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tC99LVGb33 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tC99LVGb33 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tC99LVGb33 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tC99LVGb33 .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-tC99LVGb33 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC99LVGb33 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC99LVGb33 .dropdown-item.active,
.cid-tC99LVGb33 .dropdown-item:active {
  background-color: transparent;
}
.cid-tC99LVGb33 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC99LVGb33 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tC99LVGb33 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tC99LVGb33 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tC99LVGb33 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC99LVGb33 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC99LVGb33 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tC99LVGb33 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tC99LVGb33 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tC99LVGb33 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tC99LVGb33 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC99LVGb33 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC99LVGb33 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC99LVGb33 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC99LVGb33 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC99LVGb33 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC99LVGb33 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC99LVGb33 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC99LVGb33 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tC99LVGb33 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tC99LVGb33 .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-tC99LVGb33 .navbar {
    height: 70px;
  }
  .cid-tC99LVGb33 .navbar.opened {
    height: auto;
  }
  .cid-tC99LVGb33 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC99LWXWIn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tC99LWXWIn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99LWXWIn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC99LXd8s1 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tC99LXd8s1 {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tC99LXd8s1 {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tC99LXd8s1 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tC99LXd8s1 .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tC99LXd8s1 .row {
    padding: 0;
  }
}
.cid-tC99LXd8s1 .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tC99LXd8s1 .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tC99LXd8s1 .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tC99LXd8s1 .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tC99LXtumd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tC99LXtumd img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tC99LXtumd .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tC99LXtumd .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tC99LXtumd .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tC99LXtumd .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tC99LXtumd .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tC99LXtumd .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tC99LXtumd .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tC99LXtumd * {
    text-align: left;
  }
}
.cid-tC99LXtumd a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tC99LXtumd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99LXtumd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC99LXtumd .card-wrapper .card-box .mbr-text,
.cid-tC99LXtumd .mbr-section-btn {
  color: #353535;
}
.cid-tC99LYbZmI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99LYbZmI .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99LYpbjF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tC99LYpbjF .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyagm1XgV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCyagm1XgV .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyagm1XgV .container {
    max-width: 1000px;
  }
}
.cid-tCyagm1XgV .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCyaPX7K9t {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCyaPX7K9t .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCybfFEu1v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCybfFEu1v .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCybfFEu1v .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCybfFEu1v .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCybfFEu1v .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tCybv6kCvM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCybv6kCvM .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCybv6kCvM .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCybv6kCvM .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCybv6kCvM .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tD5H09HLsb {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tD5H09HLsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD5H09HLsb .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-tD5H09HLsb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD5H09HLsb .row {
  flex-direction: row-reverse;
}
.cid-tD5H09HLsb img {
  width: 100%;
}
.cid-tD5HDxtegE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD5HDxtegE .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99LYJAoM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99LYJAoM .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99LYXmzl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99LYXmzl .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCykomDQOG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCykomDQOG .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCykomDQOG .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCykomDQOG .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCykomDQOG .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCykomDQOG .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCykomDQOG .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCykomDQOG .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCykomDQOG .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCykomDQOG .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCykomDQOG .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCykomDQOG .mbr-section-title {
  color: #1E1C21;
}
.cid-tCykomDQOG .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCykomDQOG .mbr-text {
  color: #1E1C21;
}
.cid-tCym5jWdW8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCym5jWdW8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCym5jWdW8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCym5jWdW8 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCym5jWdW8 .panel-group {
  border: none;
}
.cid-tCym5jWdW8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCym5jWdW8 .panel-body,
.cid-tCym5jWdW8 .card-header {
  padding: 1rem 0;
}
.cid-tCym5jWdW8 .panel-title-edit {
  color: #000000;
}
.cid-tCym5jWdW8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCylkAxscD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCylkAxscD .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCylok4cEO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCylok4cEO .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCylok4cEO .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCylok4cEO .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCylok4cEO .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tCylUqv09v {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCylUqv09v .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99LZb3Zs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99LZb3Zs .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCycENdi8p {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCycENdi8p .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCycENdi8p .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCycENdi8p .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCycENdi8p .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tCycBFjj0C {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCycBFjj0C .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC99LZqgNz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99LZqgNz .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC9e1kSLdb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC9e1kSLdb .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tC9e2imKnL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC9e2imKnL .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCydcXDodM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCydcXDodM .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCydcXDodM .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCydcXDodM .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCydcXDodM .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCydcXDodM .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCydcXDodM .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCydcXDodM .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCydcXDodM .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCydcXDodM .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCydcXDodM .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCydcXDodM .mbr-section-title {
  color: #1E1C21;
}
.cid-tCydcXDodM .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCydcXDodM .mbr-text {
  color: #1E1C21;
}
.cid-tCyddEBx4R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCyddEBx4R .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyddEBx4R .container {
    max-width: 1000px;
  }
}
.cid-tCyddEBx4R .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCyfKIzWOz {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tCyfKIzWOz .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCyfKIzWOz .container {
    max-width: 1000px;
  }
}
.cid-tCyfKIzWOz .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCygps6flZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCygps6flZ .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCygps6flZ .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCygps6flZ .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCygps6flZ .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCygps6flZ .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCygps6flZ .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCygps6flZ .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCygps6flZ .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCygps6flZ .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCygps6flZ .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCygps6flZ .mbr-section-title {
  color: #1E1C21;
}
.cid-tCygps6flZ .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCygps6flZ .mbr-text {
  color: #1E1C21;
}
.cid-tCygqt3SMj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCygqt3SMj .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCygqt3SMj .container {
    max-width: 1000px;
  }
}
.cid-tCygqt3SMj .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCyhFNueI0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCyhFNueI0 .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCyhFNueI0 .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCyhFNueI0 .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCyhFNueI0 .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCyhFNueI0 .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCyhFNueI0 .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCyhFNueI0 .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCyhFNueI0 .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCyhFNueI0 .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCyhFNueI0 .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCyhFNueI0 .mbr-section-title {
  color: #1E1C21;
}
.cid-tCyhFNueI0 .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCyhFNueI0 .mbr-text {
  color: #1E1C21;
}
.cid-tCyirHjK8O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCyirHjK8O .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCyirHjK8O .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCyirHjK8O .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCyirHjK8O .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCyirHjK8O .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCyirHjK8O .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCyirHjK8O .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCyirHjK8O .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCyirHjK8O .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCyirHjK8O .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCyirHjK8O .mbr-section-title {
  color: #1E1C21;
}
.cid-tCyirHjK8O .mbr-section-subtitle {
  color: #1E1C21;
}
.cid-tCyirHjK8O .mbr-text {
  color: #1E1C21;
}
.cid-tCyjBS44tj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fbfbfb;
}
.cid-tCyjBS44tj .title-wrapper {
  margin: 0 150px;
}
@media (max-width: 992px) {
  .cid-tCyjBS44tj .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tCyjBS44tj .title-wrapper .mbr-section-title {
  margin-bottom: 83.5px;
}
@media (max-width: 768px) {
  .cid-tCyjBS44tj .title-wrapper .mbr-section-title {
    margin-bottom: 50.4px;
  }
}
.cid-tCyjBS44tj .text-wrapper {
  margin: 0 150px;
  padding: 86px 0;
  border-top: 1px solid #cbcbcb;
}
@media (max-width: 992px) {
  .cid-tCyjBS44tj .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 768px) {
  .cid-tCyjBS44tj .text-wrapper {
    padding: 50.4px 0;
  }
}
.cid-tCyjBS44tj .text-wrapper .mbr-section-subtitle {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tCyjBS44tj .text-wrapper .mbr-section-subtitle {
    margin-bottom: 33.6px;
  }
}
.cid-tCyjBS44tj .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tCyjBS44tj .mbr-section-title {
  color: #1E1C21;
}
.cid-tCyjBS44tj .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCyjBS44tj .mbr-text {
  color: #1E1C21;
}
.cid-tC99LZEEfr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99LZEEfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tC99LZEEfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC99LZEEfr .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tC99LZEEfr .panel-group {
  border: none;
}
.cid-tC99LZEEfr .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tC99LZEEfr .panel-body,
.cid-tC99LZEEfr .card-header {
  padding: 1rem 0;
}
.cid-tC99LZEEfr .panel-title-edit {
  color: #000000;
}
.cid-tC99LZEEfr .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tC99M02GZr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tC99M02GZr img {
  width: 120px;
  margin: auto;
}
.cid-tC99M02GZr .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC99M02GZr .card {
    max-width: 12.5%;
  }
}
.cid-tCZW17NuMg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCaTcbPl5A {
  background-color: #ffffff;
}
.cid-tCaTcbPl5A .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCaTcbPl5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaTcbPl5A .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCaTcbPl5A .mbr-section-title {
  text-align: center;
}
.cid-tCaTcbPl5A .mbr-text,
.cid-tCaTcbPl5A .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCaTcbPl5A .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCaTcbPl5A .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCaTcbPl5A .mbr-section-title,
.cid-tCaTcbPl5A .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCaTcbPl5A .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCaTcc5yxg {
  z-index: 1000;
  width: 100%;
}
.cid-tCaTcc5yxg nav.navbar {
  position: fixed;
}
.cid-tCaTcc5yxg .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-tCaTcc5yxg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCaTcc5yxg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCaTcc5yxg .dropdown-item:hover,
.cid-tCaTcc5yxg .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCaTcc5yxg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCaTcc5yxg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCaTcc5yxg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCaTcc5yxg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCaTcc5yxg .nav-link {
  position: relative;
}
.cid-tCaTcc5yxg .container {
  display: flex;
  margin: auto;
}
.cid-tCaTcc5yxg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCaTcc5yxg .dropdown-menu,
.cid-tCaTcc5yxg .navbar.opened {
  background: #fafafa !important;
}
.cid-tCaTcc5yxg .nav-item:focus,
.cid-tCaTcc5yxg .nav-link:focus {
  outline: none;
}
.cid-tCaTcc5yxg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCaTcc5yxg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCaTcc5yxg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCaTcc5yxg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCaTcc5yxg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCaTcc5yxg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCaTcc5yxg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCaTcc5yxg .navbar.opened {
  transition: all 0.3s;
}
.cid-tCaTcc5yxg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCaTcc5yxg .navbar .navbar-logo img {
  width: auto;
}
.cid-tCaTcc5yxg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCaTcc5yxg .navbar.collapsed {
  justify-content: center;
}
.cid-tCaTcc5yxg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCaTcc5yxg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCaTcc5yxg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCaTcc5yxg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCaTcc5yxg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCaTcc5yxg .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-tCaTcc5yxg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCaTcc5yxg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCaTcc5yxg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCaTcc5yxg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCaTcc5yxg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCaTcc5yxg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCaTcc5yxg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCaTcc5yxg .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-tCaTcc5yxg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCaTcc5yxg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCaTcc5yxg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCaTcc5yxg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCaTcc5yxg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCaTcc5yxg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCaTcc5yxg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCaTcc5yxg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCaTcc5yxg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCaTcc5yxg .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-tCaTcc5yxg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCaTcc5yxg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCaTcc5yxg .dropdown-item.active,
.cid-tCaTcc5yxg .dropdown-item:active {
  background-color: transparent;
}
.cid-tCaTcc5yxg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCaTcc5yxg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCaTcc5yxg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCaTcc5yxg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCaTcc5yxg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCaTcc5yxg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCaTcc5yxg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCaTcc5yxg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCaTcc5yxg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCaTcc5yxg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCaTcc5yxg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCaTcc5yxg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCaTcc5yxg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCaTcc5yxg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCaTcc5yxg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCaTcc5yxg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCaTcc5yxg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCaTcc5yxg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCaTcc5yxg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCaTcc5yxg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCaTcc5yxg .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-tCaTcc5yxg .navbar {
    height: 70px;
  }
  .cid-tCaTcc5yxg .navbar.opened {
    height: auto;
  }
  .cid-tCaTcc5yxg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCaTccqZ8F {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCaTccFOlQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCaTccFOlQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaTccFOlQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaTccFOlQ .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tCaTccFOlQ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tCaTccFOlQ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCaTccFOlQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tCaTccFOlQ .mbr-text,
.cid-tCaTccFOlQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tCaTccFOlQ .card-title,
.cid-tCaTccFOlQ .card-box {
  text-align: left;
}
.cid-tCaTccVYpm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCaTccVYpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaTccVYpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaTcdconc {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCaTcdconc {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCaTcdconc {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tCaTcdconc .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCaTcdconc .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCaTcdconc .row {
    padding: 0;
  }
}
.cid-tCaTcdconc .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCaTcdconc .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCaTcdconc .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCaTcdconc .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCaTcdwp4I {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCaTcdwp4I img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCaTcdwp4I .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCaTcdwp4I .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCaTcdwp4I .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCaTcdwp4I * {
    text-align: left;
  }
}
.cid-tCaTcdwp4I a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCaTcdwp4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaTcdwp4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaTcdwp4I .card-wrapper .card-box .mbr-text,
.cid-tCaTcdwp4I .mbr-section-btn {
  color: #353535;
}
.cid-tCy6F1VDy3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCy6F1VDy3 .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCy6F1VDy3 .container {
    max-width: 1000px;
  }
}
.cid-tCy6F1VDy3 .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCy6o0TcVV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCy6o0TcVV .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCy7n6ZlvB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCy7n6ZlvB .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tCy7n6ZlvB .container {
    max-width: 1000px;
  }
}
.cid-tCy7n6ZlvB .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCy7LIittX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCy7LIittX .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaTcejenK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaTcejenK .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaTceznmR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaTceznmR .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaTceOmf2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaTceOmf2 .mbr-section-subtitle {
  color: #000000;
}
.cid-tCaTcf82hz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaTcf82hz .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaTch1vLL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaTch1vLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaTch1vLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaTch1vLL .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCaTch1vLL .panel-group {
  border: none;
}
.cid-tCaTch1vLL .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCaTch1vLL .panel-body,
.cid-tCaTch1vLL .card-header {
  padding: 1rem 0;
}
.cid-tCaTch1vLL .panel-title-edit {
  color: #000000;
}
.cid-tCaTch1vLL .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCaTchoDZZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaTchoDZZ img {
  width: 120px;
  margin: auto;
}
.cid-tCaTchoDZZ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCaTchoDZZ .card {
    max-width: 12.5%;
  }
}
.cid-tCZWddau8T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCaXvli1FB {
  background-color: #ffffff;
}
.cid-tCaXvli1FB .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCaXvli1FB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaXvli1FB .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCaXvli1FB .mbr-section-title {
  text-align: center;
}
.cid-tCaXvli1FB .mbr-text,
.cid-tCaXvli1FB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCaXvli1FB .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCaXvli1FB .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCaXvli1FB .mbr-section-title,
.cid-tCaXvli1FB .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCaXvli1FB .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCaXvlzqq2 {
  z-index: 1000;
  width: 100%;
}
.cid-tCaXvlzqq2 nav.navbar {
  position: fixed;
}
.cid-tCaXvlzqq2 .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-tCaXvlzqq2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCaXvlzqq2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCaXvlzqq2 .dropdown-item:hover,
.cid-tCaXvlzqq2 .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCaXvlzqq2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCaXvlzqq2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCaXvlzqq2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCaXvlzqq2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCaXvlzqq2 .nav-link {
  position: relative;
}
.cid-tCaXvlzqq2 .container {
  display: flex;
  margin: auto;
}
.cid-tCaXvlzqq2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCaXvlzqq2 .dropdown-menu,
.cid-tCaXvlzqq2 .navbar.opened {
  background: #fafafa !important;
}
.cid-tCaXvlzqq2 .nav-item:focus,
.cid-tCaXvlzqq2 .nav-link:focus {
  outline: none;
}
.cid-tCaXvlzqq2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCaXvlzqq2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCaXvlzqq2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCaXvlzqq2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCaXvlzqq2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCaXvlzqq2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCaXvlzqq2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCaXvlzqq2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tCaXvlzqq2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCaXvlzqq2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tCaXvlzqq2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCaXvlzqq2 .navbar.collapsed {
  justify-content: center;
}
.cid-tCaXvlzqq2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCaXvlzqq2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCaXvlzqq2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCaXvlzqq2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCaXvlzqq2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCaXvlzqq2 .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-tCaXvlzqq2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCaXvlzqq2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCaXvlzqq2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCaXvlzqq2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCaXvlzqq2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCaXvlzqq2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCaXvlzqq2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCaXvlzqq2 .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-tCaXvlzqq2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCaXvlzqq2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCaXvlzqq2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCaXvlzqq2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCaXvlzqq2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCaXvlzqq2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCaXvlzqq2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCaXvlzqq2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCaXvlzqq2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCaXvlzqq2 .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-tCaXvlzqq2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCaXvlzqq2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCaXvlzqq2 .dropdown-item.active,
.cid-tCaXvlzqq2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCaXvlzqq2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCaXvlzqq2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCaXvlzqq2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCaXvlzqq2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCaXvlzqq2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCaXvlzqq2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCaXvlzqq2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCaXvlzqq2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCaXvlzqq2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCaXvlzqq2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCaXvlzqq2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCaXvlzqq2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCaXvlzqq2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCaXvlzqq2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCaXvlzqq2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCaXvlzqq2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCaXvlzqq2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCaXvlzqq2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCaXvlzqq2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCaXvlzqq2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCaXvlzqq2 .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-tCaXvlzqq2 .navbar {
    height: 70px;
  }
  .cid-tCaXvlzqq2 .navbar.opened {
    height: auto;
  }
  .cid-tCaXvlzqq2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCaXvlX3bE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCaXvlX3bE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaXvlX3bE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaXvmdbIL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCaXvmdbIL {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCaXvmdbIL {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tCaXvmdbIL .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCaXvmdbIL .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCaXvmdbIL .row {
    padding: 0;
  }
}
.cid-tCaXvmdbIL .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCaXvmdbIL .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCaXvmdbIL .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCaXvmdbIL .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCaXvmtR5c {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCaXvmtR5c img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCaXvmtR5c .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCaXvmtR5c .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCaXvmtR5c .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCaXvmtR5c * {
    text-align: left;
  }
}
.cid-tCaXvmtR5c a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCaXvmtR5c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaXvmtR5c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaXvmtR5c .card-wrapper .card-box .mbr-text,
.cid-tCaXvmtR5c .mbr-section-btn {
  color: #353535;
}
.cid-tCaXvnsgtC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCaXvnsgtC .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCy39cyJIh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCy39cyJIh .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCy39cyJIh .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCy39cyJIh .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCy39cyJIh .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tCy3npAcfu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCy3npAcfu .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaXvnJD2B {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaXvnJD2B .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaXvo1nL7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCaXvo1nL7 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCy3FVCvP9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCy3FVCvP9 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCy3FVCvP9 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCy3FVCvP9 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCy3FVCvP9 .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tCy3IgVTD4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCy3IgVTD4 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaXvog1dp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaXvog1dp .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaXvovcjx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaXvovcjx .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaXvoKcMR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaXvoKcMR .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaYHKGygo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaYHKGygo .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaYIMbMEv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaYIMbMEv .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaXvoYX8y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaXvoYX8y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaXvoYX8y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaXvoYX8y .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCaXvoYX8y .panel-group {
  border: none;
}
.cid-tCaXvoYX8y .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCaXvoYX8y .panel-body,
.cid-tCaXvoYX8y .card-header {
  padding: 1rem 0;
}
.cid-tCaXvoYX8y .panel-title-edit {
  color: #000000;
}
.cid-tCaXvoYX8y .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCaXvpoYx1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaXvpoYx1 img {
  width: 120px;
  margin: auto;
}
.cid-tCaXvpoYx1 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCaXvpoYx1 .card {
    max-width: 12.5%;
  }
}
.cid-tCZWN9tD5V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCaZE8oUF8 {
  background-color: #ffffff;
}
.cid-tCaZE8oUF8 .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCaZE8oUF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaZE8oUF8 .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCaZE8oUF8 .mbr-section-title {
  text-align: center;
}
.cid-tCaZE8oUF8 .mbr-text,
.cid-tCaZE8oUF8 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCaZE8oUF8 .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCaZE8oUF8 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCaZE8oUF8 .mbr-section-title,
.cid-tCaZE8oUF8 .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCaZE8oUF8 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCaZE8U57L {
  z-index: 1000;
  width: 100%;
}
.cid-tCaZE8U57L nav.navbar {
  position: fixed;
}
.cid-tCaZE8U57L .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-tCaZE8U57L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCaZE8U57L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCaZE8U57L .dropdown-item:hover,
.cid-tCaZE8U57L .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCaZE8U57L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCaZE8U57L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCaZE8U57L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCaZE8U57L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCaZE8U57L .nav-link {
  position: relative;
}
.cid-tCaZE8U57L .container {
  display: flex;
  margin: auto;
}
.cid-tCaZE8U57L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCaZE8U57L .dropdown-menu,
.cid-tCaZE8U57L .navbar.opened {
  background: #fafafa !important;
}
.cid-tCaZE8U57L .nav-item:focus,
.cid-tCaZE8U57L .nav-link:focus {
  outline: none;
}
.cid-tCaZE8U57L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCaZE8U57L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCaZE8U57L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCaZE8U57L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCaZE8U57L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCaZE8U57L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCaZE8U57L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCaZE8U57L .navbar.opened {
  transition: all 0.3s;
}
.cid-tCaZE8U57L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCaZE8U57L .navbar .navbar-logo img {
  width: auto;
}
.cid-tCaZE8U57L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCaZE8U57L .navbar.collapsed {
  justify-content: center;
}
.cid-tCaZE8U57L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCaZE8U57L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCaZE8U57L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCaZE8U57L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCaZE8U57L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCaZE8U57L .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-tCaZE8U57L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCaZE8U57L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCaZE8U57L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCaZE8U57L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCaZE8U57L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCaZE8U57L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCaZE8U57L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCaZE8U57L .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-tCaZE8U57L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCaZE8U57L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCaZE8U57L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCaZE8U57L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCaZE8U57L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCaZE8U57L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCaZE8U57L .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCaZE8U57L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCaZE8U57L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCaZE8U57L .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-tCaZE8U57L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCaZE8U57L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCaZE8U57L .dropdown-item.active,
.cid-tCaZE8U57L .dropdown-item:active {
  background-color: transparent;
}
.cid-tCaZE8U57L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCaZE8U57L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCaZE8U57L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCaZE8U57L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCaZE8U57L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCaZE8U57L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCaZE8U57L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCaZE8U57L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCaZE8U57L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCaZE8U57L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCaZE8U57L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCaZE8U57L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCaZE8U57L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCaZE8U57L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCaZE8U57L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCaZE8U57L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCaZE8U57L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCaZE8U57L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCaZE8U57L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCaZE8U57L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCaZE8U57L .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-tCaZE8U57L .navbar {
    height: 70px;
  }
  .cid-tCaZE8U57L .navbar.opened {
    height: auto;
  }
  .cid-tCaZE8U57L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCaZE9B88V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCaZE9B88V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaZE9B88V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaZEa4Ynt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCaZEa4Ynt {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCaZEa4Ynt {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tCaZEa4Ynt .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCaZEa4Ynt .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCaZEa4Ynt .row {
    padding: 0;
  }
}
.cid-tCaZEa4Ynt .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCaZEa4Ynt .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCaZEa4Ynt .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCaZEa4Ynt .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCaZEavi81 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCaZEavi81 img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCaZEavi81 .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCaZEavi81 .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCaZEavi81 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCaZEavi81 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCaZEavi81 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCaZEavi81 * {
    text-align: left;
  }
}
.cid-tCaZEavi81 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCaZEavi81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaZEavi81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaZEavi81 .card-wrapper .card-box .mbr-text,
.cid-tCaZEavi81 .mbr-section-btn {
  color: #353535;
}
.cid-tCaZEbWz0W {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaZEbWz0W .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaZEcGjHF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaZEcGjHF .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaZEd1LwM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaZEd1LwM .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCaZEfFYcp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaZEfFYcp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCaZEfFYcp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCaZEfFYcp .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCaZEfFYcp .panel-group {
  border: none;
}
.cid-tCaZEfFYcp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCaZEfFYcp .panel-body,
.cid-tCaZEfFYcp .card-header {
  padding: 1rem 0;
}
.cid-tCaZEfFYcp .panel-title-edit {
  color: #000000;
}
.cid-tCaZEfFYcp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCaZEg2Rho {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCaZEg2Rho img {
  width: 120px;
  margin: auto;
}
.cid-tCaZEg2Rho .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCaZEg2Rho .card {
    max-width: 12.5%;
  }
}
.cid-tCZWT1ZP31 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCb49np3g4 {
  background-color: #ffffff;
}
.cid-tCb49np3g4 .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCb49np3g4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb49np3g4 .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCb49np3g4 .mbr-section-title {
  text-align: center;
}
.cid-tCb49np3g4 .mbr-text,
.cid-tCb49np3g4 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCb49np3g4 .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCb49np3g4 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCb49np3g4 .mbr-section-title,
.cid-tCb49np3g4 .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCb49np3g4 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCb49nGiwa {
  z-index: 1000;
  width: 100%;
}
.cid-tCb49nGiwa nav.navbar {
  position: fixed;
}
.cid-tCb49nGiwa .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-tCb49nGiwa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCb49nGiwa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCb49nGiwa .dropdown-item:hover,
.cid-tCb49nGiwa .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCb49nGiwa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCb49nGiwa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCb49nGiwa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCb49nGiwa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCb49nGiwa .nav-link {
  position: relative;
}
.cid-tCb49nGiwa .container {
  display: flex;
  margin: auto;
}
.cid-tCb49nGiwa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCb49nGiwa .dropdown-menu,
.cid-tCb49nGiwa .navbar.opened {
  background: #fafafa !important;
}
.cid-tCb49nGiwa .nav-item:focus,
.cid-tCb49nGiwa .nav-link:focus {
  outline: none;
}
.cid-tCb49nGiwa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCb49nGiwa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCb49nGiwa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCb49nGiwa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCb49nGiwa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCb49nGiwa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCb49nGiwa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCb49nGiwa .navbar.opened {
  transition: all 0.3s;
}
.cid-tCb49nGiwa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCb49nGiwa .navbar .navbar-logo img {
  width: auto;
}
.cid-tCb49nGiwa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCb49nGiwa .navbar.collapsed {
  justify-content: center;
}
.cid-tCb49nGiwa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCb49nGiwa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCb49nGiwa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCb49nGiwa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCb49nGiwa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCb49nGiwa .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-tCb49nGiwa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCb49nGiwa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCb49nGiwa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCb49nGiwa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCb49nGiwa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCb49nGiwa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCb49nGiwa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCb49nGiwa .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-tCb49nGiwa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCb49nGiwa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCb49nGiwa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCb49nGiwa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCb49nGiwa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCb49nGiwa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCb49nGiwa .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCb49nGiwa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCb49nGiwa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCb49nGiwa .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-tCb49nGiwa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCb49nGiwa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCb49nGiwa .dropdown-item.active,
.cid-tCb49nGiwa .dropdown-item:active {
  background-color: transparent;
}
.cid-tCb49nGiwa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCb49nGiwa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCb49nGiwa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCb49nGiwa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCb49nGiwa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCb49nGiwa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCb49nGiwa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCb49nGiwa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCb49nGiwa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCb49nGiwa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCb49nGiwa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCb49nGiwa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCb49nGiwa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCb49nGiwa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCb49nGiwa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCb49nGiwa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCb49nGiwa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCb49nGiwa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCb49nGiwa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCb49nGiwa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCb49nGiwa .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-tCb49nGiwa .navbar {
    height: 70px;
  }
  .cid-tCb49nGiwa .navbar.opened {
    height: auto;
  }
  .cid-tCb49nGiwa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCb49o1Qv4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCb49o1Qv4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb49o1Qv4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb49ohgSS {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCb49ohgSS {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCb49ohgSS {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tCb49ohgSS .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCb49ohgSS .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCb49ohgSS .row {
    padding: 0;
  }
}
.cid-tCb49ohgSS .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCb49ohgSS .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCb49ohgSS .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCb49ohgSS .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCb49oBuE6 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCb49oBuE6 img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCb49oBuE6 .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCb49oBuE6 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCb49oBuE6 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCb49oBuE6 * {
    text-align: left;
  }
}
.cid-tCb49oBuE6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCb49oBuE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb49oBuE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb49oBuE6 .card-wrapper .card-box .mbr-text,
.cid-tCb49oBuE6 .mbr-section-btn {
  color: #353535;
}
.cid-tCb49pCbmB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCb49pCbmB .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tChZABHyNP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tChZABHyNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tChZABHyNP .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-tChZABHyNP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tChZABHyNP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tChZABHyNP .text-wrapper {
    padding: 2rem;
  }
}
.cid-tChZyTb9sb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tChZyTb9sb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tChZyTb9sb .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-tChZyTb9sb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tChZyTb9sb .row {
  flex-direction: row-reverse;
}
.cid-tChZyTb9sb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tChZyTb9sb .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCi0inJ4Em {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tCi0inJ4Em .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCi0inJ4Em .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-tCi0inJ4Em .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCi0inJ4Em img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCi0inJ4Em .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCi0o5Ag8P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCi0o5Ag8P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCi0o5Ag8P .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-tCi0o5Ag8P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCi0o5Ag8P .row {
  flex-direction: row-reverse;
}
.cid-tCi0o5Ag8P img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCi0o5Ag8P .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCi0vv5wPA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tCi0vv5wPA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCi0vv5wPA .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-tCi0vv5wPA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCi0vv5wPA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCi0vv5wPA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCi0MHn6B3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tCi0MHn6B3 .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCb49rFAsc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb49rFAsc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb49rFAsc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb49rFAsc .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCb49rFAsc .panel-group {
  border: none;
}
.cid-tCb49rFAsc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCb49rFAsc .panel-body,
.cid-tCb49rFAsc .card-header {
  padding: 1rem 0;
}
.cid-tCb49rFAsc .panel-title-edit {
  color: #000000;
}
.cid-tCb49rFAsc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCb49s5DWx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb49s5DWx img {
  width: 120px;
  margin: auto;
}
.cid-tCb49s5DWx .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCb49s5DWx .card {
    max-width: 12.5%;
  }
}
.cid-tCZX2uVq5l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCb62fyRzj {
  background-color: #ffffff;
}
.cid-tCb62fyRzj .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCb62fyRzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb62fyRzj .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCb62fyRzj .mbr-section-title {
  text-align: center;
}
.cid-tCb62fyRzj .mbr-text,
.cid-tCb62fyRzj .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCb62fyRzj .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCb62fyRzj .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCb62fyRzj .mbr-section-title,
.cid-tCb62fyRzj .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCb62fyRzj .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCb62fPKad {
  z-index: 1000;
  width: 100%;
}
.cid-tCb62fPKad nav.navbar {
  position: fixed;
}
.cid-tCb62fPKad .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-tCb62fPKad .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCb62fPKad .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCb62fPKad .dropdown-item:hover,
.cid-tCb62fPKad .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCb62fPKad .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCb62fPKad .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCb62fPKad .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCb62fPKad .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCb62fPKad .nav-link {
  position: relative;
}
.cid-tCb62fPKad .container {
  display: flex;
  margin: auto;
}
.cid-tCb62fPKad .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCb62fPKad .dropdown-menu,
.cid-tCb62fPKad .navbar.opened {
  background: #fafafa !important;
}
.cid-tCb62fPKad .nav-item:focus,
.cid-tCb62fPKad .nav-link:focus {
  outline: none;
}
.cid-tCb62fPKad .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCb62fPKad .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCb62fPKad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCb62fPKad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCb62fPKad .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCb62fPKad .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCb62fPKad .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCb62fPKad .navbar.opened {
  transition: all 0.3s;
}
.cid-tCb62fPKad .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCb62fPKad .navbar .navbar-logo img {
  width: auto;
}
.cid-tCb62fPKad .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCb62fPKad .navbar.collapsed {
  justify-content: center;
}
.cid-tCb62fPKad .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCb62fPKad .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCb62fPKad .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCb62fPKad .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCb62fPKad .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCb62fPKad .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-tCb62fPKad .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCb62fPKad .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCb62fPKad .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCb62fPKad .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCb62fPKad .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCb62fPKad .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCb62fPKad .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCb62fPKad .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-tCb62fPKad .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCb62fPKad .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCb62fPKad .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCb62fPKad .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCb62fPKad .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCb62fPKad .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCb62fPKad .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCb62fPKad .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCb62fPKad .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCb62fPKad .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-tCb62fPKad .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCb62fPKad .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCb62fPKad .dropdown-item.active,
.cid-tCb62fPKad .dropdown-item:active {
  background-color: transparent;
}
.cid-tCb62fPKad .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCb62fPKad .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCb62fPKad .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCb62fPKad .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCb62fPKad .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCb62fPKad .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCb62fPKad ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCb62fPKad .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCb62fPKad button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCb62fPKad button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCb62fPKad button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCb62fPKad button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCb62fPKad button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCb62fPKad button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCb62fPKad nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCb62fPKad nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCb62fPKad nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCb62fPKad nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCb62fPKad .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCb62fPKad a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCb62fPKad .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-tCb62fPKad .navbar {
    height: 70px;
  }
  .cid-tCb62fPKad .navbar.opened {
    height: auto;
  }
  .cid-tCb62fPKad .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCb62gb6c8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCb62gb6c8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb62gb6c8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb62gsX2o {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCb62gsX2o {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCb62gsX2o {
    padding-top: 21px;
    padding-bottom: 7px;
  }
}
.cid-tCb62gsX2o .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCb62gsX2o .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCb62gsX2o .row {
    padding: 0;
  }
}
.cid-tCb62gsX2o .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCb62gsX2o .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCb62gsX2o .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCb62gsX2o .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCb62gLLAR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCb62gLLAR img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCb62gLLAR .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCb62gLLAR .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCb62gLLAR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCb62gLLAR .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCb62gLLAR .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCb62gLLAR * {
    text-align: left;
  }
}
.cid-tCb62gLLAR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCb62gLLAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb62gLLAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb62gLLAR .card-wrapper .card-box .mbr-text,
.cid-tCb62gLLAR .mbr-section-btn {
  color: #353535;
}
.cid-tChVhlfaFK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tChVhlfaFK .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tChVhlfaFK .container {
    max-width: 1000px;
  }
}
.cid-tChVhlfaFK .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tChWzddWQZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tChWzddWQZ .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tChX5hRkhn {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tChX5hRkhn .mbr-text {
  color: #353535;
}
@media (min-width: 1400px) {
  .cid-tChX5hRkhn .container {
    max-width: 1000px;
  }
}
.cid-tChX5hRkhn .line {
  border-top: 2px solid #efefef;
  padding-bottom: 2rem;
  margin-top: 1rem;
}
.cid-tCb62hN3yr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCb62hN3yr .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tChYin740h {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tChYin740h .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tChYin740h .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tChYin740h .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tChYin740h .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: #000000;
  background: #bbbbbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-tChYKTAz9n {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tChYKTAz9n .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCb62i3MRM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb62i3MRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCb62i3MRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCb62i3MRM .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCb62i3MRM .panel-group {
  border: none;
}
.cid-tCb62i3MRM .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCb62i3MRM .panel-body,
.cid-tCb62i3MRM .card-header {
  padding: 1rem 0;
}
.cid-tCb62i3MRM .panel-title-edit {
  color: #000000;
}
.cid-tCb62i3MRM .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCb62ioO5j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCb62ioO5j img {
  width: 120px;
  margin: auto;
}
.cid-tCb62ioO5j .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCb62ioO5j .card {
    max-width: 12.5%;
  }
}
.cid-tCZX9GXOkR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
.cid-tCbb80mJk4 {
  background-color: #ffffff;
}
.cid-tCbb80mJk4 .wrapper {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.cid-tCbb80mJk4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbb80mJk4 .wrapper {
  background: #171717;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
}
.cid-tCbb80mJk4 .mbr-section-title {
  text-align: center;
}
.cid-tCbb80mJk4 .mbr-text,
.cid-tCbb80mJk4 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tCbb80mJk4 .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tCbb80mJk4 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tCbb80mJk4 .mbr-section-title,
.cid-tCbb80mJk4 .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tCbb80mJk4 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tCbb81vZeU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1346.webp");
}
.cid-tCbb81vZeU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbb81vZeU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbb80D9ko {
  z-index: 1000;
  width: 100%;
}
.cid-tCbb80D9ko nav.navbar {
  position: fixed;
}
.cid-tCbb80D9ko .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-tCbb80D9ko .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCbb80D9ko .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCbb80D9ko .dropdown-item:hover,
.cid-tCbb80D9ko .dropdown-item:focus {
  background: #2f5bae !important;
  color: white !important;
}
.cid-tCbb80D9ko .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCbb80D9ko .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCbb80D9ko .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCbb80D9ko .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCbb80D9ko .nav-link {
  position: relative;
}
.cid-tCbb80D9ko .container {
  display: flex;
  margin: auto;
}
.cid-tCbb80D9ko .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCbb80D9ko .dropdown-menu,
.cid-tCbb80D9ko .navbar.opened {
  background: #fafafa !important;
}
.cid-tCbb80D9ko .nav-item:focus,
.cid-tCbb80D9ko .nav-link:focus {
  outline: none;
}
.cid-tCbb80D9ko .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCbb80D9ko .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCbb80D9ko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCbb80D9ko .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCbb80D9ko .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCbb80D9ko .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCbb80D9ko .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-tCbb80D9ko .navbar.opened {
  transition: all 0.3s;
}
.cid-tCbb80D9ko .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCbb80D9ko .navbar .navbar-logo img {
  width: auto;
}
.cid-tCbb80D9ko .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCbb80D9ko .navbar.collapsed {
  justify-content: center;
}
.cid-tCbb80D9ko .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCbb80D9ko .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCbb80D9ko .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tCbb80D9ko .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCbb80D9ko .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCbb80D9ko .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-tCbb80D9ko .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCbb80D9ko .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCbb80D9ko .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCbb80D9ko .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCbb80D9ko .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCbb80D9ko .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCbb80D9ko .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCbb80D9ko .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-tCbb80D9ko .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCbb80D9ko .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCbb80D9ko .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCbb80D9ko .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCbb80D9ko .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCbb80D9ko .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCbb80D9ko .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCbb80D9ko .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCbb80D9ko .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCbb80D9ko .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-tCbb80D9ko .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCbb80D9ko .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCbb80D9ko .dropdown-item.active,
.cid-tCbb80D9ko .dropdown-item:active {
  background-color: transparent;
}
.cid-tCbb80D9ko .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCbb80D9ko .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCbb80D9ko .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCbb80D9ko .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tCbb80D9ko .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCbb80D9ko .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCbb80D9ko ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCbb80D9ko .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCbb80D9ko button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCbb80D9ko button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #2f5bae;
}
.cid-tCbb80D9ko button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCbb80D9ko button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCbb80D9ko button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCbb80D9ko button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCbb80D9ko nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCbb80D9ko nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCbb80D9ko nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCbb80D9ko nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCbb80D9ko .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCbb80D9ko a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCbb80D9ko .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-tCbb80D9ko .navbar {
    height: 70px;
  }
  .cid-tCbb80D9ko .navbar.opened {
    height: auto;
  }
  .cid-tCbb80D9ko .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCbb80YDdX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCbb81dR1e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCbb81dR1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbb81dR1e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbb81dR1e .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tCbb81dR1e .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tCbb81dR1e .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCbb81dR1e .card-wrapper {
    padding: 4rem;
  }
}
.cid-tCbb81dR1e .mbr-text,
.cid-tCbb81dR1e .mbr-section-btn {
  color: #ffffff;
}
.cid-tCbb81dR1e .card-title,
.cid-tCbb81dR1e .card-box {
  text-align: left;
}
.cid-tCbb81Qf5D {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #354463;
}
@media (max-width: 992px) {
  .cid-tCbb81Qf5D {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-tCbb81Qf5D {
    padding-top: 28px;
    padding-bottom: 7px;
  }
}
.cid-tCbb81Qf5D .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tCbb81Qf5D .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 767px) {
  .cid-tCbb81Qf5D .row {
    padding: 0;
  }
}
.cid-tCbb81Qf5D .btn {
  margin-left: 0rem;
}
@media (max-width: 767px) {
  .cid-tCbb81Qf5D .mbr-section-text {
    margin-top: 1.5rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tCbb81Qf5D .mbr-section-text {
    margin-top: 1.5rem;
  }
}
.cid-tCbb81Qf5D .btn-primary-outline {
  color: #ffffff !important;
}
.cid-tCbb827IcR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tCbb827IcR img {
  max-width: 100%;
  margin-bottom: 30px;
}
.cid-tCbb827IcR .card-wrapper {
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-tCbb827IcR .card-wrapper .card-box .card-title {
  color: #2f5bae;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-tCbb827IcR .card-wrapper .card-box .card-title:hover {
  color: #2f5bae;
  transition: 0.3s all;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta {
  color: #999999;
  position: relative;
  margin-bottom: 33px;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item {
  transition: all 0.3s ease-in;
  margin-right: 22px;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item:hover {
  color: #279e64 !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .mbr-iconfont {
  color: #47b5ed;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-author:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-author .author {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-date .date {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-date:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-comment .comment {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-comment:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-views:hover .mbr-iconfont {
  color: #279e64 !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .meta .item-views .views {
  color: #47b5ed;
  font-weight: 500;
}
.cid-tCbb827IcR .card-wrapper .card-box .card-subtitle {
  color: #2f5bae;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-text {
  margin-bottom: 24px;
  color: #47b5ed;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-text.accent-text {
  color: #2f5bae;
  position: relative;
  padding-left: 62px;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-text.accent-text .mbr-iconfont {
  display: block;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 41px;
  color: #40b0bf;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom {
  padding-top: 4px;
  padding-bottom: 38px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-tags {
  margin: 5px 15px 5px 0;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a {
  border: 1px solid rgba(71, 181, 237, 0.286);
  display: inline-block;
  font-size: 14px !important;
  padding: 9.5px 31px;
  margin-top: 13px;
  margin-right: 6px;
  transition: all .3s linear 0ms;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-tags .mbr-section-btn a:hover {
  background-color: #ff6666;
  color: #ffffff !important;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share {
  display: flex;
  align-items: flex-end;
  margin-top: 13px;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li {
  padding: 4px;
  display: flex;
  margin: 0 4px;
  background-color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon1 {
  background-color: #3b5998;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon2 {
  background-color: #00acee;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon3 {
  background-color: #ca1f27;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon4 {
  background-color: #dd4b39;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li.icon5 {
  background-color: #279e64;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li .icon-transition .mbr-iconfont {
  font-size: 14px;
  color: #ffffff;
}
.cid-tCbb827IcR .card-wrapper .card-box .entry-content-bottom .entry-social-share ul li:first-child {
  margin-left: 0;
}
.cid-tCbb827IcR .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-tCbb827IcR .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
@media (max-width: 768px) {
  .cid-tCbb827IcR * {
    text-align: left;
  }
}
.cid-tCbb827IcR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  background: none;
}
.cid-tCbb827IcR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbb827IcR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbb827IcR .card-wrapper .card-box .mbr-text,
.cid-tCbb827IcR .mbr-section-btn {
  color: #353535;
}
.cid-tCbg1SB0LM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCbg1SB0LM .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCbg1SB0LM .mbr-section-title {
  color: #2f5bae;
}
.cid-tCbg31K9kM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCbg31K9kM .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCbg31K9kM .mbr-section-title {
  color: #2f5bae;
}
.cid-tCbnMzT9Ki {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCbnMzT9Ki .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tCbnMzT9Ki .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tCbnMzT9Ki .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tCbnMzT9Ki .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: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCbnMzT9Ki .mbr-text {
  text-align: left;
}
.cid-tCbg4ekrUt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCbg4ekrUt .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCbg4ekrUt .mbr-section-title {
  color: #2f5bae;
}
.cid-tCbp7TyJZz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tCbp7TyJZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbp7TyJZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbp7TyJZz .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tCbp7TyJZz .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tCbp7TyJZz .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tCbg61GDiJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCbg61GDiJ .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCbg61GDiJ .mbr-section-title {
  color: #2f5bae;
}
.cid-tCbgUwNsUl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCbgUwNsUl .mbr-section-subtitle {
  color: #2f5bae;
}
.cid-tCbgUwNsUl .mbr-section-title {
  color: #2f5bae;
}
.cid-tCbb846GGz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCbb846GGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCbb846GGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCbb846GGz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2f5bae;
  margin-left: 1rem;
}
.cid-tCbb846GGz .panel-group {
  border: none;
}
.cid-tCbb846GGz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tCbb846GGz .panel-body,
.cid-tCbb846GGz .card-header {
  padding: 1rem 0;
}
.cid-tCbb846GGz .panel-title-edit {
  color: #000000;
}
.cid-tCbb846GGz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tCbb84sNDb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tCbb84sNDb img {
  width: 120px;
  margin: auto;
}
.cid-tCbb84sNDb .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tCbb84sNDb .card {
    max-width: 12.5%;
  }
}
.cid-tCZXdAIsYW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #272727;
  overflow: hidden;
}
.cid-tCZTUomFuJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCZTUomFuJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCZTUomFuJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCZTUomFuJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCZTUomFuJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCZTUomFuJ .row .foot-menu li p {
  margin: 0;
}
.cid-tCZTUomFuJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCZTUomFuJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCZTUomFuJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCZTUomFuJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCZTUomFuJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCZTUomFuJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCZTUomFuJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCZTUomFuJ .row .row-copirayt p {
  width: 100%;
}
