.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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: #154bab !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: #154bab !important;
  border-color: #154bab !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: #0c295e !important;
  border-color: #0c295e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0c295e !important;
  border-color: #0c295e !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: #154bab;
  color: #154bab;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0c295e !important;
  background-color: transparent!important;
  border-color: #0c295e !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #154bab !important;
  border-color: #154bab !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #154bab !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: #0a2350 !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: #154bab;
}
.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: #154bab;
  border-color: #154bab;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #154bab;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #558bea;
}
.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: #154bab !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: #154bab;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #154bab;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #154bab;
}
.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: #154bab;
  border-bottom-color: #154bab;
}
.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: #154bab !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='%23154bab' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #ffffff !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v13okpfJpv {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v13okpfJpv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v13okpfJpv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v13okpfJpv .mbr-section-title {
  color: #bed3f9;
}
.cid-v10rPERwlW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e6c63b;
}
@media (min-width: 992px) {
  .cid-v10rPERwlW .carousel {
    min-height: 500px;
  }
  .cid-v10rPERwlW .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v10rPERwlW .carousel {
    min-height: 325px;
  }
  .cid-v10rPERwlW .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v10rPERwlW .carousel {
    min-height: 275px;
  }
  .cid-v10rPERwlW .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-v10rPERwlW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v10rPERwlW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v10rPERwlW .carousel,
.cid-v10rPERwlW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v10rPERwlW .item-wrapper {
  width: 100%;
}
.cid-v10rPERwlW .carousel-caption {
  bottom: 40px;
}
.cid-v10rPERwlW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v10rPERwlW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v10rPERwlW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v10rPERwlW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v10rPERwlW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v10rPERwlW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v10rPERwlW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v10rPERwlW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v10rPERwlW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v10rPERwlW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v10rPERwlW .carousel-indicators li.active,
.cid-v10rPERwlW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v10rPERwlW .carousel-indicators li::after,
.cid-v10rPERwlW .carousel-indicators li::before {
  content: none;
}
.cid-v10rPERwlW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v10rPERwlW .carousel-indicators {
    display: none !important;
  }
}
.cid-vrgF3rBOBx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vrgF3rBOBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrgF3rBOBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrgF3rBOBx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrgF3rBOBx .row {
  flex-direction: row-reverse;
}
.cid-vrgF3rBOBx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vrgF3rBOBx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFzxmVl7J6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e3e8f3;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-v10u9TYCjF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #031637;
}
.cid-v10u9TYCjF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v10u9TYCjF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v10u9TYCjF .row {
  flex-direction: row-reverse;
}
.cid-v10u9TYCjF .video-wrapper iframe {
  width: 100%;
}
.cid-v10u9TYCjF .mbr-section-title,
.cid-v10u9TYCjF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v10u9TYCjF .text-wrapper {
    padding: 2rem;
  }
}
.cid-v10u9TYCjF .mbr-text {
  color: #ffffff;
}
.cid-v10u9TYCjF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v10u9TYCjF .mbr-section-title {
  color: #ffffff;
}
.cid-v10u9TYCjF .mbr-description {
  color: #ffffff;
}
.cid-v13qq8TRxA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #031637;
}
.cid-v13qq8TRxA .mbr-text {
  color: #ffffff;
}
.cid-v13DpTKiV0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-v13DpTKiV0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v13DpTKiV0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v13DpTKiV0 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c234c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-v13DpTKiV0 .mbr-section-title {
  color: #c30808;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-v13EYQJ8cy {
  z-index: 1000;
  width: 100%;
}
.cid-v13EYQJ8cy nav.navbar {
  position: fixed;
}
.cid-v13EYQJ8cy .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-v13EYQJ8cy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v13EYQJ8cy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v13EYQJ8cy .dropdown-item:hover,
.cid-v13EYQJ8cy .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v13EYQJ8cy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v13EYQJ8cy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v13EYQJ8cy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v13EYQJ8cy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v13EYQJ8cy .nav-link {
  position: relative;
}
.cid-v13EYQJ8cy .container {
  display: flex;
  margin: auto;
}
.cid-v13EYQJ8cy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v13EYQJ8cy .dropdown-menu,
.cid-v13EYQJ8cy .navbar.opened {
  background: #ffffff !important;
}
.cid-v13EYQJ8cy .nav-item:focus,
.cid-v13EYQJ8cy .nav-link:focus {
  outline: none;
}
.cid-v13EYQJ8cy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v13EYQJ8cy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v13EYQJ8cy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v13EYQJ8cy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v13EYQJ8cy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v13EYQJ8cy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v13EYQJ8cy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v13EYQJ8cy .navbar.opened {
  transition: all 0.3s;
}
.cid-v13EYQJ8cy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v13EYQJ8cy .navbar .navbar-logo img {
  width: auto;
}
.cid-v13EYQJ8cy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v13EYQJ8cy .navbar.collapsed {
  justify-content: center;
}
.cid-v13EYQJ8cy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v13EYQJ8cy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v13EYQJ8cy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v13EYQJ8cy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v13EYQJ8cy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v13EYQJ8cy .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-v13EYQJ8cy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v13EYQJ8cy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v13EYQJ8cy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v13EYQJ8cy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v13EYQJ8cy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v13EYQJ8cy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v13EYQJ8cy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v13EYQJ8cy .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-v13EYQJ8cy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v13EYQJ8cy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v13EYQJ8cy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v13EYQJ8cy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v13EYQJ8cy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v13EYQJ8cy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v13EYQJ8cy .navbar.navbar-short {
  min-height: 60px;
}
.cid-v13EYQJ8cy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v13EYQJ8cy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v13EYQJ8cy .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-v13EYQJ8cy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v13EYQJ8cy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v13EYQJ8cy .dropdown-item.active,
.cid-v13EYQJ8cy .dropdown-item:active {
  background-color: transparent;
}
.cid-v13EYQJ8cy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v13EYQJ8cy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v13EYQJ8cy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v13EYQJ8cy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v13EYQJ8cy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v13EYQJ8cy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v13EYQJ8cy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v13EYQJ8cy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v13EYQJ8cy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v13EYQJ8cy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v13EYQJ8cy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v13EYQJ8cy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v13EYQJ8cy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v13EYQJ8cy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v13EYQJ8cy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v13EYQJ8cy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v13EYQJ8cy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v13EYQJ8cy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v13EYQJ8cy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v13EYQJ8cy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v13EYQJ8cy .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-v13EYQJ8cy .navbar {
    height: 70px;
  }
  .cid-v13EYQJ8cy .navbar.opened {
    height: auto;
  }
  .cid-v13EYQJ8cy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v13EYRr214 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v13EYRr214 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v13EYRr214 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v13EYRr214 .mbr-section-title {
  color: #bed3f9;
}
.cid-v13EYRP5qH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffe885;
}
@media (min-width: 992px) {
  .cid-v13EYRP5qH .carousel {
    min-height: 500px;
  }
  .cid-v13EYRP5qH .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v13EYRP5qH .carousel {
    min-height: 325px;
  }
  .cid-v13EYRP5qH .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v13EYRP5qH .carousel {
    min-height: 275px;
  }
  .cid-v13EYRP5qH .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-v13EYRP5qH .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v13EYRP5qH .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v13EYRP5qH .carousel,
.cid-v13EYRP5qH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v13EYRP5qH .item-wrapper {
  width: 100%;
}
.cid-v13EYRP5qH .carousel-caption {
  bottom: 40px;
}
.cid-v13EYRP5qH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v13EYRP5qH .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v13EYRP5qH .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v13EYRP5qH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v13EYRP5qH .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v13EYRP5qH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v13EYRP5qH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v13EYRP5qH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v13EYRP5qH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v13EYRP5qH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v13EYRP5qH .carousel-indicators li.active,
.cid-v13EYRP5qH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v13EYRP5qH .carousel-indicators li::after,
.cid-v13EYRP5qH .carousel-indicators li::before {
  content: none;
}
.cid-v13EYRP5qH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v13EYRP5qH .carousel-indicators {
    display: none !important;
  }
}
.cid-v13EYSwBeM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #020b1a;
}
.cid-v13EYSwBeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v13EYSwBeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v13EYSwBeM .row {
  flex-direction: row-reverse;
}
.cid-v13EYSwBeM .video-wrapper iframe {
  width: 100%;
}
.cid-v13EYSwBeM .mbr-section-title,
.cid-v13EYSwBeM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v13EYSwBeM .text-wrapper {
    padding: 2rem;
  }
}
.cid-v13EYSwBeM .mbr-text {
  color: #ffffff;
}
.cid-v13EYSwBeM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v13EYSwBeM .mbr-section-title {
  color: #ffffff;
}
.cid-v13EYSwBeM .mbr-description {
  color: #ffffff;
}
.cid-v13EYT1Ay2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #020b1a;
}
.cid-v13EYT1Ay2 .mbr-text {
  color: #ffffff;
}
.cid-v13EYTpFCt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v13EYTpFCt .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v13EYTpFCt .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v13EYTpFCt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v13EYTpFCt .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v13EYTpFCt .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v13EYTpFCt .mbr-text,
.cid-v13EYTpFCt .mbr-section-btn {
  color: #353535;
}
.cid-v13EYTQlNB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e3e8f3;
}
.cid-v13EYTQlNB .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v13EYTQlNB .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v13EYTQlNB .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0c234c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-v13EYTQlNB .mbr-section-title {
  color: #c30808;
}
.cid-v13EYUdGci {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-v13EYUdGci .container {
    max-width: 1400px;
  }
}
.cid-v13EYUdGci .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-v13EYUdGci .card-wrapper {
  margin-top: 3rem;
}
.cid-v13EYUdGci .row {
  justify-content: center;
}
.cid-v13EYUdGci .card-title,
.cid-v13EYUdGci .iconfont-wrapper {
  color: #000000;
}
.cid-v13EYUdGci .card-text {
  color: #000000;
}
.cid-v13EYUdGci .mbr-section-title {
  color: #000000;
}
.cid-v13EYUEZ6l {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v13EYUEZ6l .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v13EYUEZ6l .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v13EYUEZ6l .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v13EYUEZ6l .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v13EYV36hF {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v13EYV36hF img,
.cid-v13EYV36hF .item-img {
  width: 100%;
}
.cid-v13EYV36hF .item:focus,
.cid-v13EYV36hF span:focus {
  outline: none;
}
.cid-v13EYV36hF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v13EYV36hF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v13EYV36hF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v13EYV36hF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v13EYV36hF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v13EYV36hF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v13EYV36hF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v13EYV36hF .mbr-section-title {
  color: #000000;
}
.cid-v13EYV36hF .mbr-text,
.cid-v13EYV36hF .mbr-section-btn {
  text-align: left;
}
.cid-v13EYV36hF .item-title {
  text-align: left;
}
.cid-v13EYV36hF .item-subtitle {
  text-align: left;
}
.cid-v13EYVyihh {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-v13EYVZZyy {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-v13EYWrtIT {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background: #fafafa;
}
.cid-v13EYWrtIT .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-v13EYWrtIT .plan-body {
  padding-bottom: 2rem;
}
.cid-v13EYWrtIT .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v13EYWrtIT .price {
  color: #4479d9;
}
.cid-v13EYWrtIT .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-v13EYWrtIT .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-v13EYWrtIT .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-v13EYWrtIT .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-v13EYWrtIT .plan {
    margin-bottom: 2rem;
  }
}
.cid-v13EYX3T1c {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-v13EYX3T1c .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v13EYX3T1c .team-card:hover {
  transform: translateY(-10px);
}
.cid-v13EYX3T1c .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v13EYX3T1c .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v13EYX3T1c .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v13EYX3T1c .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v13EYX3T1c .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v13EYX3T1c .social-row {
  text-align: center;
}
.cid-v13EYX3T1c .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v13EYX3T1c .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v13EYX3T1c .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v13EYX3T1c .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v13EYX3T1c .mbr-section-title {
  color: #000000;
}
.cid-v13EYX3T1c .mbr-section-title1 {
  color: #000000;
}
.cid-v13EYYuqu1 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v13EYYuqu1 img {
  width: 120px;
  margin: auto;
}
.cid-v13EYYuqu1 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v13EYYuqu1 .card {
    max-width: 12.5%;
  }
}
.cid-v13EYYuqu1 .mbr-section-subtitle {
  color: #353535;
}
.cid-v13EYZfXkJ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v13EYZfXkJ .media-container-row {
  justify-content: space-between;
}
.cid-v13EYZfXkJ .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-v13EYZfXkJ .text-content {
    max-width: none;
  }
}
.cid-v13EYZfXkJ .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #4479d9;
  border: 2px solid #4479d9;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v13EYZfXkJ .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-v13EYZfXkJ .mbr-iconfont-social:hover {
  background-color: #4479d9;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-v13EYZfXkJ .icons {
    justify-content: center !important;
  }
  .cid-v13EYZfXkJ .text-content * {
    text-align: center;
  }
}
.cid-v13EYZfXkJ .mbr-section-title {
  color: #353535;
}
.cid-v13EYZfXkJ P {
  color: #000000;
}
.cid-v13EZ06EGD {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-v13EZ06EGD .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-v13EZ06EGD .item .icon-wrap {
  text-align: center;
}
.cid-v13EZ06EGD .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-v13EZ06EGD .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #4479d9;
}
.cid-v13EZ06EGD .item.first:before {
  display: none;
}
.cid-v13EZ06EGD .item.five:before {
  display: none;
}
.cid-v13EZ06EGD .icon-box {
  background: #4479d9;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-v13EZ06EGD .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-v13EZ06EGD .mbr-iconfont {
  color: #154bab !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v13EZ06EGD .item:before {
    display: none;
  }
  .cid-v13EZ06EGD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v13EZ1jmS3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-v13EZ1jmS3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v13EZ1jmS3 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-v13EZ1jmS3 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-v13EZ1jmS3 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-v13EZ1jmS3 .mbr-section-title {
  color: #000000;
}
.cid-v13EZ1jmS3 .mbr-section-subtitle {
  color: #000000;
}
.cid-v13EZ1JZlg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-v13EZ1JZlg .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-v13EZ1JZlg .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-v13EZ1JZlg .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v13EZ1JZlg .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-v13EZ1JZlg .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #154bab;
}
.cid-v13EZ2dG53 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v13EZ2dG53 .google-map {
  height: 30rem;
  position: relative;
}
.cid-v13EZ2dG53 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v13EZ2dG53 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v13EZ2dG53 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v13EZ2dG53 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v13EZ334la {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v13EZ334la .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v13EZ334la .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v13EZ334la .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v13EZ334la .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v13EZ334la .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v13EZ334la .row .foot-menu li p {
  margin: 0;
}
.cid-v13EZ334la .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v13EZ334la .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v13EZ334la .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v13EZ334la .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v13EZ334la .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v13EZ334la .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v13EZ334la .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v13EZ334la .row .row-copirayt p {
  width: 100%;
}
.cid-v16bQdqP02 {
  z-index: 1000;
  width: 100%;
}
.cid-v16bQdqP02 nav.navbar {
  position: fixed;
}
.cid-v16bQdqP02 .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-v16bQdqP02 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v16bQdqP02 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v16bQdqP02 .dropdown-item:hover,
.cid-v16bQdqP02 .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v16bQdqP02 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v16bQdqP02 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v16bQdqP02 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v16bQdqP02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v16bQdqP02 .nav-link {
  position: relative;
}
.cid-v16bQdqP02 .container {
  display: flex;
  margin: auto;
}
.cid-v16bQdqP02 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v16bQdqP02 .dropdown-menu,
.cid-v16bQdqP02 .navbar.opened {
  background: #ffffff !important;
}
.cid-v16bQdqP02 .nav-item:focus,
.cid-v16bQdqP02 .nav-link:focus {
  outline: none;
}
.cid-v16bQdqP02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v16bQdqP02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v16bQdqP02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v16bQdqP02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v16bQdqP02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v16bQdqP02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v16bQdqP02 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v16bQdqP02 .navbar.opened {
  transition: all 0.3s;
}
.cid-v16bQdqP02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v16bQdqP02 .navbar .navbar-logo img {
  width: auto;
}
.cid-v16bQdqP02 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v16bQdqP02 .navbar.collapsed {
  justify-content: center;
}
.cid-v16bQdqP02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v16bQdqP02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v16bQdqP02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v16bQdqP02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v16bQdqP02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v16bQdqP02 .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-v16bQdqP02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v16bQdqP02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v16bQdqP02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v16bQdqP02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v16bQdqP02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v16bQdqP02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v16bQdqP02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v16bQdqP02 .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-v16bQdqP02 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v16bQdqP02 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v16bQdqP02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v16bQdqP02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v16bQdqP02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v16bQdqP02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v16bQdqP02 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v16bQdqP02 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v16bQdqP02 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v16bQdqP02 .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-v16bQdqP02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v16bQdqP02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v16bQdqP02 .dropdown-item.active,
.cid-v16bQdqP02 .dropdown-item:active {
  background-color: transparent;
}
.cid-v16bQdqP02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v16bQdqP02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v16bQdqP02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v16bQdqP02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v16bQdqP02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v16bQdqP02 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v16bQdqP02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v16bQdqP02 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v16bQdqP02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v16bQdqP02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v16bQdqP02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v16bQdqP02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v16bQdqP02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v16bQdqP02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v16bQdqP02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v16bQdqP02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v16bQdqP02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v16bQdqP02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v16bQdqP02 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v16bQdqP02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v16bQdqP02 .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-v16bQdqP02 .navbar {
    height: 70px;
  }
  .cid-v16bQdqP02 .navbar.opened {
    height: auto;
  }
  .cid-v16bQdqP02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v16bQdQYkE {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v16bQdQYkE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16bQdQYkE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16bQdQYkE .mbr-section-title {
  color: #bed3f9;
}
.cid-v16ln0YPY5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v16ln0YPY5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16ln0YPY5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16ln0YPY5 .mbr-section-title {
  color: #ffffff;
}
.cid-v1KQyCCCp8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #031637;
}
.cid-v1KQyCCCp8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1KQyCCCp8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1KQyCCCp8 .row {
  flex-direction: row-reverse;
}
.cid-v1KQyCCCp8 .video-wrapper iframe {
  width: 100%;
}
.cid-v1KQyCCCp8 .mbr-section-title,
.cid-v1KQyCCCp8 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v1KQyCCCp8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v1KQyCCCp8 .mbr-text {
  color: #ffffff;
}
.cid-v1KQyCCCp8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1KQyCCCp8 .mbr-section-title {
  color: #ffffff;
}
.cid-v1KQyCCCp8 .mbr-description {
  color: #ffffff;
}
.cid-v16iTigJv3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-v16bQn6OcM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v16bQn6OcM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v16bQn6OcM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v16bQn6OcM .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v16bQn6OcM .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v16bQn6OcM .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v16bQn6OcM .row .foot-menu li p {
  margin: 0;
}
.cid-v16bQn6OcM .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v16bQn6OcM .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v16bQn6OcM .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v16bQn6OcM .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v16bQn6OcM .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v16bQn6OcM .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v16bQn6OcM .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v16bQn6OcM .row .row-copirayt p {
  width: 100%;
}
.cid-v16jjEn0cj {
  z-index: 1000;
  width: 100%;
}
.cid-v16jjEn0cj nav.navbar {
  position: fixed;
}
.cid-v16jjEn0cj .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-v16jjEn0cj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v16jjEn0cj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v16jjEn0cj .dropdown-item:hover,
.cid-v16jjEn0cj .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v16jjEn0cj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v16jjEn0cj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v16jjEn0cj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v16jjEn0cj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v16jjEn0cj .nav-link {
  position: relative;
}
.cid-v16jjEn0cj .container {
  display: flex;
  margin: auto;
}
.cid-v16jjEn0cj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v16jjEn0cj .dropdown-menu,
.cid-v16jjEn0cj .navbar.opened {
  background: #ffffff !important;
}
.cid-v16jjEn0cj .nav-item:focus,
.cid-v16jjEn0cj .nav-link:focus {
  outline: none;
}
.cid-v16jjEn0cj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v16jjEn0cj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v16jjEn0cj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v16jjEn0cj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v16jjEn0cj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v16jjEn0cj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v16jjEn0cj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v16jjEn0cj .navbar.opened {
  transition: all 0.3s;
}
.cid-v16jjEn0cj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v16jjEn0cj .navbar .navbar-logo img {
  width: auto;
}
.cid-v16jjEn0cj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v16jjEn0cj .navbar.collapsed {
  justify-content: center;
}
.cid-v16jjEn0cj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v16jjEn0cj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v16jjEn0cj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v16jjEn0cj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v16jjEn0cj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v16jjEn0cj .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-v16jjEn0cj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v16jjEn0cj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v16jjEn0cj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v16jjEn0cj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v16jjEn0cj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v16jjEn0cj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v16jjEn0cj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v16jjEn0cj .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-v16jjEn0cj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v16jjEn0cj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v16jjEn0cj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v16jjEn0cj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v16jjEn0cj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v16jjEn0cj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v16jjEn0cj .navbar.navbar-short {
  min-height: 60px;
}
.cid-v16jjEn0cj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v16jjEn0cj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v16jjEn0cj .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-v16jjEn0cj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v16jjEn0cj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v16jjEn0cj .dropdown-item.active,
.cid-v16jjEn0cj .dropdown-item:active {
  background-color: transparent;
}
.cid-v16jjEn0cj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v16jjEn0cj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v16jjEn0cj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v16jjEn0cj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v16jjEn0cj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v16jjEn0cj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v16jjEn0cj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v16jjEn0cj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v16jjEn0cj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v16jjEn0cj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v16jjEn0cj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v16jjEn0cj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v16jjEn0cj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v16jjEn0cj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v16jjEn0cj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v16jjEn0cj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v16jjEn0cj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v16jjEn0cj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v16jjEn0cj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v16jjEn0cj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v16jjEn0cj .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-v16jjEn0cj .navbar {
    height: 70px;
  }
  .cid-v16jjEn0cj .navbar.opened {
    height: auto;
  }
  .cid-v16jjEn0cj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v16jjEK6Kh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v16jjEK6Kh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16jjEK6Kh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16jjEK6Kh .mbr-section-title {
  color: #bed3f9;
}
.cid-v17nnzZI2M {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v17nnzZI2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17nnzZI2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17nnzZI2M .mbr-section-title {
  color: #ffffff;
}
.cid-v16jjHZ8iU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v16jjHZ8iU img,
.cid-v16jjHZ8iU .item-img {
  width: 100%;
}
.cid-v16jjHZ8iU .item:focus,
.cid-v16jjHZ8iU span:focus {
  outline: none;
}
.cid-v16jjHZ8iU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v16jjHZ8iU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v16jjHZ8iU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v16jjHZ8iU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v16jjHZ8iU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v16jjHZ8iU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v16jjHZ8iU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v16jjHZ8iU .mbr-section-title {
  color: #000000;
}
.cid-v16jjHZ8iU .mbr-text,
.cid-v16jjHZ8iU .mbr-section-btn {
  text-align: left;
}
.cid-v16jjHZ8iU .item-title {
  text-align: left;
}
.cid-v16jjHZ8iU .item-subtitle {
  text-align: left;
}
.cid-v16jjNMhAz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v16jjNMhAz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v16jjNMhAz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v16jjNMhAz .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v16jjNMhAz .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v16jjNMhAz .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v16jjNMhAz .row .foot-menu li p {
  margin: 0;
}
.cid-v16jjNMhAz .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v16jjNMhAz .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v16jjNMhAz .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v16jjNMhAz .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v16jjNMhAz .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v16jjNMhAz .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v16jjNMhAz .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v16jjNMhAz .row .row-copirayt p {
  width: 100%;
}
.cid-v16xm3emVd {
  z-index: 1000;
  width: 100%;
}
.cid-v16xm3emVd nav.navbar {
  position: fixed;
}
.cid-v16xm3emVd .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-v16xm3emVd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v16xm3emVd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v16xm3emVd .dropdown-item:hover,
.cid-v16xm3emVd .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v16xm3emVd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v16xm3emVd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v16xm3emVd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v16xm3emVd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v16xm3emVd .nav-link {
  position: relative;
}
.cid-v16xm3emVd .container {
  display: flex;
  margin: auto;
}
.cid-v16xm3emVd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v16xm3emVd .dropdown-menu,
.cid-v16xm3emVd .navbar.opened {
  background: #ffffff !important;
}
.cid-v16xm3emVd .nav-item:focus,
.cid-v16xm3emVd .nav-link:focus {
  outline: none;
}
.cid-v16xm3emVd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v16xm3emVd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v16xm3emVd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v16xm3emVd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v16xm3emVd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v16xm3emVd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v16xm3emVd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v16xm3emVd .navbar.opened {
  transition: all 0.3s;
}
.cid-v16xm3emVd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v16xm3emVd .navbar .navbar-logo img {
  width: auto;
}
.cid-v16xm3emVd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v16xm3emVd .navbar.collapsed {
  justify-content: center;
}
.cid-v16xm3emVd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v16xm3emVd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v16xm3emVd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v16xm3emVd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v16xm3emVd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v16xm3emVd .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-v16xm3emVd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v16xm3emVd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v16xm3emVd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v16xm3emVd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v16xm3emVd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v16xm3emVd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v16xm3emVd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v16xm3emVd .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-v16xm3emVd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v16xm3emVd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v16xm3emVd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v16xm3emVd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v16xm3emVd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v16xm3emVd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v16xm3emVd .navbar.navbar-short {
  min-height: 60px;
}
.cid-v16xm3emVd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v16xm3emVd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v16xm3emVd .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-v16xm3emVd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v16xm3emVd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v16xm3emVd .dropdown-item.active,
.cid-v16xm3emVd .dropdown-item:active {
  background-color: transparent;
}
.cid-v16xm3emVd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v16xm3emVd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v16xm3emVd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v16xm3emVd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v16xm3emVd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v16xm3emVd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v16xm3emVd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v16xm3emVd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v16xm3emVd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v16xm3emVd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v16xm3emVd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v16xm3emVd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v16xm3emVd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v16xm3emVd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v16xm3emVd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v16xm3emVd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v16xm3emVd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v16xm3emVd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v16xm3emVd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v16xm3emVd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v16xm3emVd .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-v16xm3emVd .navbar {
    height: 70px;
  }
  .cid-v16xm3emVd .navbar.opened {
    height: auto;
  }
  .cid-v16xm3emVd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v16xm4JKqo {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v16xm4JKqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16xm4JKqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16xm4JKqo .mbr-section-title {
  color: #bed3f9;
}
.cid-v16xm5eLfU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg-922x242.jpg");
}
.cid-v16xm5eLfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16xm5eLfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16xm5eLfU .mbr-section-title {
  color: #ffffff;
}
.cid-v16xm5eLfU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v16S6xH9FX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v16S6xH9FX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16S6xH9FX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v16S6xH9FX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v16S6xH9FX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v16S6xH9FX .text-wrapper {
    padding: 2rem;
  }
}
.cid-v16xm5NTxZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-v16Yf05WAt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v16Yf05WAt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16Yf05WAt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16Yf05WAt .video-wrapper iframe {
  width: 100%;
}
.cid-v16Yf05WAt .mbr-section-title,
.cid-v16Yf05WAt .mbr-section-subtitle,
.cid-v16Yf05WAt .mbr-text {
  text-align: center;
}
.cid-v16Rg6iNSZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v16Rg6iNSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16Rg6iNSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v16Rg6iNSZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v16Rg6iNSZ .row {
  flex-direction: row-reverse;
}
.cid-v16Rg6iNSZ img {
  width: 100%;
}
.cid-v16xm6I9RI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v16xm6I9RI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v16xm6I9RI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v16xm6I9RI .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v16xm6I9RI .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v16xm6I9RI .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v16xm6I9RI .row .foot-menu li p {
  margin: 0;
}
.cid-v16xm6I9RI .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v16xm6I9RI .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v16xm6I9RI .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v16xm6I9RI .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v16xm6I9RI .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v16xm6I9RI .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v16xm6I9RI .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v16xm6I9RI .row .row-copirayt p {
  width: 100%;
}
.cid-v179r9vBCm {
  z-index: 1000;
  width: 100%;
}
.cid-v179r9vBCm nav.navbar {
  position: fixed;
}
.cid-v179r9vBCm .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-v179r9vBCm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v179r9vBCm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v179r9vBCm .dropdown-item:hover,
.cid-v179r9vBCm .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v179r9vBCm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v179r9vBCm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v179r9vBCm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v179r9vBCm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v179r9vBCm .nav-link {
  position: relative;
}
.cid-v179r9vBCm .container {
  display: flex;
  margin: auto;
}
.cid-v179r9vBCm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v179r9vBCm .dropdown-menu,
.cid-v179r9vBCm .navbar.opened {
  background: #ffffff !important;
}
.cid-v179r9vBCm .nav-item:focus,
.cid-v179r9vBCm .nav-link:focus {
  outline: none;
}
.cid-v179r9vBCm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v179r9vBCm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v179r9vBCm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v179r9vBCm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v179r9vBCm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v179r9vBCm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v179r9vBCm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v179r9vBCm .navbar.opened {
  transition: all 0.3s;
}
.cid-v179r9vBCm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v179r9vBCm .navbar .navbar-logo img {
  width: auto;
}
.cid-v179r9vBCm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v179r9vBCm .navbar.collapsed {
  justify-content: center;
}
.cid-v179r9vBCm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v179r9vBCm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v179r9vBCm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v179r9vBCm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v179r9vBCm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v179r9vBCm .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-v179r9vBCm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v179r9vBCm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v179r9vBCm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v179r9vBCm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v179r9vBCm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v179r9vBCm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v179r9vBCm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v179r9vBCm .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-v179r9vBCm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v179r9vBCm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v179r9vBCm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v179r9vBCm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v179r9vBCm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v179r9vBCm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v179r9vBCm .navbar.navbar-short {
  min-height: 60px;
}
.cid-v179r9vBCm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v179r9vBCm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v179r9vBCm .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-v179r9vBCm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v179r9vBCm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v179r9vBCm .dropdown-item.active,
.cid-v179r9vBCm .dropdown-item:active {
  background-color: transparent;
}
.cid-v179r9vBCm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v179r9vBCm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v179r9vBCm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v179r9vBCm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v179r9vBCm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v179r9vBCm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v179r9vBCm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v179r9vBCm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v179r9vBCm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v179r9vBCm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v179r9vBCm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v179r9vBCm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v179r9vBCm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v179r9vBCm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v179r9vBCm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v179r9vBCm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v179r9vBCm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v179r9vBCm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v179r9vBCm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v179r9vBCm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v179r9vBCm .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-v179r9vBCm .navbar {
    height: 70px;
  }
  .cid-v179r9vBCm .navbar.opened {
    height: auto;
  }
  .cid-v179r9vBCm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v179rb4LDb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v179rb4LDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v179rb4LDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v179rb4LDb .mbr-section-title {
  color: #bed3f9;
}
.cid-v179rbJ5pu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v179rbJ5pu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v179rbJ5pu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v179rc7KqA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-v179rcWh2V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v179rcWh2V .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v179rcWh2V .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v179rcWh2V .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v179rcWh2V .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v179rcWh2V .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v179rcWh2V .row .foot-menu li p {
  margin: 0;
}
.cid-v179rcWh2V .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v179rcWh2V .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v179rcWh2V .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v179rcWh2V .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v179rcWh2V .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v179rcWh2V .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v179rcWh2V .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v179rcWh2V .row .row-copirayt p {
  width: 100%;
}
.cid-v17oQ4RpHZ {
  z-index: 1000;
  width: 100%;
}
.cid-v17oQ4RpHZ nav.navbar {
  position: fixed;
}
.cid-v17oQ4RpHZ .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-v17oQ4RpHZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v17oQ4RpHZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v17oQ4RpHZ .dropdown-item:hover,
.cid-v17oQ4RpHZ .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v17oQ4RpHZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v17oQ4RpHZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v17oQ4RpHZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v17oQ4RpHZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v17oQ4RpHZ .nav-link {
  position: relative;
}
.cid-v17oQ4RpHZ .container {
  display: flex;
  margin: auto;
}
.cid-v17oQ4RpHZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v17oQ4RpHZ .dropdown-menu,
.cid-v17oQ4RpHZ .navbar.opened {
  background: #ffffff !important;
}
.cid-v17oQ4RpHZ .nav-item:focus,
.cid-v17oQ4RpHZ .nav-link:focus {
  outline: none;
}
.cid-v17oQ4RpHZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v17oQ4RpHZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v17oQ4RpHZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v17oQ4RpHZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v17oQ4RpHZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v17oQ4RpHZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v17oQ4RpHZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v17oQ4RpHZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v17oQ4RpHZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v17oQ4RpHZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v17oQ4RpHZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v17oQ4RpHZ .navbar.collapsed {
  justify-content: center;
}
.cid-v17oQ4RpHZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v17oQ4RpHZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v17oQ4RpHZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v17oQ4RpHZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v17oQ4RpHZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v17oQ4RpHZ .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-v17oQ4RpHZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v17oQ4RpHZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v17oQ4RpHZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v17oQ4RpHZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v17oQ4RpHZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v17oQ4RpHZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v17oQ4RpHZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v17oQ4RpHZ .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-v17oQ4RpHZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v17oQ4RpHZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v17oQ4RpHZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v17oQ4RpHZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v17oQ4RpHZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v17oQ4RpHZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v17oQ4RpHZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v17oQ4RpHZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v17oQ4RpHZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v17oQ4RpHZ .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-v17oQ4RpHZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v17oQ4RpHZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v17oQ4RpHZ .dropdown-item.active,
.cid-v17oQ4RpHZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v17oQ4RpHZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v17oQ4RpHZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v17oQ4RpHZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v17oQ4RpHZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v17oQ4RpHZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v17oQ4RpHZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v17oQ4RpHZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v17oQ4RpHZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v17oQ4RpHZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v17oQ4RpHZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v17oQ4RpHZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v17oQ4RpHZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v17oQ4RpHZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v17oQ4RpHZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v17oQ4RpHZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v17oQ4RpHZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v17oQ4RpHZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v17oQ4RpHZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v17oQ4RpHZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v17oQ4RpHZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v17oQ4RpHZ .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-v17oQ4RpHZ .navbar {
    height: 70px;
  }
  .cid-v17oQ4RpHZ .navbar.opened {
    height: auto;
  }
  .cid-v17oQ4RpHZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v17oQ7Imof {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v17oQ7Imof .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17oQ7Imof .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17oQ7Imof .mbr-section-title {
  color: #bed3f9;
}
.cid-v17oQ8sW6O {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v17oQ8sW6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17oQ8sW6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17p36Js34 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-v17uEZTKKN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v17uEZTKKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17uEZTKKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v17uEZTKKN .container {
    max-width: 1400px;
  }
}
.cid-v17uEZTKKN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v17uEZTKKN .row {
  justify-content: center;
}
.cid-v17uEZTKKN .card-title,
.cid-v17uEZTKKN .iconfont-wrapper {
  text-align: left;
}
.cid-v17uEZTKKN .card-text {
  text-align: left;
}
.cid-v17oQb74ex {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v17oQb74ex .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v17oQb74ex .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v17oQb74ex .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v17oQb74ex .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v17oQb74ex .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v17oQb74ex .row .foot-menu li p {
  margin: 0;
}
.cid-v17oQb74ex .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v17oQb74ex .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v17oQb74ex .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v17oQb74ex .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v17oQb74ex .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v17oQb74ex .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v17oQb74ex .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v17oQb74ex .row .row-copirayt p {
  width: 100%;
}
.cid-v17wsCtENY {
  z-index: 1000;
  width: 100%;
}
.cid-v17wsCtENY nav.navbar {
  position: fixed;
}
.cid-v17wsCtENY .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-v17wsCtENY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v17wsCtENY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v17wsCtENY .dropdown-item:hover,
.cid-v17wsCtENY .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v17wsCtENY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v17wsCtENY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v17wsCtENY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v17wsCtENY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v17wsCtENY .nav-link {
  position: relative;
}
.cid-v17wsCtENY .container {
  display: flex;
  margin: auto;
}
.cid-v17wsCtENY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v17wsCtENY .dropdown-menu,
.cid-v17wsCtENY .navbar.opened {
  background: #ffffff !important;
}
.cid-v17wsCtENY .nav-item:focus,
.cid-v17wsCtENY .nav-link:focus {
  outline: none;
}
.cid-v17wsCtENY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v17wsCtENY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v17wsCtENY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v17wsCtENY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v17wsCtENY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v17wsCtENY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v17wsCtENY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v17wsCtENY .navbar.opened {
  transition: all 0.3s;
}
.cid-v17wsCtENY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v17wsCtENY .navbar .navbar-logo img {
  width: auto;
}
.cid-v17wsCtENY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v17wsCtENY .navbar.collapsed {
  justify-content: center;
}
.cid-v17wsCtENY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v17wsCtENY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v17wsCtENY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v17wsCtENY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v17wsCtENY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v17wsCtENY .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-v17wsCtENY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v17wsCtENY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v17wsCtENY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v17wsCtENY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v17wsCtENY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v17wsCtENY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v17wsCtENY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v17wsCtENY .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-v17wsCtENY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v17wsCtENY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v17wsCtENY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v17wsCtENY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v17wsCtENY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v17wsCtENY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v17wsCtENY .navbar.navbar-short {
  min-height: 60px;
}
.cid-v17wsCtENY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v17wsCtENY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v17wsCtENY .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-v17wsCtENY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v17wsCtENY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v17wsCtENY .dropdown-item.active,
.cid-v17wsCtENY .dropdown-item:active {
  background-color: transparent;
}
.cid-v17wsCtENY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v17wsCtENY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v17wsCtENY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v17wsCtENY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v17wsCtENY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v17wsCtENY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v17wsCtENY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v17wsCtENY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v17wsCtENY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v17wsCtENY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v17wsCtENY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v17wsCtENY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v17wsCtENY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v17wsCtENY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v17wsCtENY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v17wsCtENY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v17wsCtENY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v17wsCtENY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v17wsCtENY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v17wsCtENY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v17wsCtENY .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-v17wsCtENY .navbar {
    height: 70px;
  }
  .cid-v17wsCtENY .navbar.opened {
    height: auto;
  }
  .cid-v17wsCtENY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v17wsEK5BH {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v17wsEK5BH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17wsEK5BH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17wsEK5BH .mbr-section-title {
  color: #bed3f9;
}
.cid-v17wsFnupf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v17wsFnupf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17wsFnupf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17wsFnupf .mbr-section-title {
  color: #ffffff;
}
.cid-v17wNNY8hV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #e3e8f3;
}
.cid-v17wsH9jKP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v17wsH9jKP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v17wsH9jKP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v17wsH9jKP .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v17wsH9jKP .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v17wsH9jKP .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v17wsH9jKP .row .foot-menu li p {
  margin: 0;
}
.cid-v17wsH9jKP .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v17wsH9jKP .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v17wsH9jKP .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v17wsH9jKP .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v17wsH9jKP .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v17wsH9jKP .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v17wsH9jKP .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v17wsH9jKP .row .row-copirayt p {
  width: 100%;
}
.cid-v17zHyCGjq {
  z-index: 1000;
  width: 100%;
}
.cid-v17zHyCGjq nav.navbar {
  position: fixed;
}
.cid-v17zHyCGjq .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-v17zHyCGjq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v17zHyCGjq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v17zHyCGjq .dropdown-item:hover,
.cid-v17zHyCGjq .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v17zHyCGjq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v17zHyCGjq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v17zHyCGjq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v17zHyCGjq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v17zHyCGjq .nav-link {
  position: relative;
}
.cid-v17zHyCGjq .container {
  display: flex;
  margin: auto;
}
.cid-v17zHyCGjq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v17zHyCGjq .dropdown-menu,
.cid-v17zHyCGjq .navbar.opened {
  background: #ffffff !important;
}
.cid-v17zHyCGjq .nav-item:focus,
.cid-v17zHyCGjq .nav-link:focus {
  outline: none;
}
.cid-v17zHyCGjq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v17zHyCGjq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v17zHyCGjq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v17zHyCGjq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v17zHyCGjq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v17zHyCGjq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v17zHyCGjq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v17zHyCGjq .navbar.opened {
  transition: all 0.3s;
}
.cid-v17zHyCGjq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v17zHyCGjq .navbar .navbar-logo img {
  width: auto;
}
.cid-v17zHyCGjq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v17zHyCGjq .navbar.collapsed {
  justify-content: center;
}
.cid-v17zHyCGjq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v17zHyCGjq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v17zHyCGjq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v17zHyCGjq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v17zHyCGjq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v17zHyCGjq .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-v17zHyCGjq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v17zHyCGjq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v17zHyCGjq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v17zHyCGjq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v17zHyCGjq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v17zHyCGjq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v17zHyCGjq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v17zHyCGjq .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-v17zHyCGjq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v17zHyCGjq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v17zHyCGjq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v17zHyCGjq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v17zHyCGjq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v17zHyCGjq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v17zHyCGjq .navbar.navbar-short {
  min-height: 60px;
}
.cid-v17zHyCGjq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v17zHyCGjq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v17zHyCGjq .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-v17zHyCGjq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v17zHyCGjq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v17zHyCGjq .dropdown-item.active,
.cid-v17zHyCGjq .dropdown-item:active {
  background-color: transparent;
}
.cid-v17zHyCGjq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v17zHyCGjq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v17zHyCGjq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v17zHyCGjq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v17zHyCGjq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v17zHyCGjq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v17zHyCGjq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v17zHyCGjq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v17zHyCGjq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v17zHyCGjq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v17zHyCGjq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v17zHyCGjq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v17zHyCGjq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v17zHyCGjq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v17zHyCGjq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v17zHyCGjq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v17zHyCGjq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v17zHyCGjq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v17zHyCGjq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v17zHyCGjq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v17zHyCGjq .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-v17zHyCGjq .navbar {
    height: 70px;
  }
  .cid-v17zHyCGjq .navbar.opened {
    height: auto;
  }
  .cid-v17zHyCGjq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v17zHBh1BM {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v17zHBh1BM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17zHBh1BM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17zHBh1BM .mbr-section-title {
  color: #bed3f9;
}
.cid-v17zHBRcni {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v17zHBRcni .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17zHBRcni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v17zHBRcni .mbr-section-title {
  color: #ffffff;
}
.cid-v17B0LiS5s {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v17B0LiS5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v17B0LiS5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v17B0LiS5s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v17B0LiS5s .row {
  flex-direction: row-reverse;
}
.cid-v17B0LiS5s img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v17B0LiS5s .text-wrapper {
    padding: 2rem;
  }
}
.cid-v19mG0FEpo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v19nAxEqWJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-v19nAxEqWJ img,
.cid-v19nAxEqWJ .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v19nAxEqWJ .item:focus,
.cid-v19nAxEqWJ span:focus {
  outline: none;
}
.cid-v19nAxEqWJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v19nAxEqWJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v19nAxEqWJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v19nAxEqWJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v19nAxEqWJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v19nAxEqWJ .mbr-section-title {
  color: #ffffff;
}
.cid-v19nAxEqWJ .mbr-text,
.cid-v19nAxEqWJ .mbr-section-btn {
  text-align: center;
}
.cid-v19nAxEqWJ .item-title {
  text-align: center;
}
.cid-v19nAxEqWJ .item-subtitle {
  text-align: left;
}
.cid-v17zHD9KJa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v17zHD9KJa .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v17zHD9KJa .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v17zHD9KJa .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v17zHD9KJa .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v17zHD9KJa .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v17zHD9KJa .row .foot-menu li p {
  margin: 0;
}
.cid-v17zHD9KJa .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v17zHD9KJa .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v17zHD9KJa .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v17zHD9KJa .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v17zHD9KJa .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v17zHD9KJa .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v17zHD9KJa .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v17zHD9KJa .row .row-copirayt p {
  width: 100%;
}
.cid-v19oPo2AIw {
  z-index: 1000;
  width: 100%;
}
.cid-v19oPo2AIw nav.navbar {
  position: fixed;
}
.cid-v19oPo2AIw .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-v19oPo2AIw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v19oPo2AIw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v19oPo2AIw .dropdown-item:hover,
.cid-v19oPo2AIw .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v19oPo2AIw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v19oPo2AIw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v19oPo2AIw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v19oPo2AIw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v19oPo2AIw .nav-link {
  position: relative;
}
.cid-v19oPo2AIw .container {
  display: flex;
  margin: auto;
}
.cid-v19oPo2AIw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v19oPo2AIw .dropdown-menu,
.cid-v19oPo2AIw .navbar.opened {
  background: #ffffff !important;
}
.cid-v19oPo2AIw .nav-item:focus,
.cid-v19oPo2AIw .nav-link:focus {
  outline: none;
}
.cid-v19oPo2AIw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v19oPo2AIw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v19oPo2AIw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v19oPo2AIw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v19oPo2AIw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v19oPo2AIw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v19oPo2AIw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v19oPo2AIw .navbar.opened {
  transition: all 0.3s;
}
.cid-v19oPo2AIw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v19oPo2AIw .navbar .navbar-logo img {
  width: auto;
}
.cid-v19oPo2AIw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v19oPo2AIw .navbar.collapsed {
  justify-content: center;
}
.cid-v19oPo2AIw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v19oPo2AIw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v19oPo2AIw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v19oPo2AIw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v19oPo2AIw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v19oPo2AIw .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-v19oPo2AIw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v19oPo2AIw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v19oPo2AIw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v19oPo2AIw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v19oPo2AIw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v19oPo2AIw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v19oPo2AIw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v19oPo2AIw .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-v19oPo2AIw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v19oPo2AIw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v19oPo2AIw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v19oPo2AIw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v19oPo2AIw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v19oPo2AIw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v19oPo2AIw .navbar.navbar-short {
  min-height: 60px;
}
.cid-v19oPo2AIw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v19oPo2AIw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v19oPo2AIw .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-v19oPo2AIw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v19oPo2AIw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v19oPo2AIw .dropdown-item.active,
.cid-v19oPo2AIw .dropdown-item:active {
  background-color: transparent;
}
.cid-v19oPo2AIw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v19oPo2AIw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v19oPo2AIw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v19oPo2AIw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v19oPo2AIw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v19oPo2AIw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v19oPo2AIw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v19oPo2AIw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v19oPo2AIw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v19oPo2AIw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v19oPo2AIw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v19oPo2AIw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19oPo2AIw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19oPo2AIw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v19oPo2AIw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19oPo2AIw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v19oPo2AIw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v19oPo2AIw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19oPo2AIw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v19oPo2AIw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v19oPo2AIw .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-v19oPo2AIw .navbar {
    height: 70px;
  }
  .cid-v19oPo2AIw .navbar.opened {
    height: auto;
  }
  .cid-v19oPo2AIw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v19oPoNLYd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v19oPoNLYd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19oPoNLYd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19oPoNLYd .mbr-section-title {
  color: #bed3f9;
}
.cid-v19oPpcCIG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v19oPpcCIG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19oPpcCIG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19oPpcCIG .mbr-section-title {
  color: #ffffff;
}
.cid-v19peG8yAv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v19peG8yAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19peG8yAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v19peG8yAv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v19peG8yAv .row {
  flex-direction: row-reverse;
}
.cid-v19peG8yAv img {
  width: 100%;
}
.cid-v19oPrANfs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v19oPrANfs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v19oPrANfs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v19oPrANfs .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v19oPrANfs .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v19oPrANfs .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v19oPrANfs .row .foot-menu li p {
  margin: 0;
}
.cid-v19oPrANfs .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v19oPrANfs .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v19oPrANfs .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v19oPrANfs .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v19oPrANfs .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v19oPrANfs .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v19oPrANfs .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v19oPrANfs .row .row-copirayt p {
  width: 100%;
}
.cid-v19r9oJAXP {
  z-index: 1000;
  width: 100%;
}
.cid-v19r9oJAXP nav.navbar {
  position: fixed;
}
.cid-v19r9oJAXP .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-v19r9oJAXP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v19r9oJAXP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v19r9oJAXP .dropdown-item:hover,
.cid-v19r9oJAXP .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v19r9oJAXP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v19r9oJAXP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v19r9oJAXP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v19r9oJAXP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v19r9oJAXP .nav-link {
  position: relative;
}
.cid-v19r9oJAXP .container {
  display: flex;
  margin: auto;
}
.cid-v19r9oJAXP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v19r9oJAXP .dropdown-menu,
.cid-v19r9oJAXP .navbar.opened {
  background: #ffffff !important;
}
.cid-v19r9oJAXP .nav-item:focus,
.cid-v19r9oJAXP .nav-link:focus {
  outline: none;
}
.cid-v19r9oJAXP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v19r9oJAXP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v19r9oJAXP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v19r9oJAXP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v19r9oJAXP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v19r9oJAXP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v19r9oJAXP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v19r9oJAXP .navbar.opened {
  transition: all 0.3s;
}
.cid-v19r9oJAXP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v19r9oJAXP .navbar .navbar-logo img {
  width: auto;
}
.cid-v19r9oJAXP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v19r9oJAXP .navbar.collapsed {
  justify-content: center;
}
.cid-v19r9oJAXP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v19r9oJAXP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v19r9oJAXP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v19r9oJAXP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v19r9oJAXP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v19r9oJAXP .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-v19r9oJAXP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v19r9oJAXP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v19r9oJAXP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v19r9oJAXP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v19r9oJAXP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v19r9oJAXP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v19r9oJAXP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v19r9oJAXP .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-v19r9oJAXP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v19r9oJAXP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v19r9oJAXP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v19r9oJAXP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v19r9oJAXP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v19r9oJAXP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v19r9oJAXP .navbar.navbar-short {
  min-height: 60px;
}
.cid-v19r9oJAXP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v19r9oJAXP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v19r9oJAXP .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-v19r9oJAXP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v19r9oJAXP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v19r9oJAXP .dropdown-item.active,
.cid-v19r9oJAXP .dropdown-item:active {
  background-color: transparent;
}
.cid-v19r9oJAXP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v19r9oJAXP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v19r9oJAXP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v19r9oJAXP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v19r9oJAXP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v19r9oJAXP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v19r9oJAXP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v19r9oJAXP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v19r9oJAXP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v19r9oJAXP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v19r9oJAXP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v19r9oJAXP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19r9oJAXP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19r9oJAXP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v19r9oJAXP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19r9oJAXP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v19r9oJAXP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v19r9oJAXP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19r9oJAXP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v19r9oJAXP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v19r9oJAXP .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-v19r9oJAXP .navbar {
    height: 70px;
  }
  .cid-v19r9oJAXP .navbar.opened {
    height: auto;
  }
  .cid-v19r9oJAXP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v19r9pa89n {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v19r9pa89n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19r9pa89n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19r9pa89n .mbr-section-title {
  color: #bed3f9;
}
.cid-v19r9pxthg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v19r9pxthg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19r9pxthg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19r9pxthg .mbr-section-title {
  color: #ffffff;
}
.cid-v19rDLlIym {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fbf5f5;
}
.cid-v19rDLlIym .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19rDLlIym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19rDLlIym .item {
  padding-bottom: 2rem;
}
.cid-v19rDLlIym .item-wrapper {
  position: relative;
}
.cid-v19rDLlIym .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v19rDLlIym .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v19rDLlIym .carousel-control,
.cid-v19rDLlIym .close {
  background: #1b1b1b;
}
.cid-v19rDLlIym .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v19rDLlIym .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v19rDLlIym .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v19rDLlIym .carousel-control-next span {
  margin-left: 5px;
}
.cid-v19rDLlIym .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v19rDLlIym .close::before {
  content: '\e91a';
}
.cid-v19rDLlIym .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v19rDLlIym .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v19rDLlIym .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v19rDLlIym .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v19rDLlIym .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v19rDLlIym .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v19rDLlIym .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v19rDLlIym .carousel-indicators li.active,
.cid-v19rDLlIym .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v19rDLlIym .carousel-indicators li::after,
.cid-v19rDLlIym .carousel-indicators li::before {
  content: none;
}
.cid-v19rDLlIym .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v19rDLlIym .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v19rDLlIym .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v19rDLlIym .carousel-indicators {
    display: none;
  }
}
.cid-v19rDLlIym .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v19rDLlIym .carousel-inner > .active {
  display: block;
}
.cid-v19rDLlIym .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v19rDLlIym .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v19rDLlIym .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v19rDLlIym .carousel-control,
  .cid-v19rDLlIym .carousel-indicators,
  .cid-v19rDLlIym .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v19rDLlIym .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v19rDLlIym .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v19rDLlIym .carousel-indicators .active,
.cid-v19rDLlIym .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v19rDLlIym .carousel-indicators .active {
  background: #fff;
}
.cid-v19rDLlIym .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v19rDLlIym .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v19rDLlIym .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v19rDLlIym .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v19rDLlIym .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v19rDLlIym .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v19rDLlIym .carousel {
  width: 100%;
}
.cid-v19rDLlIym .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v19rDLlIym .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v19rDLlIym .modal.fade .modal-dialog,
.cid-v19rDLlIym .modal.in .modal-dialog {
  transform: none;
}
.cid-v19rDLlIym .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v19rDLlIym H6 {
  text-align: left;
}
.cid-v19rDLlIym DIV {
  text-align: left;
}
.cid-v1c43fTSix {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-v1c43fTSix .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v1c43fTSix .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v1c43fTSix .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v1c5wncxvw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e3e8f3;
}
.cid-v1c5wncxvw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1c5wncxvw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1c5wncxvw .item {
  padding-bottom: 2rem;
}
.cid-v1c5wncxvw .item-wrapper {
  position: relative;
}
.cid-v1c5wncxvw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v1c5wncxvw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v1c5wncxvw .carousel-control,
.cid-v1c5wncxvw .close {
  background: #1b1b1b;
}
.cid-v1c5wncxvw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v1c5wncxvw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v1c5wncxvw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v1c5wncxvw .carousel-control-next span {
  margin-left: 5px;
}
.cid-v1c5wncxvw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v1c5wncxvw .close::before {
  content: '\e91a';
}
.cid-v1c5wncxvw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v1c5wncxvw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v1c5wncxvw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1c5wncxvw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1c5wncxvw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1c5wncxvw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v1c5wncxvw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v1c5wncxvw .carousel-indicators li.active,
.cid-v1c5wncxvw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1c5wncxvw .carousel-indicators li::after,
.cid-v1c5wncxvw .carousel-indicators li::before {
  content: none;
}
.cid-v1c5wncxvw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1c5wncxvw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v1c5wncxvw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v1c5wncxvw .carousel-indicators {
    display: none;
  }
}
.cid-v1c5wncxvw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1c5wncxvw .carousel-inner > .active {
  display: block;
}
.cid-v1c5wncxvw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1c5wncxvw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v1c5wncxvw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v1c5wncxvw .carousel-control,
  .cid-v1c5wncxvw .carousel-indicators,
  .cid-v1c5wncxvw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v1c5wncxvw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v1c5wncxvw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v1c5wncxvw .carousel-indicators .active,
.cid-v1c5wncxvw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v1c5wncxvw .carousel-indicators .active {
  background: #fff;
}
.cid-v1c5wncxvw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v1c5wncxvw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v1c5wncxvw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v1c5wncxvw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v1c5wncxvw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v1c5wncxvw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v1c5wncxvw .carousel {
  width: 100%;
}
.cid-v1c5wncxvw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v1c5wncxvw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v1c5wncxvw .modal.fade .modal-dialog,
.cid-v1c5wncxvw .modal.in .modal-dialog {
  transform: none;
}
.cid-v1c5wncxvw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v1c5wncxvw H6 {
  text-align: center;
}
.cid-v19r9qu3XK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v19r9qu3XK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v19r9qu3XK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v19r9qu3XK .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v19r9qu3XK .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v19r9qu3XK .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v19r9qu3XK .row .foot-menu li p {
  margin: 0;
}
.cid-v19r9qu3XK .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v19r9qu3XK .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v19r9qu3XK .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v19r9qu3XK .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v19r9qu3XK .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v19r9qu3XK .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v19r9qu3XK .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v19r9qu3XK .row .row-copirayt p {
  width: 100%;
}
.cid-v1cbezBWn3 {
  z-index: 1000;
  width: 100%;
}
.cid-v1cbezBWn3 nav.navbar {
  position: fixed;
}
.cid-v1cbezBWn3 .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-v1cbezBWn3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1cbezBWn3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1cbezBWn3 .dropdown-item:hover,
.cid-v1cbezBWn3 .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v1cbezBWn3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1cbezBWn3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1cbezBWn3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1cbezBWn3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1cbezBWn3 .nav-link {
  position: relative;
}
.cid-v1cbezBWn3 .container {
  display: flex;
  margin: auto;
}
.cid-v1cbezBWn3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1cbezBWn3 .dropdown-menu,
.cid-v1cbezBWn3 .navbar.opened {
  background: #ffffff !important;
}
.cid-v1cbezBWn3 .nav-item:focus,
.cid-v1cbezBWn3 .nav-link:focus {
  outline: none;
}
.cid-v1cbezBWn3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1cbezBWn3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1cbezBWn3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1cbezBWn3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1cbezBWn3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1cbezBWn3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1cbezBWn3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v1cbezBWn3 .navbar.opened {
  transition: all 0.3s;
}
.cid-v1cbezBWn3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1cbezBWn3 .navbar .navbar-logo img {
  width: auto;
}
.cid-v1cbezBWn3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1cbezBWn3 .navbar.collapsed {
  justify-content: center;
}
.cid-v1cbezBWn3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1cbezBWn3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1cbezBWn3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v1cbezBWn3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1cbezBWn3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1cbezBWn3 .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-v1cbezBWn3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1cbezBWn3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1cbezBWn3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1cbezBWn3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1cbezBWn3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1cbezBWn3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1cbezBWn3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1cbezBWn3 .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-v1cbezBWn3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1cbezBWn3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1cbezBWn3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1cbezBWn3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1cbezBWn3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1cbezBWn3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1cbezBWn3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1cbezBWn3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1cbezBWn3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1cbezBWn3 .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-v1cbezBWn3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1cbezBWn3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1cbezBWn3 .dropdown-item.active,
.cid-v1cbezBWn3 .dropdown-item:active {
  background-color: transparent;
}
.cid-v1cbezBWn3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1cbezBWn3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1cbezBWn3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1cbezBWn3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1cbezBWn3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1cbezBWn3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1cbezBWn3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1cbezBWn3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1cbezBWn3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1cbezBWn3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v1cbezBWn3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1cbezBWn3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1cbezBWn3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1cbezBWn3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1cbezBWn3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1cbezBWn3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1cbezBWn3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1cbezBWn3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1cbezBWn3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1cbezBWn3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1cbezBWn3 .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-v1cbezBWn3 .navbar {
    height: 70px;
  }
  .cid-v1cbezBWn3 .navbar.opened {
    height: auto;
  }
  .cid-v1cbezBWn3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1cbeA4qEj {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v1cbeA4qEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbeA4qEj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbeA4qEj .mbr-section-title {
  color: #bed3f9;
}
.cid-v1cbeAsUPQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v1cbeAsUPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbeAsUPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbeAsUPQ .mbr-section-title {
  color: #ffffff;
}
.cid-v1cbeBvWva {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #e3e8f3;
}
.cid-v1cbeCJRBz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v1cbeCJRBz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v1cbeCJRBz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v1cbeCJRBz .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v1cbeCJRBz .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v1cbeCJRBz .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v1cbeCJRBz .row .foot-menu li p {
  margin: 0;
}
.cid-v1cbeCJRBz .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v1cbeCJRBz .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v1cbeCJRBz .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v1cbeCJRBz .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v1cbeCJRBz .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1cbeCJRBz .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1cbeCJRBz .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v1cbeCJRBz .row .row-copirayt p {
  width: 100%;
}
.cid-v1cithREyJ {
  z-index: 1000;
  width: 100%;
}
.cid-v1cithREyJ nav.navbar {
  position: fixed;
}
.cid-v1cithREyJ .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-v1cithREyJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1cithREyJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1cithREyJ .dropdown-item:hover,
.cid-v1cithREyJ .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v1cithREyJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1cithREyJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1cithREyJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1cithREyJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1cithREyJ .nav-link {
  position: relative;
}
.cid-v1cithREyJ .container {
  display: flex;
  margin: auto;
}
.cid-v1cithREyJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1cithREyJ .dropdown-menu,
.cid-v1cithREyJ .navbar.opened {
  background: #ffffff !important;
}
.cid-v1cithREyJ .nav-item:focus,
.cid-v1cithREyJ .nav-link:focus {
  outline: none;
}
.cid-v1cithREyJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1cithREyJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1cithREyJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1cithREyJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1cithREyJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1cithREyJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1cithREyJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v1cithREyJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v1cithREyJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1cithREyJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v1cithREyJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1cithREyJ .navbar.collapsed {
  justify-content: center;
}
.cid-v1cithREyJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1cithREyJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1cithREyJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v1cithREyJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1cithREyJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1cithREyJ .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-v1cithREyJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1cithREyJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1cithREyJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1cithREyJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1cithREyJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1cithREyJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1cithREyJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1cithREyJ .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-v1cithREyJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1cithREyJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1cithREyJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1cithREyJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1cithREyJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1cithREyJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1cithREyJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1cithREyJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1cithREyJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1cithREyJ .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-v1cithREyJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1cithREyJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1cithREyJ .dropdown-item.active,
.cid-v1cithREyJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v1cithREyJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1cithREyJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1cithREyJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1cithREyJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1cithREyJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1cithREyJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1cithREyJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1cithREyJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1cithREyJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1cithREyJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v1cithREyJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1cithREyJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1cithREyJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1cithREyJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1cithREyJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1cithREyJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1cithREyJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1cithREyJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1cithREyJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1cithREyJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1cithREyJ .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-v1cithREyJ .navbar {
    height: 70px;
  }
  .cid-v1cithREyJ .navbar.opened {
    height: auto;
  }
  .cid-v1cithREyJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1citiUqTC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v1citiUqTC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1citiUqTC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1citiUqTC .mbr-section-title {
  color: #bed3f9;
}
.cid-v1citjquMc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg");
}
.cid-v1citjquMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1citjquMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1citjquMc .mbr-section-title {
  color: #ffffff;
}
.cid-v1ciYbpg3j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v1citkPE1d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v1citkPE1d .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v1citkPE1d .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v1citkPE1d .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v1citkPE1d .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v1citkPE1d .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v1citkPE1d .row .foot-menu li p {
  margin: 0;
}
.cid-v1citkPE1d .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v1citkPE1d .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v1citkPE1d .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v1citkPE1d .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v1citkPE1d .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1citkPE1d .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1citkPE1d .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v1citkPE1d .row .row-copirayt p {
  width: 100%;
}
.cid-v1KklaQlw3 {
  z-index: 1000;
  width: 100%;
}
.cid-v1KklaQlw3 nav.navbar {
  position: fixed;
}
.cid-v1KklaQlw3 .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-v1KklaQlw3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1KklaQlw3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1KklaQlw3 .dropdown-item:hover,
.cid-v1KklaQlw3 .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v1KklaQlw3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1KklaQlw3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1KklaQlw3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1KklaQlw3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1KklaQlw3 .nav-link {
  position: relative;
}
.cid-v1KklaQlw3 .container {
  display: flex;
  margin: auto;
}
.cid-v1KklaQlw3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1KklaQlw3 .dropdown-menu,
.cid-v1KklaQlw3 .navbar.opened {
  background: #ffffff !important;
}
.cid-v1KklaQlw3 .nav-item:focus,
.cid-v1KklaQlw3 .nav-link:focus {
  outline: none;
}
.cid-v1KklaQlw3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1KklaQlw3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1KklaQlw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1KklaQlw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1KklaQlw3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1KklaQlw3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1KklaQlw3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v1KklaQlw3 .navbar.opened {
  transition: all 0.3s;
}
.cid-v1KklaQlw3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1KklaQlw3 .navbar .navbar-logo img {
  width: auto;
}
.cid-v1KklaQlw3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1KklaQlw3 .navbar.collapsed {
  justify-content: center;
}
.cid-v1KklaQlw3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1KklaQlw3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1KklaQlw3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v1KklaQlw3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1KklaQlw3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1KklaQlw3 .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-v1KklaQlw3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1KklaQlw3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1KklaQlw3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1KklaQlw3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1KklaQlw3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1KklaQlw3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1KklaQlw3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1KklaQlw3 .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-v1KklaQlw3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1KklaQlw3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1KklaQlw3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1KklaQlw3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1KklaQlw3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1KklaQlw3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1KklaQlw3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1KklaQlw3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1KklaQlw3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1KklaQlw3 .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-v1KklaQlw3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1KklaQlw3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1KklaQlw3 .dropdown-item.active,
.cid-v1KklaQlw3 .dropdown-item:active {
  background-color: transparent;
}
.cid-v1KklaQlw3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1KklaQlw3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1KklaQlw3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1KklaQlw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1KklaQlw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1KklaQlw3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1KklaQlw3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1KklaQlw3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1KklaQlw3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1KklaQlw3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v1KklaQlw3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1KklaQlw3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1KklaQlw3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1KklaQlw3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1KklaQlw3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1KklaQlw3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1KklaQlw3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1KklaQlw3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1KklaQlw3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1KklaQlw3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1KklaQlw3 .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-v1KklaQlw3 .navbar {
    height: 70px;
  }
  .cid-v1KklaQlw3 .navbar.opened {
    height: auto;
  }
  .cid-v1KklaQlw3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1KklbcGFj {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v1KklbcGFj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1KklbcGFj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1KklbcGFj .mbr-section-title {
  color: #bed3f9;
}
.cid-v1KklbxicL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg-922x242.jpg");
}
.cid-v1KklbxicL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1KklbxicL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1KklbxicL .mbr-section-title {
  color: #ffffff;
}
.cid-v1KklbxicL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1KklbPDIp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-v1KklbPDIp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1KklbPDIp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1KklbPDIp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1KklbPDIp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1KklbPDIp .text-wrapper {
    padding: 2rem;
  }
}
.cid-v1KIpfYvx3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-v1KlGHkKiD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-v1KlGHkKiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1KlGHkKiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1KlGHkKiD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1KlGHkKiD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v1KlGHkKiD .text-wrapper {
    padding: 2rem;
  }
}
.cid-v1Kkldt5Wp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v1Kkldt5Wp .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v1Kkldt5Wp .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v1Kkldt5Wp .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v1Kkldt5Wp .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v1Kkldt5Wp .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v1Kkldt5Wp .row .foot-menu li p {
  margin: 0;
}
.cid-v1Kkldt5Wp .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v1Kkldt5Wp .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v1Kkldt5Wp .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v1Kkldt5Wp .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v1Kkldt5Wp .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1Kkldt5Wp .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1Kkldt5Wp .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v1Kkldt5Wp .row .row-copirayt p {
  width: 100%;
}
.cid-v1MojAiz2A {
  z-index: 1000;
  width: 100%;
}
.cid-v1MojAiz2A nav.navbar {
  position: fixed;
}
.cid-v1MojAiz2A .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-v1MojAiz2A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1MojAiz2A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1MojAiz2A .dropdown-item:hover,
.cid-v1MojAiz2A .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-v1MojAiz2A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1MojAiz2A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1MojAiz2A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1MojAiz2A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1MojAiz2A .nav-link {
  position: relative;
}
.cid-v1MojAiz2A .container {
  display: flex;
  margin: auto;
}
.cid-v1MojAiz2A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1MojAiz2A .dropdown-menu,
.cid-v1MojAiz2A .navbar.opened {
  background: #ffffff !important;
}
.cid-v1MojAiz2A .nav-item:focus,
.cid-v1MojAiz2A .nav-link:focus {
  outline: none;
}
.cid-v1MojAiz2A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1MojAiz2A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1MojAiz2A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1MojAiz2A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1MojAiz2A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1MojAiz2A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1MojAiz2A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-v1MojAiz2A .navbar.opened {
  transition: all 0.3s;
}
.cid-v1MojAiz2A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1MojAiz2A .navbar .navbar-logo img {
  width: auto;
}
.cid-v1MojAiz2A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1MojAiz2A .navbar.collapsed {
  justify-content: center;
}
.cid-v1MojAiz2A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1MojAiz2A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1MojAiz2A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-v1MojAiz2A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1MojAiz2A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1MojAiz2A .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-v1MojAiz2A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1MojAiz2A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1MojAiz2A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1MojAiz2A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1MojAiz2A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1MojAiz2A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1MojAiz2A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1MojAiz2A .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-v1MojAiz2A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1MojAiz2A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1MojAiz2A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1MojAiz2A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1MojAiz2A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1MojAiz2A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1MojAiz2A .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1MojAiz2A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1MojAiz2A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1MojAiz2A .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-v1MojAiz2A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1MojAiz2A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1MojAiz2A .dropdown-item.active,
.cid-v1MojAiz2A .dropdown-item:active {
  background-color: transparent;
}
.cid-v1MojAiz2A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1MojAiz2A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1MojAiz2A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1MojAiz2A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1MojAiz2A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1MojAiz2A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1MojAiz2A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1MojAiz2A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1MojAiz2A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1MojAiz2A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-v1MojAiz2A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1MojAiz2A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1MojAiz2A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1MojAiz2A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1MojAiz2A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1MojAiz2A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1MojAiz2A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1MojAiz2A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1MojAiz2A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1MojAiz2A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1MojAiz2A .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-v1MojAiz2A .navbar {
    height: 70px;
  }
  .cid-v1MojAiz2A .navbar.opened {
    height: auto;
  }
  .cid-v1MojAiz2A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1MojALAIU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-v1MojALAIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1MojALAIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1MojALAIU .mbr-section-title {
  color: #bed3f9;
}
.cid-v1MojB8HXw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg-922x242.jpg");
}
.cid-v1MojB8HXw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1MojB8HXw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1MojB8HXw .mbr-section-title {
  color: #ffffff;
}
.cid-v1MojB8HXw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1MphxEPTu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v1MphxEPTu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1MphxEPTu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1MphxEPTu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1MphxEPTu .row {
  flex-direction: row-reverse;
}
.cid-v1MphxEPTu img {
  width: 100%;
}
.cid-v1MojBY6q7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1Mqzl5HI8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1Mqzl5HI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1Mqzl5HI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1Mqzl5HI8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1Mqzl5HI8 .row {
  flex-direction: row-reverse;
}
.cid-v1Mqzl5HI8 img {
  width: 100%;
}
.cid-v1MojD8Km3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v1MojD8Km3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v1MojD8Km3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v1MojD8Km3 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v1MojD8Km3 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v1MojD8Km3 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v1MojD8Km3 .row .foot-menu li p {
  margin: 0;
}
.cid-v1MojD8Km3 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v1MojD8Km3 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v1MojD8Km3 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v1MojD8Km3 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v1MojD8Km3 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1MojD8Km3 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1MojD8Km3 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v1MojD8Km3 .row .row-copirayt p {
  width: 100%;
}
.cid-vrgGvjd8xo {
  z-index: 1000;
  width: 100%;
}
.cid-vrgGvjd8xo nav.navbar {
  position: fixed;
}
.cid-vrgGvjd8xo .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-vrgGvjd8xo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vrgGvjd8xo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vrgGvjd8xo .dropdown-item:hover,
.cid-vrgGvjd8xo .dropdown-item:focus {
  background: #154bab !important;
  color: white !important;
}
.cid-vrgGvjd8xo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vrgGvjd8xo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vrgGvjd8xo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vrgGvjd8xo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vrgGvjd8xo .nav-link {
  position: relative;
}
.cid-vrgGvjd8xo .container {
  display: flex;
  margin: auto;
}
.cid-vrgGvjd8xo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vrgGvjd8xo .dropdown-menu,
.cid-vrgGvjd8xo .navbar.opened {
  background: #ffffff !important;
}
.cid-vrgGvjd8xo .nav-item:focus,
.cid-vrgGvjd8xo .nav-link:focus {
  outline: none;
}
.cid-vrgGvjd8xo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vrgGvjd8xo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vrgGvjd8xo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vrgGvjd8xo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vrgGvjd8xo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vrgGvjd8xo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vrgGvjd8xo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #ffffff;
}
.cid-vrgGvjd8xo .navbar.opened {
  transition: all 0.3s;
}
.cid-vrgGvjd8xo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vrgGvjd8xo .navbar .navbar-logo img {
  width: auto;
}
.cid-vrgGvjd8xo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vrgGvjd8xo .navbar.collapsed {
  justify-content: center;
}
.cid-vrgGvjd8xo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vrgGvjd8xo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vrgGvjd8xo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-vrgGvjd8xo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vrgGvjd8xo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vrgGvjd8xo .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-vrgGvjd8xo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vrgGvjd8xo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vrgGvjd8xo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vrgGvjd8xo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vrgGvjd8xo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vrgGvjd8xo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vrgGvjd8xo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vrgGvjd8xo .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-vrgGvjd8xo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vrgGvjd8xo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vrgGvjd8xo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vrgGvjd8xo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vrgGvjd8xo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vrgGvjd8xo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vrgGvjd8xo .navbar.navbar-short {
  min-height: 60px;
}
.cid-vrgGvjd8xo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vrgGvjd8xo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vrgGvjd8xo .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-vrgGvjd8xo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vrgGvjd8xo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vrgGvjd8xo .dropdown-item.active,
.cid-vrgGvjd8xo .dropdown-item:active {
  background-color: transparent;
}
.cid-vrgGvjd8xo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vrgGvjd8xo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vrgGvjd8xo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vrgGvjd8xo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vrgGvjd8xo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vrgGvjd8xo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vrgGvjd8xo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vrgGvjd8xo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vrgGvjd8xo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vrgGvjd8xo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c30808;
}
.cid-vrgGvjd8xo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vrgGvjd8xo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vrgGvjd8xo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vrgGvjd8xo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vrgGvjd8xo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vrgGvjd8xo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vrgGvjd8xo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vrgGvjd8xo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vrgGvjd8xo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vrgGvjd8xo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vrgGvjd8xo .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-vrgGvjd8xo .navbar {
    height: 70px;
  }
  .cid-vrgGvjd8xo .navbar.opened {
    height: auto;
  }
  .cid-vrgGvjd8xo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vrgGvjq7fB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #c30808;
}
.cid-vrgGvjq7fB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrgGvjq7fB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrgGvjq7fB .mbr-section-title {
  color: #bed3f9;
}
.cid-vrgGvjzCzS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/innerbkg-922x242.jpg-922x242.jpg-922x242.jpg");
}
.cid-vrgGvjzCzS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrgGvjzCzS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vrgGvjzCzS .mbr-section-title {
  color: #ffffff;
}
.cid-vrgGvjzCzS .mbr-section-subtitle {
  color: #ffffff;
  text-align: justify;
}
.cid-vrgGvjIKmI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-vrgGvjIKmI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrgGvjIKmI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrgGvjIKmI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrgGvjIKmI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vrgGvjIKmI .text-wrapper {
    padding: 2rem;
  }
}
.cid-vrgGvjIKmI .mbr-text {
  text-align: justify;
}
.cid-vrgGvjPuIZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-vrgGvjPuIZ .mbr-text {
  text-align: justify;
}
.cid-vrgGvk6GWX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-vrgGvk6GWX .row-links {
  width: 100%;
  justify-content: center;
}
.cid-vrgGvk6GWX .social-row {
  width: 100%;
  justify-content: center;
}
.cid-vrgGvk6GWX .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-vrgGvk6GWX .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-vrgGvk6GWX .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-vrgGvk6GWX .row .foot-menu li p {
  margin: 0;
}
.cid-vrgGvk6GWX .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-vrgGvk6GWX .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-vrgGvk6GWX .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vrgGvk6GWX .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-vrgGvk6GWX .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vrgGvk6GWX .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vrgGvk6GWX .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vrgGvk6GWX .row .row-copirayt p {
  width: 100%;
}
