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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #6592e6 !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: #205ac5 !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: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #6592e6 !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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %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-t0i4o5oyAv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0i4o5oyAv nav.navbar {
  position: fixed;
}
.cid-t0i4o5oyAv .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-t0i4o5oyAv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0i4o5oyAv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0i4o5oyAv .dropdown-item:hover,
.cid-t0i4o5oyAv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-t0i4o5oyAv .dropdown-item:hover span {
  color: white;
}
.cid-t0i4o5oyAv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0i4o5oyAv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0i4o5oyAv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0i4o5oyAv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0i4o5oyAv .nav-link {
  position: relative;
}
.cid-t0i4o5oyAv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0i4o5oyAv .container {
    flex-wrap: nowrap;
  }
}
.cid-t0i4o5oyAv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0i4o5oyAv .dropdown-menu,
.cid-t0i4o5oyAv .navbar.opened {
  background: #ffffff !important;
}
.cid-t0i4o5oyAv .nav-item:focus,
.cid-t0i4o5oyAv .nav-link:focus {
  outline: none;
}
.cid-t0i4o5oyAv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0i4o5oyAv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0i4o5oyAv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0i4o5oyAv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0i4o5oyAv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0i4o5oyAv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0i4o5oyAv .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-t0i4o5oyAv .navbar.opened {
  transition: all 0.3s;
}
.cid-t0i4o5oyAv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0i4o5oyAv .navbar .navbar-logo img {
  width: auto;
}
.cid-t0i4o5oyAv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0i4o5oyAv .navbar.collapsed {
  justify-content: center;
}
.cid-t0i4o5oyAv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0i4o5oyAv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0i4o5oyAv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-t0i4o5oyAv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0i4o5oyAv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0i4o5oyAv .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-t0i4o5oyAv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0i4o5oyAv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0i4o5oyAv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0i4o5oyAv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0i4o5oyAv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0i4o5oyAv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0i4o5oyAv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0i4o5oyAv .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-t0i4o5oyAv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0i4o5oyAv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0i4o5oyAv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0i4o5oyAv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0i4o5oyAv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0i4o5oyAv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0i4o5oyAv .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0i4o5oyAv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0i4o5oyAv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0i4o5oyAv .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-t0i4o5oyAv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0i4o5oyAv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0i4o5oyAv .dropdown-item.active,
.cid-t0i4o5oyAv .dropdown-item:active {
  background-color: transparent;
}
.cid-t0i4o5oyAv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0i4o5oyAv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0i4o5oyAv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0i4o5oyAv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0i4o5oyAv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0i4o5oyAv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0i4o5oyAv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0i4o5oyAv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0i4o5oyAv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0i4o5oyAv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0i4o5oyAv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0i4o5oyAv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0i4o5oyAv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0i4o5oyAv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0i4o5oyAv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0i4o5oyAv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0i4o5oyAv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0i4o5oyAv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0i4o5oyAv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0i4o5oyAv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0i4o5oyAv .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-t0i4o5oyAv .navbar {
    height: 70px;
  }
  .cid-t0i4o5oyAv .navbar.opened {
    height: auto;
  }
  .cid-t0i4o5oyAv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0i4pBYyRI {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-t0i4pBYyRI .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-t0i4pBYyRI .mbr-text,
.cid-t0i4pBYyRI .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-teF7NN0t02 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-teF7NN0t02 .line {
  background-color: #e43f3f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-teF7NN0t02 .mbr-text {
  text-align: center;
  color: #09a321;
}
.cid-vdVC86FfDS {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fff0b0;
}
.cid-vdVC86FfDS .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-vdVC86FfDS .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-vdVC86FfDS .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #e43f3f;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-vfuNk3IOkz {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #2299aa;
}
.cid-vfuNk3IOkz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfuNk3IOkz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfuNk3IOkz .video-wrapper iframe {
  width: 100%;
}
.cid-vfuNk3IOkz .mbr-section-title,
.cid-vfuNk3IOkz .mbr-section-subtitle,
.cid-vfuNk3IOkz .mbr-text {
  text-align: center;
}
.cid-veC0S71Tmm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-veC0S71Tmm .mbr-fallback-image.disabled {
  display: none;
}
.cid-veC0S71Tmm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veC0S71Tmm .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-veC0S71Tmm .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-veC0S71Tmm .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veC0S71Tmm .card-wrapper {
    padding: 4rem;
  }
}
.cid-veC0S71Tmm .mbr-text,
.cid-veC0S71Tmm .mbr-section-btn {
  color: #4479d9;
}
.cid-veC0S71Tmm .card-title,
.cid-veC0S71Tmm .card-box {
  text-align: left;
  color: #000000;
}
.cid-teF7F0zfNk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-teF7F0zfNk .counter-container ol {
  margin-bottom: 0;
}
.cid-teF7F0zfNk .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-teF7F0zfNk .mbr-section-title {
  color: #e43f3f;
}
.cid-vbZ2lAmK68 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vbZ2lAmK68 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbZ2lAmK68 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbZ2lAmK68 .mbr-text,
.cid-vbZ2lAmK68 .mbr-section-btn {
  color: #232323;
}
.cid-vbZ2lAmK68 .card-title,
.cid-vbZ2lAmK68 .card-box {
  color: #ffe161;
}
.cid-vbZ2lAmK68 .mbr-text,
.cid-vbZ2lAmK68 .link-wrap {
  color: #ffffff;
}
.cid-tW4o1VkGRn {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-tW4o1VkGRn .mbr-text,
.cid-tW4o1VkGRn .mbr-section-btn {
  color: #232323;
}
.cid-tW4o1VkGRn .card-title,
.cid-tW4o1VkGRn .card-box {
  color: #ffe885;
}
.cid-tW4o1VkGRn .mbr-text,
.cid-tW4o1VkGRn .link-wrap {
  color: #ffffff;
}
.cid-ve1lpWwyUl {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSU4bJEo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSU4bJEo nav.navbar {
  position: fixed;
}
.cid-vfsSU4bJEo .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-vfsSU4bJEo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSU4bJEo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSU4bJEo .dropdown-item:hover,
.cid-vfsSU4bJEo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSU4bJEo .dropdown-item:hover span {
  color: white;
}
.cid-vfsSU4bJEo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSU4bJEo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSU4bJEo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSU4bJEo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSU4bJEo .nav-link {
  position: relative;
}
.cid-vfsSU4bJEo .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSU4bJEo .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSU4bJEo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSU4bJEo .dropdown-menu,
.cid-vfsSU4bJEo .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSU4bJEo .nav-item:focus,
.cid-vfsSU4bJEo .nav-link:focus {
  outline: none;
}
.cid-vfsSU4bJEo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSU4bJEo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSU4bJEo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSU4bJEo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSU4bJEo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSU4bJEo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSU4bJEo .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-vfsSU4bJEo .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSU4bJEo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSU4bJEo .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSU4bJEo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSU4bJEo .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSU4bJEo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSU4bJEo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSU4bJEo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSU4bJEo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSU4bJEo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSU4bJEo .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-vfsSU4bJEo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSU4bJEo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSU4bJEo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSU4bJEo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSU4bJEo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSU4bJEo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSU4bJEo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSU4bJEo .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-vfsSU4bJEo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSU4bJEo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSU4bJEo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSU4bJEo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSU4bJEo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSU4bJEo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSU4bJEo .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSU4bJEo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSU4bJEo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSU4bJEo .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-vfsSU4bJEo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSU4bJEo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSU4bJEo .dropdown-item.active,
.cid-vfsSU4bJEo .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSU4bJEo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSU4bJEo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSU4bJEo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSU4bJEo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSU4bJEo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSU4bJEo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSU4bJEo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSU4bJEo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSU4bJEo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSU4bJEo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSU4bJEo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSU4bJEo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSU4bJEo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSU4bJEo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSU4bJEo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSU4bJEo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSU4bJEo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSU4bJEo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSU4bJEo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSU4bJEo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSU4bJEo .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-vfsSU4bJEo .navbar {
    height: 70px;
  }
  .cid-vfsSU4bJEo .navbar.opened {
    height: auto;
  }
  .cid-vfsSU4bJEo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSU4qeiS {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSU4qeiS .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSU4qeiS .mbr-text,
.cid-vfsSU4qeiS .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSU5lG5M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSU5lG5M .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSU5lG5M .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSU5lG5M .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSU54DvF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSU54DvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSU54DvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSU54DvF .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSU54DvF .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSU54DvF .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSU54DvF .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSU54DvF .mbr-text,
.cid-vfsSU54DvF .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSU54DvF .card-title,
.cid-vfsSU54DvF .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSU5yqhO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSU5yqhO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSU5yqhO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSU5yqhO .mbr-text,
.cid-vfsSU5yqhO .mbr-section-btn {
  color: #232323;
}
.cid-vfsSU5yqhO .card-title,
.cid-vfsSU5yqhO .card-box {
  color: #ffe161;
}
.cid-vfsSU5yqhO .mbr-text,
.cid-vfsSU5yqhO .link-wrap {
  color: #ffffff;
}
.cid-vfsSU5LwtK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSU5LwtK .mbr-text,
.cid-vfsSU5LwtK .mbr-section-btn {
  color: #232323;
}
.cid-vfsSU5LwtK .card-title,
.cid-vfsSU5LwtK .card-box {
  color: #ffe885;
}
.cid-vfsSU5LwtK .mbr-text,
.cid-vfsSU5LwtK .link-wrap {
  color: #ffffff;
}
.cid-vfsSU5ZGcc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSFsCb6z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSFsCb6z nav.navbar {
  position: fixed;
}
.cid-vfsSFsCb6z .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-vfsSFsCb6z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSFsCb6z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSFsCb6z .dropdown-item:hover,
.cid-vfsSFsCb6z .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSFsCb6z .dropdown-item:hover span {
  color: white;
}
.cid-vfsSFsCb6z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSFsCb6z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSFsCb6z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSFsCb6z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSFsCb6z .nav-link {
  position: relative;
}
.cid-vfsSFsCb6z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSFsCb6z .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSFsCb6z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSFsCb6z .dropdown-menu,
.cid-vfsSFsCb6z .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSFsCb6z .nav-item:focus,
.cid-vfsSFsCb6z .nav-link:focus {
  outline: none;
}
.cid-vfsSFsCb6z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSFsCb6z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSFsCb6z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSFsCb6z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSFsCb6z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSFsCb6z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSFsCb6z .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-vfsSFsCb6z .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSFsCb6z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSFsCb6z .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSFsCb6z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSFsCb6z .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSFsCb6z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSFsCb6z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSFsCb6z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSFsCb6z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSFsCb6z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSFsCb6z .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-vfsSFsCb6z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSFsCb6z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSFsCb6z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSFsCb6z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSFsCb6z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSFsCb6z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSFsCb6z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSFsCb6z .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-vfsSFsCb6z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSFsCb6z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSFsCb6z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSFsCb6z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSFsCb6z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSFsCb6z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSFsCb6z .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSFsCb6z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSFsCb6z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSFsCb6z .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-vfsSFsCb6z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSFsCb6z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSFsCb6z .dropdown-item.active,
.cid-vfsSFsCb6z .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSFsCb6z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSFsCb6z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSFsCb6z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSFsCb6z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSFsCb6z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSFsCb6z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSFsCb6z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSFsCb6z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSFsCb6z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSFsCb6z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSFsCb6z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSFsCb6z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSFsCb6z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSFsCb6z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSFsCb6z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSFsCb6z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSFsCb6z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSFsCb6z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSFsCb6z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSFsCb6z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSFsCb6z .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-vfsSFsCb6z .navbar {
    height: 70px;
  }
  .cid-vfsSFsCb6z .navbar.opened {
    height: auto;
  }
  .cid-vfsSFsCb6z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSFsWSPr {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSFsWSPr .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSFsWSPr .mbr-text,
.cid-vfsSFsWSPr .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSFtU4vc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSFtU4vc .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSFtU4vc .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSFtU4vc .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSFtDe5R {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSFtDe5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSFtDe5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSFtDe5R .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSFtDe5R .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSFtDe5R .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSFtDe5R .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSFtDe5R .mbr-text,
.cid-vfsSFtDe5R .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSFtDe5R .card-title,
.cid-vfsSFtDe5R .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfuqEwpQHM {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #98dee8;
}
.cid-vfuqEwpQHM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfuqEwpQHM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfuqEwpQHM .video-wrapper iframe {
  width: 100%;
}
.cid-vfuqEwpQHM .mbr-section-title,
.cid-vfuqEwpQHM .mbr-section-subtitle,
.cid-vfuqEwpQHM .mbr-text {
  text-align: center;
}
.cid-vfuqFx0ipe {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-vfuqFx0ipe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfuqFx0ipe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfuqFx0ipe .video-wrapper iframe {
  width: 100%;
}
.cid-vfuqFx0ipe .mbr-section-title,
.cid-vfuqFx0ipe .mbr-section-subtitle,
.cid-vfuqFx0ipe .mbr-text {
  text-align: center;
}
.cid-vfsSFu6mBV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSFu6mBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSFu6mBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSFu6mBV .mbr-text,
.cid-vfsSFu6mBV .mbr-section-btn {
  color: #232323;
}
.cid-vfsSFu6mBV .card-title,
.cid-vfsSFu6mBV .card-box {
  color: #ffe161;
}
.cid-vfsSFu6mBV .mbr-text,
.cid-vfsSFu6mBV .link-wrap {
  color: #ffffff;
}
.cid-vfsSFum3k0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSFum3k0 .mbr-text,
.cid-vfsSFum3k0 .mbr-section-btn {
  color: #232323;
}
.cid-vfsSFum3k0 .card-title,
.cid-vfsSFum3k0 .card-box {
  color: #ffe885;
}
.cid-vfsSFum3k0 .mbr-text,
.cid-vfsSFum3k0 .link-wrap {
  color: #ffffff;
}
.cid-vfsSFuzf91 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSICvivH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSICvivH nav.navbar {
  position: fixed;
}
.cid-vfsSICvivH .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-vfsSICvivH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSICvivH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSICvivH .dropdown-item:hover,
.cid-vfsSICvivH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSICvivH .dropdown-item:hover span {
  color: white;
}
.cid-vfsSICvivH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSICvivH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSICvivH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSICvivH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSICvivH .nav-link {
  position: relative;
}
.cid-vfsSICvivH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSICvivH .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSICvivH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSICvivH .dropdown-menu,
.cid-vfsSICvivH .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSICvivH .nav-item:focus,
.cid-vfsSICvivH .nav-link:focus {
  outline: none;
}
.cid-vfsSICvivH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSICvivH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSICvivH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSICvivH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSICvivH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSICvivH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSICvivH .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-vfsSICvivH .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSICvivH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSICvivH .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSICvivH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSICvivH .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSICvivH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSICvivH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSICvivH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSICvivH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSICvivH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSICvivH .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-vfsSICvivH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSICvivH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSICvivH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSICvivH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSICvivH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSICvivH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSICvivH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSICvivH .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-vfsSICvivH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSICvivH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSICvivH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSICvivH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSICvivH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSICvivH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSICvivH .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSICvivH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSICvivH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSICvivH .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-vfsSICvivH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSICvivH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSICvivH .dropdown-item.active,
.cid-vfsSICvivH .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSICvivH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSICvivH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSICvivH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSICvivH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSICvivH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSICvivH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSICvivH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSICvivH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSICvivH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSICvivH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSICvivH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSICvivH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSICvivH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSICvivH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSICvivH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSICvivH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSICvivH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSICvivH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSICvivH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSICvivH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSICvivH .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-vfsSICvivH .navbar {
    height: 70px;
  }
  .cid-vfsSICvivH .navbar.opened {
    height: auto;
  }
  .cid-vfsSICvivH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSICO0WQ {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSICO0WQ .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSICO0WQ .mbr-text,
.cid-vfsSICO0WQ .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSIDLRZZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSIDLRZZ .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSIDLRZZ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSIDLRZZ .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSIDtPPt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSIDtPPt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSIDtPPt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSIDtPPt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSIDtPPt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSIDtPPt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSIDtPPt .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSIDtPPt .mbr-text,
.cid-vfsSIDtPPt .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSIDtPPt .card-title,
.cid-vfsSIDtPPt .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSIDXS4U {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSIDXS4U .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSIDXS4U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSIDXS4U .mbr-text,
.cid-vfsSIDXS4U .mbr-section-btn {
  color: #232323;
}
.cid-vfsSIDXS4U .card-title,
.cid-vfsSIDXS4U .card-box {
  color: #ffe161;
}
.cid-vfsSIDXS4U .mbr-text,
.cid-vfsSIDXS4U .link-wrap {
  color: #ffffff;
}
.cid-vfsSIEdi9q {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSIEdi9q .mbr-text,
.cid-vfsSIEdi9q .mbr-section-btn {
  color: #232323;
}
.cid-vfsSIEdi9q .card-title,
.cid-vfsSIEdi9q .card-box {
  color: #ffe885;
}
.cid-vfsSIEdi9q .mbr-text,
.cid-vfsSIEdi9q .link-wrap {
  color: #ffffff;
}
.cid-vfsSIEsWiA {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSK43RIS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSK43RIS nav.navbar {
  position: fixed;
}
.cid-vfsSK43RIS .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-vfsSK43RIS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSK43RIS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSK43RIS .dropdown-item:hover,
.cid-vfsSK43RIS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSK43RIS .dropdown-item:hover span {
  color: white;
}
.cid-vfsSK43RIS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSK43RIS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSK43RIS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSK43RIS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSK43RIS .nav-link {
  position: relative;
}
.cid-vfsSK43RIS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSK43RIS .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSK43RIS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSK43RIS .dropdown-menu,
.cid-vfsSK43RIS .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSK43RIS .nav-item:focus,
.cid-vfsSK43RIS .nav-link:focus {
  outline: none;
}
.cid-vfsSK43RIS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSK43RIS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSK43RIS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSK43RIS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSK43RIS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSK43RIS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSK43RIS .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-vfsSK43RIS .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSK43RIS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSK43RIS .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSK43RIS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSK43RIS .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSK43RIS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSK43RIS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSK43RIS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSK43RIS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSK43RIS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSK43RIS .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-vfsSK43RIS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSK43RIS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSK43RIS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSK43RIS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSK43RIS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSK43RIS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSK43RIS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSK43RIS .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-vfsSK43RIS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSK43RIS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSK43RIS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSK43RIS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSK43RIS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSK43RIS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSK43RIS .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSK43RIS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSK43RIS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSK43RIS .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-vfsSK43RIS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSK43RIS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSK43RIS .dropdown-item.active,
.cid-vfsSK43RIS .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSK43RIS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSK43RIS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSK43RIS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSK43RIS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSK43RIS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSK43RIS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSK43RIS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSK43RIS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSK43RIS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSK43RIS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSK43RIS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSK43RIS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSK43RIS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSK43RIS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSK43RIS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSK43RIS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSK43RIS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSK43RIS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSK43RIS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSK43RIS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSK43RIS .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-vfsSK43RIS .navbar {
    height: 70px;
  }
  .cid-vfsSK43RIS .navbar.opened {
    height: auto;
  }
  .cid-vfsSK43RIS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSK4ksCk {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSK4ksCk .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSK4ksCk .mbr-text,
.cid-vfsSK4ksCk .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSK5fpRF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSK5fpRF .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSK5fpRF .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSK5fpRF .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSK4ZEh0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSK4ZEh0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSK4ZEh0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSK4ZEh0 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSK4ZEh0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSK4ZEh0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSK4ZEh0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSK4ZEh0 .mbr-text,
.cid-vfsSK4ZEh0 .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSK4ZEh0 .card-title,
.cid-vfsSK4ZEh0 .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSK5rlUn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSK5rlUn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSK5rlUn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSK5rlUn .mbr-text,
.cid-vfsSK5rlUn .mbr-section-btn {
  color: #232323;
}
.cid-vfsSK5rlUn .card-title,
.cid-vfsSK5rlUn .card-box {
  color: #ffe161;
}
.cid-vfsSK5rlUn .mbr-text,
.cid-vfsSK5rlUn .link-wrap {
  color: #ffffff;
}
.cid-vfsSK5NqFc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSK5NqFc .mbr-text,
.cid-vfsSK5NqFc .mbr-section-btn {
  color: #232323;
}
.cid-vfsSK5NqFc .card-title,
.cid-vfsSK5NqFc .card-box {
  color: #ffe885;
}
.cid-vfsSK5NqFc .mbr-text,
.cid-vfsSK5NqFc .link-wrap {
  color: #ffffff;
}
.cid-vfsSK66OV2 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSLHNOIV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSLHNOIV nav.navbar {
  position: fixed;
}
.cid-vfsSLHNOIV .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-vfsSLHNOIV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSLHNOIV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSLHNOIV .dropdown-item:hover,
.cid-vfsSLHNOIV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSLHNOIV .dropdown-item:hover span {
  color: white;
}
.cid-vfsSLHNOIV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSLHNOIV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSLHNOIV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSLHNOIV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSLHNOIV .nav-link {
  position: relative;
}
.cid-vfsSLHNOIV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSLHNOIV .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSLHNOIV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSLHNOIV .dropdown-menu,
.cid-vfsSLHNOIV .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSLHNOIV .nav-item:focus,
.cid-vfsSLHNOIV .nav-link:focus {
  outline: none;
}
.cid-vfsSLHNOIV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSLHNOIV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSLHNOIV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSLHNOIV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSLHNOIV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSLHNOIV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSLHNOIV .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-vfsSLHNOIV .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSLHNOIV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSLHNOIV .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSLHNOIV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSLHNOIV .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSLHNOIV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSLHNOIV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSLHNOIV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSLHNOIV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSLHNOIV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSLHNOIV .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-vfsSLHNOIV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSLHNOIV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSLHNOIV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSLHNOIV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSLHNOIV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSLHNOIV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSLHNOIV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSLHNOIV .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-vfsSLHNOIV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSLHNOIV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSLHNOIV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSLHNOIV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSLHNOIV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSLHNOIV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSLHNOIV .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSLHNOIV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSLHNOIV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSLHNOIV .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-vfsSLHNOIV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSLHNOIV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSLHNOIV .dropdown-item.active,
.cid-vfsSLHNOIV .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSLHNOIV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSLHNOIV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSLHNOIV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSLHNOIV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSLHNOIV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSLHNOIV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSLHNOIV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSLHNOIV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSLHNOIV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSLHNOIV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSLHNOIV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSLHNOIV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSLHNOIV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSLHNOIV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSLHNOIV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSLHNOIV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSLHNOIV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSLHNOIV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSLHNOIV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSLHNOIV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSLHNOIV .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-vfsSLHNOIV .navbar {
    height: 70px;
  }
  .cid-vfsSLHNOIV .navbar.opened {
    height: auto;
  }
  .cid-vfsSLHNOIV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSLI2W6r {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSLI2W6r .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSLI2W6r .mbr-text,
.cid-vfsSLI2W6r .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSLISTGB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSLISTGB .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSLISTGB .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSLISTGB .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSLIEIJY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSLIEIJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSLIEIJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSLIEIJY .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSLIEIJY .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSLIEIJY .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSLIEIJY .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSLIEIJY .mbr-text,
.cid-vfsSLIEIJY .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSLIEIJY .card-title,
.cid-vfsSLIEIJY .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSLJ6wWb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSLJ6wWb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSLJ6wWb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSLJ6wWb .mbr-text,
.cid-vfsSLJ6wWb .mbr-section-btn {
  color: #232323;
}
.cid-vfsSLJ6wWb .card-title,
.cid-vfsSLJ6wWb .card-box {
  color: #ffe161;
}
.cid-vfsSLJ6wWb .mbr-text,
.cid-vfsSLJ6wWb .link-wrap {
  color: #ffffff;
}
.cid-vfsSLJk53U {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSLJk53U .mbr-text,
.cid-vfsSLJk53U .mbr-section-btn {
  color: #232323;
}
.cid-vfsSLJk53U .card-title,
.cid-vfsSLJk53U .card-box {
  color: #ffe885;
}
.cid-vfsSLJk53U .mbr-text,
.cid-vfsSLJk53U .link-wrap {
  color: #ffffff;
}
.cid-vfsSLJxvtE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSNiCrkR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSNiCrkR nav.navbar {
  position: fixed;
}
.cid-vfsSNiCrkR .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-vfsSNiCrkR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSNiCrkR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSNiCrkR .dropdown-item:hover,
.cid-vfsSNiCrkR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSNiCrkR .dropdown-item:hover span {
  color: white;
}
.cid-vfsSNiCrkR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSNiCrkR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSNiCrkR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSNiCrkR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSNiCrkR .nav-link {
  position: relative;
}
.cid-vfsSNiCrkR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSNiCrkR .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSNiCrkR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSNiCrkR .dropdown-menu,
.cid-vfsSNiCrkR .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSNiCrkR .nav-item:focus,
.cid-vfsSNiCrkR .nav-link:focus {
  outline: none;
}
.cid-vfsSNiCrkR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSNiCrkR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSNiCrkR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSNiCrkR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSNiCrkR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSNiCrkR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSNiCrkR .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-vfsSNiCrkR .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSNiCrkR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSNiCrkR .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSNiCrkR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSNiCrkR .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSNiCrkR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSNiCrkR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSNiCrkR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSNiCrkR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSNiCrkR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSNiCrkR .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-vfsSNiCrkR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSNiCrkR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSNiCrkR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSNiCrkR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSNiCrkR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSNiCrkR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSNiCrkR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSNiCrkR .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-vfsSNiCrkR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSNiCrkR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSNiCrkR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSNiCrkR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSNiCrkR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSNiCrkR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSNiCrkR .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSNiCrkR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSNiCrkR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSNiCrkR .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-vfsSNiCrkR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSNiCrkR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSNiCrkR .dropdown-item.active,
.cid-vfsSNiCrkR .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSNiCrkR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSNiCrkR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSNiCrkR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSNiCrkR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSNiCrkR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSNiCrkR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSNiCrkR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSNiCrkR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSNiCrkR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSNiCrkR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSNiCrkR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSNiCrkR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSNiCrkR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSNiCrkR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSNiCrkR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSNiCrkR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSNiCrkR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSNiCrkR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSNiCrkR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSNiCrkR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSNiCrkR .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-vfsSNiCrkR .navbar {
    height: 70px;
  }
  .cid-vfsSNiCrkR .navbar.opened {
    height: auto;
  }
  .cid-vfsSNiCrkR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSNiSNtm {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSNiSNtm .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSNiSNtm .mbr-text,
.cid-vfsSNiSNtm .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSNjMvI5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSNjMvI5 .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSNjMvI5 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSNjMvI5 .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSNjwPZh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSNjwPZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSNjwPZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSNjwPZh .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSNjwPZh .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSNjwPZh .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSNjwPZh .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSNjwPZh .mbr-text,
.cid-vfsSNjwPZh .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSNjwPZh .card-title,
.cid-vfsSNjwPZh .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSNjYKkS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSNjYKkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSNjYKkS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSNjYKkS .mbr-text,
.cid-vfsSNjYKkS .mbr-section-btn {
  color: #232323;
}
.cid-vfsSNjYKkS .card-title,
.cid-vfsSNjYKkS .card-box {
  color: #ffe161;
}
.cid-vfsSNjYKkS .mbr-text,
.cid-vfsSNjYKkS .link-wrap {
  color: #ffffff;
}
.cid-vfsSNkbWC0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSNkbWC0 .mbr-text,
.cid-vfsSNkbWC0 .mbr-section-btn {
  color: #232323;
}
.cid-vfsSNkbWC0 .card-title,
.cid-vfsSNkbWC0 .card-box {
  color: #ffe885;
}
.cid-vfsSNkbWC0 .mbr-text,
.cid-vfsSNkbWC0 .link-wrap {
  color: #ffffff;
}
.cid-vfsSNkovCv {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSPkxDRf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSPkxDRf nav.navbar {
  position: fixed;
}
.cid-vfsSPkxDRf .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-vfsSPkxDRf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSPkxDRf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSPkxDRf .dropdown-item:hover,
.cid-vfsSPkxDRf .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSPkxDRf .dropdown-item:hover span {
  color: white;
}
.cid-vfsSPkxDRf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSPkxDRf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSPkxDRf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSPkxDRf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSPkxDRf .nav-link {
  position: relative;
}
.cid-vfsSPkxDRf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSPkxDRf .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSPkxDRf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSPkxDRf .dropdown-menu,
.cid-vfsSPkxDRf .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSPkxDRf .nav-item:focus,
.cid-vfsSPkxDRf .nav-link:focus {
  outline: none;
}
.cid-vfsSPkxDRf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSPkxDRf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSPkxDRf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSPkxDRf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSPkxDRf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSPkxDRf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSPkxDRf .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-vfsSPkxDRf .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSPkxDRf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSPkxDRf .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSPkxDRf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSPkxDRf .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSPkxDRf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSPkxDRf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSPkxDRf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSPkxDRf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSPkxDRf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSPkxDRf .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-vfsSPkxDRf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSPkxDRf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSPkxDRf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSPkxDRf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSPkxDRf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSPkxDRf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSPkxDRf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSPkxDRf .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-vfsSPkxDRf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSPkxDRf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSPkxDRf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSPkxDRf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSPkxDRf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSPkxDRf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSPkxDRf .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSPkxDRf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSPkxDRf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSPkxDRf .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-vfsSPkxDRf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSPkxDRf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSPkxDRf .dropdown-item.active,
.cid-vfsSPkxDRf .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSPkxDRf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSPkxDRf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSPkxDRf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSPkxDRf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSPkxDRf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSPkxDRf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSPkxDRf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSPkxDRf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSPkxDRf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSPkxDRf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSPkxDRf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSPkxDRf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSPkxDRf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSPkxDRf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSPkxDRf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSPkxDRf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSPkxDRf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSPkxDRf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSPkxDRf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSPkxDRf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSPkxDRf .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-vfsSPkxDRf .navbar {
    height: 70px;
  }
  .cid-vfsSPkxDRf .navbar.opened {
    height: auto;
  }
  .cid-vfsSPkxDRf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSPkNiA8 {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSPkNiA8 .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSPkNiA8 .mbr-text,
.cid-vfsSPkNiA8 .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSPlDqMU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSPlDqMU .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSPlDqMU .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSPlDqMU .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSPllBHz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSPllBHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSPllBHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSPllBHz .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSPllBHz .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSPllBHz .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSPllBHz .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSPllBHz .mbr-text,
.cid-vfsSPllBHz .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSPllBHz .card-title,
.cid-vfsSPllBHz .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSPlOTj7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSPlOTj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSPlOTj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSPlOTj7 .mbr-text,
.cid-vfsSPlOTj7 .mbr-section-btn {
  color: #232323;
}
.cid-vfsSPlOTj7 .card-title,
.cid-vfsSPlOTj7 .card-box {
  color: #ffe161;
}
.cid-vfsSPlOTj7 .mbr-text,
.cid-vfsSPlOTj7 .link-wrap {
  color: #ffffff;
}
.cid-vfsSPm14Sg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSPm14Sg .mbr-text,
.cid-vfsSPm14Sg .mbr-section-btn {
  color: #232323;
}
.cid-vfsSPm14Sg .card-title,
.cid-vfsSPm14Sg .card-box {
  color: #ffe885;
}
.cid-vfsSPm14Sg .mbr-text,
.cid-vfsSPm14Sg .link-wrap {
  color: #ffffff;
}
.cid-vfsSPmhupt {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSQGtqZV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSQGtqZV nav.navbar {
  position: fixed;
}
.cid-vfsSQGtqZV .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-vfsSQGtqZV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSQGtqZV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSQGtqZV .dropdown-item:hover,
.cid-vfsSQGtqZV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSQGtqZV .dropdown-item:hover span {
  color: white;
}
.cid-vfsSQGtqZV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSQGtqZV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSQGtqZV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSQGtqZV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSQGtqZV .nav-link {
  position: relative;
}
.cid-vfsSQGtqZV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSQGtqZV .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSQGtqZV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSQGtqZV .dropdown-menu,
.cid-vfsSQGtqZV .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSQGtqZV .nav-item:focus,
.cid-vfsSQGtqZV .nav-link:focus {
  outline: none;
}
.cid-vfsSQGtqZV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSQGtqZV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSQGtqZV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSQGtqZV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSQGtqZV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSQGtqZV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSQGtqZV .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-vfsSQGtqZV .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSQGtqZV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSQGtqZV .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSQGtqZV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSQGtqZV .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSQGtqZV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSQGtqZV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSQGtqZV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSQGtqZV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSQGtqZV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSQGtqZV .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-vfsSQGtqZV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSQGtqZV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSQGtqZV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSQGtqZV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSQGtqZV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSQGtqZV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSQGtqZV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSQGtqZV .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-vfsSQGtqZV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSQGtqZV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSQGtqZV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSQGtqZV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSQGtqZV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSQGtqZV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSQGtqZV .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSQGtqZV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSQGtqZV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSQGtqZV .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-vfsSQGtqZV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSQGtqZV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSQGtqZV .dropdown-item.active,
.cid-vfsSQGtqZV .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSQGtqZV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSQGtqZV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSQGtqZV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSQGtqZV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSQGtqZV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSQGtqZV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSQGtqZV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSQGtqZV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSQGtqZV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSQGtqZV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSQGtqZV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSQGtqZV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSQGtqZV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSQGtqZV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSQGtqZV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSQGtqZV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSQGtqZV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSQGtqZV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSQGtqZV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSQGtqZV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSQGtqZV .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-vfsSQGtqZV .navbar {
    height: 70px;
  }
  .cid-vfsSQGtqZV .navbar.opened {
    height: auto;
  }
  .cid-vfsSQGtqZV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSQGIoZ3 {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSQGIoZ3 .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSQGIoZ3 .mbr-text,
.cid-vfsSQGIoZ3 .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSQHyABE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSQHyABE .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSQHyABE .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSQHyABE .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSQHkw3A {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSQHkw3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSQHkw3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSQHkw3A .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSQHkw3A .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSQHkw3A .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSQHkw3A .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSQHkw3A .mbr-text,
.cid-vfsSQHkw3A .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSQHkw3A .card-title,
.cid-vfsSQHkw3A .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSQHM1Vt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSQHM1Vt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSQHM1Vt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSQHM1Vt .mbr-text,
.cid-vfsSQHM1Vt .mbr-section-btn {
  color: #232323;
}
.cid-vfsSQHM1Vt .card-title,
.cid-vfsSQHM1Vt .card-box {
  color: #ffe161;
}
.cid-vfsSQHM1Vt .mbr-text,
.cid-vfsSQHM1Vt .link-wrap {
  color: #ffffff;
}
.cid-vfsSQI12Ky {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSQI12Ky .mbr-text,
.cid-vfsSQI12Ky .mbr-section-btn {
  color: #232323;
}
.cid-vfsSQI12Ky .card-title,
.cid-vfsSQI12Ky .card-box {
  color: #ffe885;
}
.cid-vfsSQI12Ky .mbr-text,
.cid-vfsSQI12Ky .link-wrap {
  color: #ffffff;
}
.cid-vfsSQIgAc7 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSRDdjWE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSRDdjWE nav.navbar {
  position: fixed;
}
.cid-vfsSRDdjWE .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-vfsSRDdjWE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSRDdjWE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSRDdjWE .dropdown-item:hover,
.cid-vfsSRDdjWE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSRDdjWE .dropdown-item:hover span {
  color: white;
}
.cid-vfsSRDdjWE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSRDdjWE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSRDdjWE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSRDdjWE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSRDdjWE .nav-link {
  position: relative;
}
.cid-vfsSRDdjWE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSRDdjWE .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSRDdjWE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSRDdjWE .dropdown-menu,
.cid-vfsSRDdjWE .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSRDdjWE .nav-item:focus,
.cid-vfsSRDdjWE .nav-link:focus {
  outline: none;
}
.cid-vfsSRDdjWE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSRDdjWE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSRDdjWE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSRDdjWE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSRDdjWE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSRDdjWE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSRDdjWE .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-vfsSRDdjWE .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSRDdjWE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSRDdjWE .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSRDdjWE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSRDdjWE .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSRDdjWE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSRDdjWE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSRDdjWE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSRDdjWE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSRDdjWE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSRDdjWE .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-vfsSRDdjWE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSRDdjWE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSRDdjWE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSRDdjWE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSRDdjWE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSRDdjWE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSRDdjWE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSRDdjWE .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-vfsSRDdjWE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSRDdjWE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSRDdjWE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSRDdjWE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSRDdjWE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSRDdjWE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSRDdjWE .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSRDdjWE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSRDdjWE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSRDdjWE .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-vfsSRDdjWE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSRDdjWE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSRDdjWE .dropdown-item.active,
.cid-vfsSRDdjWE .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSRDdjWE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSRDdjWE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSRDdjWE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSRDdjWE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSRDdjWE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSRDdjWE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSRDdjWE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSRDdjWE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSRDdjWE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSRDdjWE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSRDdjWE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSRDdjWE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSRDdjWE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSRDdjWE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSRDdjWE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSRDdjWE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSRDdjWE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSRDdjWE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSRDdjWE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSRDdjWE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSRDdjWE .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-vfsSRDdjWE .navbar {
    height: 70px;
  }
  .cid-vfsSRDdjWE .navbar.opened {
    height: auto;
  }
  .cid-vfsSRDdjWE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSRDtujg {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSRDtujg .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSRDtujg .mbr-text,
.cid-vfsSRDtujg .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSREhQGZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSREhQGZ .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSREhQGZ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSREhQGZ .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSRE1g6d {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSRE1g6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSRE1g6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSRE1g6d .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSRE1g6d .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSRE1g6d .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSRE1g6d .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSRE1g6d .mbr-text,
.cid-vfsSRE1g6d .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSRE1g6d .card-title,
.cid-vfsSRE1g6d .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSREsJUT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSREsJUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSREsJUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSREsJUT .mbr-text,
.cid-vfsSREsJUT .mbr-section-btn {
  color: #232323;
}
.cid-vfsSREsJUT .card-title,
.cid-vfsSREsJUT .card-box {
  color: #ffe161;
}
.cid-vfsSREsJUT .mbr-text,
.cid-vfsSREsJUT .link-wrap {
  color: #ffffff;
}
.cid-vfsSREFivj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSREFivj .mbr-text,
.cid-vfsSREFivj .mbr-section-btn {
  color: #232323;
}
.cid-vfsSREFivj .card-title,
.cid-vfsSREFivj .card-box {
  color: #ffe885;
}
.cid-vfsSREFivj .mbr-text,
.cid-vfsSREFivj .link-wrap {
  color: #ffffff;
}
.cid-vfsSREVcwF {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSSZVeBS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSSZVeBS nav.navbar {
  position: fixed;
}
.cid-vfsSSZVeBS .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-vfsSSZVeBS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSSZVeBS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSSZVeBS .dropdown-item:hover,
.cid-vfsSSZVeBS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSSZVeBS .dropdown-item:hover span {
  color: white;
}
.cid-vfsSSZVeBS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSSZVeBS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSSZVeBS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSSZVeBS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSSZVeBS .nav-link {
  position: relative;
}
.cid-vfsSSZVeBS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSSZVeBS .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSSZVeBS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSSZVeBS .dropdown-menu,
.cid-vfsSSZVeBS .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSSZVeBS .nav-item:focus,
.cid-vfsSSZVeBS .nav-link:focus {
  outline: none;
}
.cid-vfsSSZVeBS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSSZVeBS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSSZVeBS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSSZVeBS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSSZVeBS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSSZVeBS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSSZVeBS .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-vfsSSZVeBS .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSSZVeBS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSSZVeBS .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSSZVeBS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSSZVeBS .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSSZVeBS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSSZVeBS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSSZVeBS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSSZVeBS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSSZVeBS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSSZVeBS .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-vfsSSZVeBS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSSZVeBS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSSZVeBS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSSZVeBS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSSZVeBS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSSZVeBS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSSZVeBS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSSZVeBS .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-vfsSSZVeBS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSSZVeBS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSSZVeBS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSSZVeBS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSSZVeBS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSSZVeBS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSSZVeBS .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSSZVeBS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSSZVeBS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSSZVeBS .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-vfsSSZVeBS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSSZVeBS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSSZVeBS .dropdown-item.active,
.cid-vfsSSZVeBS .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSSZVeBS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSSZVeBS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSSZVeBS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSSZVeBS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSSZVeBS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSSZVeBS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSSZVeBS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSSZVeBS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSSZVeBS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSSZVeBS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSSZVeBS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSSZVeBS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSSZVeBS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSSZVeBS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSSZVeBS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSSZVeBS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSSZVeBS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSSZVeBS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSSZVeBS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSSZVeBS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSSZVeBS .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-vfsSSZVeBS .navbar {
    height: 70px;
  }
  .cid-vfsSSZVeBS .navbar.opened {
    height: auto;
  }
  .cid-vfsSSZVeBS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsST0bqlG {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsST0bqlG .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsST0bqlG .mbr-text,
.cid-vfsST0bqlG .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsST10y8k {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsST10y8k .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsST10y8k .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsST10y8k .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsST0KMov {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsST0KMov .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsST0KMov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsST0KMov .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsST0KMov .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsST0KMov .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsST0KMov .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsST0KMov .mbr-text,
.cid-vfsST0KMov .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsST0KMov .card-title,
.cid-vfsST0KMov .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsST1d1yy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsST1d1yy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsST1d1yy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsST1d1yy .mbr-text,
.cid-vfsST1d1yy .mbr-section-btn {
  color: #232323;
}
.cid-vfsST1d1yy .card-title,
.cid-vfsST1d1yy .card-box {
  color: #ffe161;
}
.cid-vfsST1d1yy .mbr-text,
.cid-vfsST1d1yy .link-wrap {
  color: #ffffff;
}
.cid-vfsST1qPrA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsST1qPrA .mbr-text,
.cid-vfsST1qPrA .mbr-section-btn {
  color: #232323;
}
.cid-vfsST1qPrA .card-title,
.cid-vfsST1qPrA .card-box {
  color: #ffe885;
}
.cid-vfsST1qPrA .mbr-text,
.cid-vfsST1qPrA .link-wrap {
  color: #ffffff;
}
.cid-vfsST1D3go {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSVmqIQh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSVmqIQh nav.navbar {
  position: fixed;
}
.cid-vfsSVmqIQh .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-vfsSVmqIQh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSVmqIQh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSVmqIQh .dropdown-item:hover,
.cid-vfsSVmqIQh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSVmqIQh .dropdown-item:hover span {
  color: white;
}
.cid-vfsSVmqIQh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSVmqIQh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSVmqIQh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSVmqIQh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSVmqIQh .nav-link {
  position: relative;
}
.cid-vfsSVmqIQh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSVmqIQh .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSVmqIQh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSVmqIQh .dropdown-menu,
.cid-vfsSVmqIQh .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSVmqIQh .nav-item:focus,
.cid-vfsSVmqIQh .nav-link:focus {
  outline: none;
}
.cid-vfsSVmqIQh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSVmqIQh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSVmqIQh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSVmqIQh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSVmqIQh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSVmqIQh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSVmqIQh .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-vfsSVmqIQh .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSVmqIQh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSVmqIQh .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSVmqIQh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSVmqIQh .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSVmqIQh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSVmqIQh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSVmqIQh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSVmqIQh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSVmqIQh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSVmqIQh .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-vfsSVmqIQh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSVmqIQh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSVmqIQh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSVmqIQh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSVmqIQh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSVmqIQh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSVmqIQh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSVmqIQh .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-vfsSVmqIQh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSVmqIQh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSVmqIQh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSVmqIQh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSVmqIQh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSVmqIQh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSVmqIQh .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSVmqIQh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSVmqIQh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSVmqIQh .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-vfsSVmqIQh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSVmqIQh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSVmqIQh .dropdown-item.active,
.cid-vfsSVmqIQh .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSVmqIQh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSVmqIQh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSVmqIQh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSVmqIQh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSVmqIQh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSVmqIQh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSVmqIQh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSVmqIQh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSVmqIQh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSVmqIQh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSVmqIQh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSVmqIQh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSVmqIQh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSVmqIQh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSVmqIQh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSVmqIQh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSVmqIQh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSVmqIQh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSVmqIQh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSVmqIQh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSVmqIQh .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-vfsSVmqIQh .navbar {
    height: 70px;
  }
  .cid-vfsSVmqIQh .navbar.opened {
    height: auto;
  }
  .cid-vfsSVmqIQh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSVmFaEI {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSVmFaEI .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSVmFaEI .mbr-text,
.cid-vfsSVmFaEI .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSVnyxgH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSVnyxgH .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSVnyxgH .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSVnyxgH .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSVnjxth {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSVnjxth .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSVnjxth .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSVnjxth .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSVnjxth .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSVnjxth .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSVnjxth .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSVnjxth .mbr-text,
.cid-vfsSVnjxth .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSVnjxth .card-title,
.cid-vfsSVnjxth .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSVnI9p5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSVnI9p5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSVnI9p5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSVnI9p5 .mbr-text,
.cid-vfsSVnI9p5 .mbr-section-btn {
  color: #232323;
}
.cid-vfsSVnI9p5 .card-title,
.cid-vfsSVnI9p5 .card-box {
  color: #ffe161;
}
.cid-vfsSVnI9p5 .mbr-text,
.cid-vfsSVnI9p5 .link-wrap {
  color: #ffffff;
}
.cid-vfsSVnXhSm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSVnXhSm .mbr-text,
.cid-vfsSVnXhSm .mbr-section-btn {
  color: #232323;
}
.cid-vfsSVnXhSm .card-title,
.cid-vfsSVnXhSm .card-box {
  color: #ffe885;
}
.cid-vfsSVnXhSm .mbr-text,
.cid-vfsSVnXhSm .link-wrap {
  color: #ffffff;
}
.cid-vfsSVoaV2X {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSWwv7wL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSWwv7wL nav.navbar {
  position: fixed;
}
.cid-vfsSWwv7wL .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-vfsSWwv7wL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSWwv7wL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSWwv7wL .dropdown-item:hover,
.cid-vfsSWwv7wL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSWwv7wL .dropdown-item:hover span {
  color: white;
}
.cid-vfsSWwv7wL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSWwv7wL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSWwv7wL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSWwv7wL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSWwv7wL .nav-link {
  position: relative;
}
.cid-vfsSWwv7wL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSWwv7wL .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSWwv7wL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSWwv7wL .dropdown-menu,
.cid-vfsSWwv7wL .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSWwv7wL .nav-item:focus,
.cid-vfsSWwv7wL .nav-link:focus {
  outline: none;
}
.cid-vfsSWwv7wL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSWwv7wL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSWwv7wL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSWwv7wL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSWwv7wL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSWwv7wL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSWwv7wL .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-vfsSWwv7wL .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSWwv7wL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSWwv7wL .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSWwv7wL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSWwv7wL .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSWwv7wL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSWwv7wL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSWwv7wL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSWwv7wL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSWwv7wL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSWwv7wL .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-vfsSWwv7wL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSWwv7wL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSWwv7wL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSWwv7wL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSWwv7wL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSWwv7wL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSWwv7wL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSWwv7wL .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-vfsSWwv7wL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSWwv7wL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSWwv7wL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSWwv7wL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSWwv7wL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSWwv7wL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSWwv7wL .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSWwv7wL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSWwv7wL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSWwv7wL .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-vfsSWwv7wL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSWwv7wL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSWwv7wL .dropdown-item.active,
.cid-vfsSWwv7wL .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSWwv7wL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSWwv7wL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSWwv7wL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSWwv7wL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSWwv7wL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSWwv7wL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSWwv7wL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSWwv7wL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSWwv7wL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSWwv7wL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSWwv7wL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSWwv7wL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSWwv7wL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSWwv7wL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSWwv7wL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSWwv7wL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSWwv7wL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSWwv7wL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSWwv7wL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSWwv7wL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSWwv7wL .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-vfsSWwv7wL .navbar {
    height: 70px;
  }
  .cid-vfsSWwv7wL .navbar.opened {
    height: auto;
  }
  .cid-vfsSWwv7wL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSWwJRDf {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSWwJRDf .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSWwJRDf .mbr-text,
.cid-vfsSWwJRDf .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSWxxTE5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSWxxTE5 .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSWxxTE5 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSWxxTE5 .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSWxk1wx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSWxk1wx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSWxk1wx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSWxk1wx .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSWxk1wx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSWxk1wx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSWxk1wx .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSWxk1wx .mbr-text,
.cid-vfsSWxk1wx .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSWxk1wx .card-title,
.cid-vfsSWxk1wx .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSWxN8jg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSWxN8jg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSWxN8jg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSWxN8jg .mbr-text,
.cid-vfsSWxN8jg .mbr-section-btn {
  color: #232323;
}
.cid-vfsSWxN8jg .card-title,
.cid-vfsSWxN8jg .card-box {
  color: #ffe161;
}
.cid-vfsSWxN8jg .mbr-text,
.cid-vfsSWxN8jg .link-wrap {
  color: #ffffff;
}
.cid-vfsSWy0SuI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSWy0SuI .mbr-text,
.cid-vfsSWy0SuI .mbr-section-btn {
  color: #232323;
}
.cid-vfsSWy0SuI .card-title,
.cid-vfsSWy0SuI .card-box {
  color: #ffe885;
}
.cid-vfsSWy0SuI .mbr-text,
.cid-vfsSWy0SuI .link-wrap {
  color: #ffffff;
}
.cid-vfsSWyeFmn {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSY06HoF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSY06HoF nav.navbar {
  position: fixed;
}
.cid-vfsSY06HoF .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-vfsSY06HoF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSY06HoF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSY06HoF .dropdown-item:hover,
.cid-vfsSY06HoF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSY06HoF .dropdown-item:hover span {
  color: white;
}
.cid-vfsSY06HoF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSY06HoF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSY06HoF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSY06HoF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSY06HoF .nav-link {
  position: relative;
}
.cid-vfsSY06HoF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSY06HoF .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSY06HoF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSY06HoF .dropdown-menu,
.cid-vfsSY06HoF .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSY06HoF .nav-item:focus,
.cid-vfsSY06HoF .nav-link:focus {
  outline: none;
}
.cid-vfsSY06HoF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSY06HoF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSY06HoF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSY06HoF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSY06HoF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSY06HoF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSY06HoF .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-vfsSY06HoF .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSY06HoF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSY06HoF .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSY06HoF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSY06HoF .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSY06HoF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSY06HoF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSY06HoF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSY06HoF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSY06HoF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSY06HoF .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-vfsSY06HoF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSY06HoF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSY06HoF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSY06HoF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSY06HoF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSY06HoF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSY06HoF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSY06HoF .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-vfsSY06HoF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSY06HoF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSY06HoF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSY06HoF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSY06HoF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSY06HoF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSY06HoF .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSY06HoF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSY06HoF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSY06HoF .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-vfsSY06HoF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSY06HoF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSY06HoF .dropdown-item.active,
.cid-vfsSY06HoF .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSY06HoF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSY06HoF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSY06HoF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSY06HoF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSY06HoF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSY06HoF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSY06HoF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSY06HoF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSY06HoF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSY06HoF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSY06HoF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSY06HoF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSY06HoF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSY06HoF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSY06HoF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSY06HoF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSY06HoF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSY06HoF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSY06HoF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSY06HoF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSY06HoF .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-vfsSY06HoF .navbar {
    height: 70px;
  }
  .cid-vfsSY06HoF .navbar.opened {
    height: auto;
  }
  .cid-vfsSY06HoF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSY0lmwB {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSY0lmwB .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSY0lmwB .mbr-text,
.cid-vfsSY0lmwB .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSY17duk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSY17duk .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSY17duk .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSY17duk .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSY0SBfg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSY0SBfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSY0SBfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSY0SBfg .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSY0SBfg .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSY0SBfg .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSY0SBfg .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSY0SBfg .mbr-text,
.cid-vfsSY0SBfg .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSY0SBfg .card-title,
.cid-vfsSY0SBfg .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSY1jbDv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSY1jbDv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSY1jbDv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSY1jbDv .mbr-text,
.cid-vfsSY1jbDv .mbr-section-btn {
  color: #232323;
}
.cid-vfsSY1jbDv .card-title,
.cid-vfsSY1jbDv .card-box {
  color: #ffe161;
}
.cid-vfsSY1jbDv .mbr-text,
.cid-vfsSY1jbDv .link-wrap {
  color: #ffffff;
}
.cid-vfsSY1yoz4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSY1yoz4 .mbr-text,
.cid-vfsSY1yoz4 .mbr-section-btn {
  color: #232323;
}
.cid-vfsSY1yoz4 .card-title,
.cid-vfsSY1yoz4 .card-box {
  color: #ffe885;
}
.cid-vfsSY1yoz4 .mbr-text,
.cid-vfsSY1yoz4 .link-wrap {
  color: #ffffff;
}
.cid-vfsSY1LkwI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vfsSZAMbiJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfsSZAMbiJ nav.navbar {
  position: fixed;
}
.cid-vfsSZAMbiJ .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-vfsSZAMbiJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vfsSZAMbiJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vfsSZAMbiJ .dropdown-item:hover,
.cid-vfsSZAMbiJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-vfsSZAMbiJ .dropdown-item:hover span {
  color: white;
}
.cid-vfsSZAMbiJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfsSZAMbiJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfsSZAMbiJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfsSZAMbiJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfsSZAMbiJ .nav-link {
  position: relative;
}
.cid-vfsSZAMbiJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfsSZAMbiJ .container {
    flex-wrap: nowrap;
  }
}
.cid-vfsSZAMbiJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfsSZAMbiJ .dropdown-menu,
.cid-vfsSZAMbiJ .navbar.opened {
  background: #ffffff !important;
}
.cid-vfsSZAMbiJ .nav-item:focus,
.cid-vfsSZAMbiJ .nav-link:focus {
  outline: none;
}
.cid-vfsSZAMbiJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfsSZAMbiJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfsSZAMbiJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfsSZAMbiJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfsSZAMbiJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfsSZAMbiJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfsSZAMbiJ .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-vfsSZAMbiJ .navbar.opened {
  transition: all 0.3s;
}
.cid-vfsSZAMbiJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfsSZAMbiJ .navbar .navbar-logo img {
  width: auto;
}
.cid-vfsSZAMbiJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfsSZAMbiJ .navbar.collapsed {
  justify-content: center;
}
.cid-vfsSZAMbiJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfsSZAMbiJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfsSZAMbiJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-vfsSZAMbiJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfsSZAMbiJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfsSZAMbiJ .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-vfsSZAMbiJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfsSZAMbiJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfsSZAMbiJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfsSZAMbiJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfsSZAMbiJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfsSZAMbiJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfsSZAMbiJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfsSZAMbiJ .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-vfsSZAMbiJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfsSZAMbiJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfsSZAMbiJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfsSZAMbiJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfsSZAMbiJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfsSZAMbiJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfsSZAMbiJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfsSZAMbiJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfsSZAMbiJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfsSZAMbiJ .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-vfsSZAMbiJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfsSZAMbiJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfsSZAMbiJ .dropdown-item.active,
.cid-vfsSZAMbiJ .dropdown-item:active {
  background-color: transparent;
}
.cid-vfsSZAMbiJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfsSZAMbiJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfsSZAMbiJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfsSZAMbiJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vfsSZAMbiJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfsSZAMbiJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfsSZAMbiJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfsSZAMbiJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfsSZAMbiJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vfsSZAMbiJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfsSZAMbiJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfsSZAMbiJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSZAMbiJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfsSZAMbiJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfsSZAMbiJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSZAMbiJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfsSZAMbiJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfsSZAMbiJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfsSZAMbiJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfsSZAMbiJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfsSZAMbiJ .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-vfsSZAMbiJ .navbar {
    height: 70px;
  }
  .cid-vfsSZAMbiJ .navbar.opened {
    height: auto;
  }
  .cid-vfsSZAMbiJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vfsSZB0FAm {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-vfsSZB0FAm .mbr-section-title {
  text-align: right;
  color: #ffe885;
}
.cid-vfsSZB0FAm .mbr-text,
.cid-vfsSZB0FAm .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-vfsSZBTHPc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vfsSZBTHPc .counter-container ol {
  margin-bottom: 0;
}
.cid-vfsSZBTHPc .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-vfsSZBTHPc .mbr-section-title {
  color: #e43f3f;
}
.cid-vfsSZBGfDj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #4479d9;
}
.cid-vfsSZBGfDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSZBGfDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSZBGfDj .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vfsSZBGfDj .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vfsSZBGfDj .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vfsSZBGfDj .card-wrapper {
    padding: 4rem;
  }
}
.cid-vfsSZBGfDj .mbr-text,
.cid-vfsSZBGfDj .mbr-section-btn {
  color: #4479d9;
}
.cid-vfsSZBGfDj .card-title,
.cid-vfsSZBGfDj .card-box {
  text-align: left;
  color: #000000;
}
.cid-vfsSZC79gx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
}
.cid-vfsSZC79gx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfsSZC79gx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfsSZC79gx .mbr-text,
.cid-vfsSZC79gx .mbr-section-btn {
  color: #232323;
}
.cid-vfsSZC79gx .card-title,
.cid-vfsSZC79gx .card-box {
  color: #ffe161;
}
.cid-vfsSZC79gx .mbr-text,
.cid-vfsSZC79gx .link-wrap {
  color: #ffffff;
}
.cid-vfsSZCklPK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1298.png");
}
.cid-vfsSZCklPK .mbr-text,
.cid-vfsSZCklPK .mbr-section-btn {
  color: #232323;
}
.cid-vfsSZCklPK .card-title,
.cid-vfsSZCklPK .card-box {
  color: #ffe885;
}
.cid-vfsSZCklPK .mbr-text,
.cid-vfsSZCklPK .link-wrap {
  color: #ffffff;
}
.cid-vfsSZCxdwC {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
